h1 {
    font-size: 5em;
    font-weight: 600;
    line-height: 1;
}

h2 {
    font-family: Poppins, sans-serif;
    font-size: 3.375em;
    font-weight: 700;
    line-height: 1;
}

h3 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
}


header {
    background-color: #fff;
}

header img {
    padding: 2px 2px 2px 0;
}

section.hero h2 {
    font-size: 2.5em;
}

@media screen and (max-width: 73.125em) {
    h1 {
        font-size: 3.5em;
    }

    section.hero h2 {
        font-size: 2em;
    }
}

@media screen and (max-width: 62.5em) {
    section.hero h2 {
        font-size: 1.875em;
    }
}

@media screen and (max-width: 55.625em) {
    section.hero h2 {
        font-size: 1.5em;
    }
}

section.hero {
    padding: 16px 0;
    background: #0ACBF5;
    background: radial-gradient(at right center, rgba(10, 203, 245, 1) 0%, rgba(17, 43, 120, 1) 65%);
    color: #fff;
}

section.hero div.grid-columns {
    display: grid;
    grid-template-areas:
        "video main"
        "aside main";
    grid-template-columns: minmax(300px, 700px) minmax(350px, 530px);
    column-gap: 60px;
    row-gap: 0px;
    margin: 72px auto 0px;
    max-width: 1300px;
}

section.hero div.grid-columns main {
    grid-area: main;
    max-width: 530px;
    min-width: 350px;
    margin: 0 auto;
}

section.hero div.grid-columns aside {
    grid-area: aside;
    max-width: 710px;
    margin: 0 auto;
}

/* Video Container - Responsive with max size */
section.hero div.grid-columns div.video-container {
    grid-area: video;
    position: relative;
    width: 100%;
    max-width: 690px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (388/690 ≈ 56.25%) */
    height: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

section.hero div.grid-columns aside h2 {
    font-size: 2em;
}

ul.no-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

section.hero div.grid-columns aside ul li {
    font-size: 1.875em;
    font-weight: 700;
}

@media screen and (max-width: 76.875em) {
    section.hero div.grid-columns aside h2 {
        font-size: 1.5em;
    }

    section.hero div.grid-columns aside ul li {
        font-size: 1.25em;
    }
}

@media (max-width: 48.125em) {
    section.hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    section.hero h2 {
        font-size: 1em;
    }

    section.hero div.grid-columns {
        grid-template-areas:
            "aside"
            "main"
            "video";
        grid-template-columns: 1fr;
        margin: 10px auto 0px;
    }

    section.hero div.grid-columns main {
        min-width: unset;
    }

    section.hero div.grid-columns aside h2 {
        font-size: 1.5em;
        margin: 30px 0 20px;
    }

    section.hero div.grid-columns aside ul li {
        font-size: 1em;
    }

    section.hero ul.badges {
        margin: 40px auto 60px;
        gap: 15px;
    }

    section.hero ul.badges img {
        max-width: 80px;
        height: auto;
    }
}

section.hero ul.badges {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
}

section.benefits {
    background-color: #256099;
}

/* Modern Form Styling */
#signup form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

/* Form-level error styling */
.form-errors {
    background-color: #fee;
    border: 2px solid #f56565;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-errors .error-message {
    color: #c53030;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.form-errors .error-message:not(:last-child) {
    margin-bottom: 6px;
}

#signup form>div {
    position: relative;
}

/* Generic rule: Hide labels that have 'for' attribute (pointing to inputs) except radio/checkbox */
#signup form label[for] {
    display: none !important;
}

/* Show labels without 'for' attribute (radio/checkbox group labels) */
#signup form label:not([for]) {
    display: block !important;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1em;
}

/* Show radio and checkbox labels */
#signup form input[type="radio"]+label,
#signup form input[type="checkbox"]+label {
    display: inline-block !important;
    padding-left: 8px;
    font-weight: normal;
    color: #333;
    cursor: pointer;
}

/* Radio button and checkbox styling */
#signup form input[type="radio"],
#signup form input[type="checkbox"] {
    cursor: pointer;
    transform: scale(1.2);
}

/* Radio button group styling - generic for any radio group container */
#signup form div[class*="radio"] {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Fallback: Any div containing multiple radio buttons should be horizontal */
#signup form div input[type="radio"]+label+input[type="radio"] {
    margin-left: 16px;
}

/* Style radio button labels within groups */
#signup form div[class*="radio"] input[type="radio"]+label {
    display: inline-flex !important;
    align-items: center;
    padding: 0 6px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0 !important;
    font-weight: normal;
    color: #333;
}

/* Generic checkbox styling */
#signup form input[type="checkbox"]+label,
#signup form label.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.4;
    margin-left: 0 !important;
}

/* Checkbox text styling */
#signup form .checkbox-text {
    flex: 1;
    font-weight: normal;
    color: #333;
}

/* Ensure checkbox labels are always visible */
#signup form .checkbox-label {
    display: flex !important;
}

/* Form help text styling */
#signup .form-help,
#signup .help-block {
    font-size: 0.875em;
    color: #6c757d;
    margin-top: 5px;
    line-height: 1.4;
}

/* Details/summary styling for collapsible sections */
details summary {
    cursor: pointer;
}

#signup form input[type="text"],
#signup form input[type="email"],
#signup form input[type="tel"] {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background-color: #ffffff;
    color: #333;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#signup form textarea {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background-color: #ffffff;
    color: #333;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    resize: vertical;
    min-height: 120px;
}

#signup form input[type="text"]::placeholder,
#signup form input[type="email"]::placeholder,
#signup form input[type="tel"]::placeholder {
    color: #999;
    font-size: 16px;
}

#signup form textarea::placeholder {
    color: #999;
    font-size: 16px;
}

#signup form input[type="text"]:focus,
#signup form input[type="email"]:focus,
#signup form input[type="tel"]:focus {
    outline: none;
    border-color: #0ACBF5;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 203, 245, 0.2);
}

#signup form textarea:focus {
    outline: none;
    border-color: #0ACBF5;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 203, 245, 0.2);
}

#signup form button[type="submit"] {
    display: block;
    padding: 18px 30px;
    background: radial-gradient(ellipse at center, #E53E3E 0%, #CC0000 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px auto 0px;
}

#signup form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

#signup form button[type="submit"]:active {
    transform: translateY(0);
}

/* Error states */
#signup form input.is-invalid {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

/* Readonly field styling */
#signup form input[readonly],
#signup form textarea[readonly] {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #6c757d !important;
    cursor: not-allowed;
}

/* File upload styling */
#signup form input[type="file"] {
    width: 100%;
    padding: 10px 15px;
    border: 2px dashed #e0e0e0;
    border-radius: 15px;
    background-color: #ffffff;
    color: #333;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

#signup form input[type="file"]:hover {
    border-color: #0ACBF5;
    background-color: rgba(10, 203, 245, 0.05);
}

/* Kit Section Styling */
section.kit {
    background-color: #f8f9fa;
    padding: 80px 0;
}

section.kit h2 {
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-size: 3.375em;
    font-weight: 700;
}

section.kit ul.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

section.kit ul.columns li {
    background: #ffffff;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 0 0 400px;
    max-width: 400px;
}

section.kit ul.columns li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

section.kit ul.columns li img {
    width: 420px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

section.kit ul.columns li h3 {
    color: #256099;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.kit ul.columns li p {
    font-family: Poppins, sans-serif;
    font-size: 1.25em;
    line-height: 1.6;
    color: #7a7a7a;
    margin: 0;
}

section.kit>div>p {
    text-align: center;
    margin-top: 40px;
}

.download-kit-btn {
    display: inline-block;
    background: radial-gradient(ellipse at center, #E53E3E 0%, #CC0000 100%);
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.download-kit-btn:hover {
    background: radial-gradient(ellipse at center, #61ce70 0%, #4CAF50 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 206, 112, 0.4);
}

/* Benefits Section Styling */
section.benefits {
    background-color: #256099;
    padding: 80px 0;
    color: #fff;
}

section.benefits h2 {
    text-align: center;
    color: #fff;
    margin: 0 0 80px;
    text-transform: uppercase;
}

section.benefits .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media screen and (max-width: 28.125em) {
    section.benefits .cards-grid {
        grid-template-columns: auto;
    }
}

section.benefits .card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
}

section.benefits .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

section.benefits .card img {
    width: 370px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

section.benefits .wrapper>p {
    text-align: center;
    margin-top: 40px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    section.kit {
        padding: 60px 0;
    }

    section.kit h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    section.kit ul.columns {
        gap: 30px;
        margin-bottom: 40px;
    }

    section.kit ul.columns li {
        padding: 30px 20px;
        flex: 1 1 280px;
        max-width: 100%;
    }

    section.kit ul.columns li h3 {
        font-size: 1.3em;
    }

    section.kit ul.columns li img {
        width: 100%;
        height: auto;
        max-width: 350px;
    }

    section.benefits {
        padding: 60px 0;
    }

    section.benefits h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    section.benefits .cards-grid {
        gap: 30px;
        margin-bottom: 40px;
    }

    section.benefits .card {
        padding: 25px;
    }

    section.benefits .card img {
        width: 100%;
        max-width: 350px;
    }

    #signup form input[type="text"],
    #signup form input[type="email"],
    #signup form input[type="tel"],
    #signup form input[type="file"] {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    #signup form textarea {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    #signup form button[type="submit"] {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Testimonials Section Styling */
section.testimonials {
    background-color: #ebedf2;
    padding: 80px 0;
}

section.testimonials h4 {
    font-family: Poppins, sans-serif;
    font-size: 4.5625em;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px;
    color: #333;
}

section.testimonials ul.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

section.testimonials ul.cards li {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 0 0 350px;
    max-width: 350px;
}

section.testimonials ul.cards li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

section.testimonials ul.cards li p:first-child {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

section.testimonials ul.cards li div {
    display: flex;
    align-items: center;
    gap: 15px;
}

section.testimonials ul.cards li div img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

section.testimonials ul.cards li div p {
    margin: 0;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    section.testimonials {
        padding: 60px 0;
    }

    section.testimonials h4 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    section.testimonials ul.cards {
        gap: 30px;
    }

    section.testimonials ul.cards li {
        padding: 25px;
        flex: 1 1 280px;
        max-width: 100%;
    }
}

/* HQ Section Styling */
section.hq {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

section.hq .wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(400px, 2fr);
    gap: 60px;
    align-items: start;
}

section.hq .wrapper>p {
    text-align: center;
    margin: 0;
}

section.hq .wrapper>p img {
    width: 100%;
    max-width: 575px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

section.hq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.hq ul li {
    padding: 15px 0;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

section.hq ul li:before {
    content: "★";
    color: #256099;
    font-size: 28px;
    position: absolute;
    top: 15px;
    left: 0;
}

section.hq ul li h4 {
    font-family: Poppins, sans-serif;
    font-size: 1.875em;
    font-weight: 700;
    margin: 0 0 10px 35px;
    color: #333;
}

section.hq ul li p {
    margin: 0 0 0 35px;
    font-size: 1.5625em;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
}

section.hq ul li:last-child {
    border-bottom: none;
    padding: 20px 0;
    text-align: center;
}

section.hq ul li:last-child:before {
    display: none;
}

section.hq ul li:last-child p {
    margin: 0;
    text-align: center;
}

/* Partners Section Styling */
section.partners {
    background-color: #ffffff;
    padding: 120px 0;
    text-align: center;
}

section.partners h2 {
    font-family: Poppins, sans-serif;
    font-size: 4.5625em;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
}

section.partners p {
    font-size: 1.5em;
    color: #666;
    margin: 0 0 40px;
    font-weight: 400;
}

/* Show Section Styling */
section.show {
    background-color: #256099;
    padding: 80px 0;
    text-align: center;
}

section.show h4 {
    font-family: Poppins, sans-serif;
    font-size: 4.5625em;
    font-weight: 700;
    margin: 0 0 40px;
    color: #ffffff;
}

section.show p {
    margin: 0;
}

/* Mobile responsive for partners and show sections */
@media (max-width: 768px) {
    section.partners {
        padding: 60px 0;
    }

    section.partners h2 {
        font-size: 3em;
        margin-bottom: 15px;
    }

    section.partners p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    section.show {
        padding: 60px 0;
    }

    section.show h4 {
        font-size: 3em;
        margin-bottom: 30px;
    }
}

/* Mobile responsive for HQ section */
@media (max-width: 768px) {
    section.hq .wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section.hq {
        padding: 60px 0;
    }

    section.hq ul li {
        padding: 12px 0;
        margin-bottom: 15px;
    }

    section.hq ul li h4 {
        font-size: 1.5em;
        margin: 0 0 8px 30px;
    }

    section.hq ul li p {
        font-size: 1.25em;
        margin-left: 30px;
    }

    section.hq ul li:before {
        font-size: 24px;
        top: 12px;
        left: 0;
    }
}

/* Submit Button Loading Spinner */
#signup form button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

#signup form button[type="submit"].loading {
    pointer-events: none;
    opacity: 0.7;
}

#signup form button[type="submit"].loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: button-spin 1s linear infinite;
    z-index: 1;
}

@keyframes button-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}