    /* =============================================
       CSS VARIABLES & RESET
    ============================================= */
    :root {
        --navy: #1a2b5e;
        --navy-dark: #0f1c42;
        --red: #c0272d;
        --red-dark: #991e23;
        --gold: #c9a84c;
        --gold-light: #e2c47a;
        --slate: #8fa0b4;
        --white: #ffffff;
        --off-white: #f8f9fc;
        --gray-100: #f1f3f8;
        --gray-200: #e2e6ee;
        --gray-400: #9aa5b8;
        --gray-600: #5a6478;
        --gray-800: #2e3446;
        --text: #1e2535;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
        --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
        --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
        --radius: 10px;
        --radius-lg: 18px;
        --transition: .3s ease;
        --header-h: 72px;
    }

    /* =============================================
       BASE RESET & BODY
    ============================================= */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text);
        background: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    video {
        max-width: 100%;
    }

    /* =============================================
       TYPOGRAPHY UTILITIES
    ============================================= */
    .section-tag {
        display: inline-block;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--red);
        background: rgba(192, 39, 45, .08);
        border: 1px solid rgba(192, 39, 45, .2);
        border-radius: 50px;
        padding: .3rem .85rem;
        margin-bottom: .85rem;
    }

    .section-title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.18;
        margin-bottom: .75rem;
    }

    .section-subtitle {
        font-size: clamp(.9rem, 2.5vw, 1.05rem);
        color: var(--gray-600);
        max-width: 580px;
        margin: 0 auto 2.5rem;
    }

    .text-center {
        text-align: center;
    }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        border-radius: var(--radius);
        padding: .85rem 1.75rem;
        cursor: pointer;
        transition: all var(--transition);
        text-transform: uppercase;
        letter-spacing: .05em;
        white-space: nowrap;
        line-height: 1.2;
    }

    .btn-primary {
        background: green;
        color: var(--white);
        box-shadow: 0 4px 20px rgba(192, 39, 45, .4);
    }

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(192, 39, 45, .45);
    }

    .btn-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--navy-dark);
        box-shadow: 0 4px 20px rgba(201, 168, 76, .4);
    }

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(201, 168, 76, .45);
    }

    .btn-outline-white {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, .7);
    }

    .btn-outline-white:hover {
        background: rgba(255, 255, 255, .1);
        border-color: var(--white);
    }

    .btn-white {
        background: var(--white);
        color: var(--red);
        font-weight: 800;
    }

    .btn-white:hover {
        background: var(--off-white);
        transform: translateY(-2px);
    }

    .btn-lg {
        padding: 1rem 2.25rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }

    .btn-xl {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 14px;
    }

    .btn-full {
        width: 100%;
    }

    .pulse {
        animation: pulse 2.2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(192, 39, 45, .5);
        }

        70% {
            box-shadow: 0 0 0 14px rgba(192, 39, 45, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(192, 39, 45, 0);
        }
    }

    /* =============================================
       STICKY HEADER
    ============================================= */
    #site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--navy-dark);
        transition: all var(--transition);
        border-bottom: 2px solid rgba(201, 168, 76, .25);
    }

    #site-header.scrolled {
        background: rgba(15, 28, 66, .97);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    }

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: .5rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        min-height: var(--header-h);
    }

    .header-logo {
        display: flex;
        align-items: center;
        gap: .6rem;
        flex-shrink: 0;
    }

    .header-logo img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

    .header-logo-text {
        line-height: 1.15;
    }

    .header-logo-text strong {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        color: var(--white);
        letter-spacing: .04em;
    }

    .header-logo-text span {
        font-size: .65rem;
        color: var(--gold);
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: .4rem;
        color: var(--white);
        font-weight: 600;
        font-size: .9rem;
        transition: color var(--transition);
        white-space: nowrap;
    }

    .header-phone:hover {
        color: var(--gold);
    }

    .header-phone i {
        color: var(--gold);
    }

    /* Mobile header adjustments */
    @media (max-width: 480px) {
        .header-logo-text {
            display: none;
        }

        .header-phone span {
            display: none;
        }

        .header-inner {
            padding: .5rem 1rem;
        }

        .btn.btn-primary {
            font-size: .78rem;
            padding: .65rem 1rem;
            letter-spacing: .03em;
        }
    }

    @media (min-width: 481px) and (max-width: 640px) {
        .header-logo-text strong {
            font-size: .88rem;
        }

        .header-phone span {
            display: none;
        }

        .btn.btn-primary {
            font-size: .82rem;
            padding: .7rem 1.1rem;
        }
    }

    @media (min-width: 641px) and (max-width: 900px) {
        .header-logo img {
            width: 48px;
            height: 48px;
        }
    }

    /* =============================================
       ANNOUNCEMENT BAR
    ============================================= */
    #announcement {
        background: linear-gradient(90deg, var(--red-dark), var(--red));
        color: var(--white);
        text-align: center;
        padding: .6rem 1rem;
        font-size: clamp(.72rem, 2vw, .85rem);
        font-weight: 600;
        letter-spacing: .02em;
        position: relative;
        z-index: 999;
        margin-top: var(--header-h);
        line-height: 1.5;
    }

    #announcement i {
        color: var(--gold-light);
        margin: 0 .3rem;
    }

    /* =============================================
       SECTION WRAPPER
    ============================================= */
    .section {
        padding: clamp(3rem, 8vw, 5rem) 1.25rem;
    }

    .section-alt {
        background: var(--gray-100);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* =============================================
       HERO SECTION
    ============================================= */
    #hero {
        position: relative;
        min-height: 100svh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding-top: var(--header-h);
        background: var(--navy-dark);
    }

    .hero-video-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .35;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 28, 66, .93) 0%, rgba(15, 28, 66, .78) 60%, rgba(192, 39, 45, .18) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
        display: grid;
        /*grid-template-columns: 1fr 400px;*/
        gap: 2.5rem;
        align-items: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        background: rgba(201, 168, 76, .15);
        border: 1px solid rgba(201, 168, 76, .4);
        border-radius: 50px;
        padding: .35rem 1rem;
        font-size: .75rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: .1em;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2rem, 5vw, 3.8rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.08;
        margin-bottom: 1.1rem;
    }

    .hero-title .highlight {
        color: var(--gold);
        display: block;
    }

    .hero-subtitle {
        font-size: clamp(.92rem, 2.5vw, 1.1rem);
        color: rgba(255, 255, 255, .82);
        margin-bottom: 1.75rem;
        max-width: 540px;
        line-height: 1.65;
    }

    .hero-subtitle strong {
        color: var(--gold);
    }

    .hero-cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: .85rem;
        margin-bottom: 2rem;
    }

    .hero-trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 50px;
        padding: .3rem .75rem;
        font-size: .73rem;
        font-weight: 600;
        color: rgba(255, 255, 255, .88);
    }

    .trust-badge i {
        color: var(--gold);
        font-size: .75rem;
    }

    /* Hero Form Card */
    .hero-form-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 1.75rem 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 4px solid var(--red);
        width: 100%;
    }

    .hero-form-card h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: .25rem;
    }

    .hero-form-card>p {
        font-size: .83rem;
        color: var(--gray-600);
        margin-bottom: 1.1rem;
    }

    /* Responsive hero breakpoints */
    @media (max-width: 960px) {
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }

        .hero-cta-group {
            justify-content: center;
        }

        .hero-trust-badges {
            justify-content: center;
        }

        .hero-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-form-card {
            max-width: 560px;
            margin: 0 auto;
        }
    }

    @media (max-width: 480px) {
        .hero-cta-group {
            flex-direction: column;
        }

        .hero-cta-group .btn {
            width: 100%;
        }
    }

    /* =============================================
       FORM ELEMENTS (shared)
    ============================================= */
    .form-group {
        margin-bottom: .9rem;
    }

    .form-group label {
        display: block;
        font-size: .8rem;
        font-weight: 600;
        color: var(--gray-800);
        margin-bottom: .28rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: .7rem .95rem;
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius);
        font-family: 'Inter', sans-serif;
        font-size: .9rem;
        color: var(--text);
        background: var(--off-white);
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right .9rem center;
        padding-right: 2.5rem;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--navy);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(26, 43, 94, .1);
    }

    .form-group input.error,
    .form-group textarea.error,
    .form-group select.error {
        border-color: var(--red);
    }

    .form-error-msg {
        font-size: .74rem;
        color: var(--red);
        margin-top: .22rem;
        display: none;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 80px;
    }

    .form-privacy {
        font-size: .72rem;
        color: var(--gray-400);
        text-align: center;
        margin-top: .65rem;
    }

    .form-privacy i {
        color: var(--navy);
    }

    .offer-note {
        background: rgba(192, 39, 45, .06);
        border: 1px dashed rgba(192, 39, 45, .3);
        border-radius: var(--radius);
        padding: .6rem .9rem;
        font-size: .79rem;
        color: var(--red-dark);
        font-weight: 600;
        text-align: center;
        margin-bottom: .9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .4rem;
        flex-wrap: wrap;
    }

    /* =============================================
       STATS BAR
    ============================================= */
    #stats-bar {
        background: var(--navy);
        padding: 2rem 1.25rem;
    }

    .stats-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: .75rem;
        text-align: center;
    }

    .stat-item {
        padding: .65rem .5rem;
    }

    .stat-number {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 4vw, 2.4rem);
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
        display: block;
    }

    .stat-label {
        font-size: clamp(.68rem, 1.5vw, .82rem);
        color: rgba(255, 255, 255, .7);
        margin-top: .3rem;
        text-transform: uppercase;
        letter-spacing: .05em;
        line-height: 1.4;
    }

    .stat-divider {
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    @media (max-width: 600px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .stat-divider:nth-child(3) {
            border-left: none;
        }

        .stat-divider:nth-child(1) {
            border-left: none;
        }
    }

    /* =============================================
       BENEFITS SECTION
    ============================================= */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-top: 1rem;
    }

    .benefit-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);
        padding: 1.75rem 1.25rem;
        text-align: center;
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--navy), var(--red));
        transform: scaleX(0);
        transition: transform var(--transition);
        transform-origin: left;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--navy), var(--navy-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.1rem;
        font-size: 1.4rem;
        color: var(--gold);
        box-shadow: 0 6px 20px rgba(26, 43, 94, .25);
    }

    .benefit-card h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.15rem;
        color: var(--navy);
        margin-bottom: .55rem;
    }

    .benefit-card p {
        font-size: .88rem;
        color: var(--gray-600);
        line-height: 1.6;
    }

    @media (max-width: 600px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* =============================================
       SPECIAL OFFER SECTION
    ============================================= */
    #special-offer {
        background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, rgba(192, 39, 45, .15) 100%);
        color: var(--white);
        overflow: hidden;
    }

    .offer-inner {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 2.5rem;
        align-items: center;
    }

    .offer-badge-big {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: clamp(160px, 22vw, 210px);
        height: clamp(160px, 22vw, 210px);
        background: var(--red);
        border-radius: 50%;
        border: 5px solid rgba(255, 255, 255, .15);
        box-shadow: 0 0 0 12px rgba(192, 39, 45, .18), var(--shadow-lg);
        text-align: center;
        margin: 0 auto 1.25rem;
        animation: float 4s ease-in-out infinite;
        padding: 1rem;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .offer-badge-big .free {
        font-size: .78rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .8);
    }

    .offer-badge-big .what {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1rem, 3vw, 1.35rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.1;
    }

    .offer-badge-big .gutter {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(.85rem, 2.5vw, 1.05rem);
        color: var(--gold-light);
    }

    .offer-text-side h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 3.5vw, 2.8rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .offer-text-side h2 .gold {
        color: var(--gold);
    }

    .offer-text-side>p {
        color: rgba(255, 255, 255, .8);
        font-size: clamp(.88rem, 2vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .offer-checklist {
        margin-bottom: 1.75rem;
    }

    .offer-checklist li {
        display: flex;
        align-items: flex-start;
        gap: .7rem;
        font-size: .9rem;
        color: rgba(255, 255, 255, .88);
        margin-bottom: .55rem;
    }

    .offer-checklist li i {
        color: var(--gold);
        margin-top: .2rem;
        flex-shrink: 0;
    }

    .offer-disclaimer {
        font-size: .75rem;
        color: rgba(255, 255, 255, .4);
        margin-top: .65rem;
    }

    @media (max-width: 700px) {
        .offer-inner {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .offer-checklist li {
            text-align: left;
        }
    }

    @media (max-width: 480px) {
        .offer-badge-big {
            width: 150px;
            height: 150px;
        }
    }

    /* =============================================
       SERVICES SECTION
    ============================================= */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .service-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--white);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
        transition: all var(--transition);
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .service-img-placeholder {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .45rem;
        font-size: 2.25rem;
        color: var(--slate);
        background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    }

    .service-img-placeholder span {
        font-size: .78rem;
        color: var(--gray-400);
        font-family: 'Inter', sans-serif;
    }

    .service-body {
        padding: 1.35rem;
    }

    .service-body h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.2rem;
        color: var(--navy);
        margin-bottom: .45rem;
    }

    .service-body p {
        font-size: .87rem;
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: .9rem;
    }

    .service-tag {
        display: inline-block;
        background: rgba(26, 43, 94, .08);
        color: var(--navy);
        border-radius: 50px;
        padding: .22rem .7rem;
        font-size: .73rem;
        font-weight: 600;
    }

    @media (max-width: 600px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* =============================================
       WHY CHOOSE US
    ============================================= */
    #why-us {
        background: var(--navy-dark);
        color: var(--white);
    }

    #why-us .section-title {
        color: var(--white);
    }

    #why-us .section-subtitle {
        color: rgba(255, 255, 255, .65);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }

    .why-item {
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: var(--radius-lg);
        padding: 1.35rem;
        display: flex;
        gap: 1.1rem;
        align-items: flex-start;
        transition: background var(--transition);
    }

    .why-item:hover {
        background: rgba(255, 255, 255, .09);
    }

    .why-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        background: linear-gradient(135deg, var(--red), var(--red-dark));
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--white);
        flex-shrink: 0;
    }

    .why-text h4 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.05rem;
        color: var(--white);
        margin-bottom: .3rem;
    }

    .why-text p {
        font-size: .86rem;
        color: rgba(255, 255, 255, .65);
        line-height: 1.6;
    }

    @media (max-width: 600px) {
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    /* =============================================
       PROCESS SECTION
    ============================================= */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, var(--navy), var(--red));
        z-index: 0;
    }

    .process-step {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 .5rem;
    }

    .step-number {
        width: 76px;
        height: 76px;
        background: var(--white);
        border: 3px solid var(--navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.1rem;
        font-family: 'Oswald', sans-serif;
        font-size: 1.65rem;
        font-weight: 700;
        color: var(--navy);
        box-shadow: var(--shadow-sm);
        transition: all var(--transition);
    }

    .process-step:hover .step-number {
        background: var(--navy);
        color: var(--gold);
        transform: scale(1.1);
    }

    .process-step h4 {
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: .35rem;
    }

    .process-step p {
        font-size: .83rem;
        color: var(--gray-600);
        line-height: 1.55;
    }

    @media (max-width: 768px) {
        .process-steps {
            grid-template-columns: repeat(2, 1fr);
        }

        .process-steps::before {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .process-steps {
            grid-template-columns: 1fr;
        }
    }

    /* =============================================
       WARRANTY SECTION
    ============================================= */
    #warranty {
        background: linear-gradient(135deg, var(--gray-100), var(--white));
    }

    .warranty-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3rem;
        align-items: center;
    }

    .warranty-badge-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .warranty-circle {
        width: clamp(200px, 25vw, 260px);
        height: clamp(200px, 25vw, 260px);
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--navy-dark));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1.75rem;
        box-shadow: 0 20px 60px rgba(26, 43, 94, .35), 0 0 0 14px rgba(26, 43, 94, .08);
        flex-shrink: 0;
    }

    .warranty-circle .years {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2.8rem, 6vw, 4rem);
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
    }

    .warranty-circle .label {
        font-size: .75rem;
        color: rgba(255, 255, 255, .75);
        text-transform: uppercase;
        letter-spacing: .1em;
        margin: .25rem 0;
    }

    .warranty-circle .brand {
        font-size: .88rem;
        color: var(--white);
        font-weight: 700;
    }

    .warranty-text h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        color: var(--navy);
        margin-bottom: .7rem;
    }

    .warranty-text p {
        color: var(--gray-600);
        margin-bottom: .9rem;
        line-height: 1.7;
        font-size: .93rem;
    }

    .warranty-list li {
        display: flex;
        align-items: flex-start;
        gap: .55rem;
        color: var(--gray-800);
        font-size: .88rem;
        margin-bottom: .55rem;
    }

    .warranty-list li i {
        color: var(--navy);
        margin-top: .2rem;
        flex-shrink: 0;
    }

@media (max-width: 700px) {
    .warranty-inner {
        display: flex;
        flex-direction: column;
        gap: 1.5rem; /* diminui espaço */
        padding: 0 16px; /* evita colar nas bordas */
        width: 100%;
    }

    .warranty-inner > * {
        width: 100%;
        max-width: 100%;
    }

    /* Corrige textos estourando */
    .warranty-inner p,
    .warranty-inner li,
    .warranty-inner h1,
    .warranty-inner h2,
    .warranty-inner h3 {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .warranty-list {
        padding: 0;
    }

    .warranty-list li {
        text-align: left;
    }

    .warranty-circle {
        margin: 0 auto;
        max-width: 180px; /* reduz mais no mobile */
        width: 100%;
        height: auto;
    }
}
@media (max-width: 700px) {

    .warranty-inner {
        padding: 0 14px;
    }

    /* TÍTULO */
    .warranty-inner h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    /* TEXTO */
    .warranty-inner p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* LISTA */
    .warranty-list li {
        font-size: 14px;
        line-height: 1.5;
    }

    /* CÍRCULO */
    .warranty-circle {
        margin-top: 20px;
        max-width: 150px;
    }

    /* BOTÃO (principal problema aí embaixo 👇) */
    .warranty-inner .btn,
    .warranty-inner a {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 13px;
        padding: 12px;
        white-space: normal; /* permite quebrar linha */
    }

}

    /* =============================================
       TESTIMONIALS
    ============================================= */
    #testimonials {
        background: var(--gray-100);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .testimonial-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 1.75rem 1.35rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .stars {
        color: #ffc107;
        margin-bottom: .75rem;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: .91rem;
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 1.25rem;
        font-style: italic;
        flex: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: .75rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--red));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--white);
        font-size: .95rem;
        flex-shrink: 0;
    }

    .author-name {
        font-weight: 700;
        color: var(--navy);
        font-size: .9rem;
    }

    .author-loc {
        font-size: .75rem;
        color: var(--gray-400);
    }

    @media (max-width: 600px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* =============================================
       FINANCING SECTION
    ============================================= */
    #financing {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
    }

    .financing-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }

    .financing-text h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 3.5vw, 2.8rem);
        color: var(--navy-dark);
        margin-bottom: .7rem;
    }

    .financing-text p {
        color: var(--navy);
        opacity: .85;
        margin-bottom: 1.4rem;
        line-height: 1.7;
        font-size: .93rem;
    }

    .financing-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .9rem;
    }

    .finance-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 1.35rem 1rem;
        text-align: center;
        box-shadow: var(--shadow-md);
    }

    .finance-card i {
        font-size: 1.8rem;
        color: var(--navy);
        margin-bottom: .5rem;
        display: block;
    }

    .finance-card h4 {
        font-family: 'Oswald', sans-serif;
        font-size: .95rem;
        color: var(--navy);
        margin-bottom: .25rem;
    }

    .finance-card p {
        font-size: .78rem;
        color: var(--gray-600);
        line-height: 1.5;
    }

    @media (max-width: 700px) {
        .financing-inner {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .financing-cards {
            grid-template-columns: 1fr;
        }
    }

    /* =============================================
       CONTACT SECTION
    ============================================= */
    #contact {
        background: var(--white);
    }

    .contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: start;
    }

    .contact-info h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.6rem, 3vw, 2.5rem);
        color: var(--navy);
        margin-bottom: .7rem;
    }

    .contact-info>p {
        color: var(--gray-600);
        margin-bottom: 1.75rem;
        line-height: 1.7;
        font-size: .93rem;
    }

    .contact-detail {
        display: flex;
        align-items: flex-start;
        gap: .9rem;
        margin-bottom: 1.1rem;
    }

    .contact-detail-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: var(--navy);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-detail-text strong {
        display: block;
        font-weight: 700;
        color: var(--navy);
        font-size: .92rem;
    }

    .contact-detail-text span {
        font-size: .85rem;
        color: var(--gray-600);
    }

    .contact-detail-text a {
        color: var(--navy);
        font-weight: 600;
    }

    .contact-detail-text a:hover {
        color: var(--red);
    }

    .contact-form-wrap {
        background: var(--off-white);
        border-radius: var(--radius-lg);
        padding: 2.25rem 1.75rem;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-sm);
    }

    .contact-form-wrap h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: .4rem;
    }

    .contact-form-wrap>p {
        font-size: .86rem;
        color: var(--gray-600);
        margin-bottom: 1.35rem;
    }

    @media (max-width: 900px) {
        .contact-inner {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .contact-form-wrap {
            width: 90%;
            padding: 1.5rem 1.1rem;
        }
    }

    /* =============================================
       FINAL CTA
    ============================================= */
    #final-cta {
        background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, rgba(192, 39, 45, .85) 100%);
        color: var(--white);
        text-align: center;
        padding: clamp(3rem, 8vw, 5rem) 1.25rem;
    }

    #final-cta h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(1.75rem, 4.5vw, 3.2rem);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    #final-cta>p {
        font-size: clamp(.9rem, 2vw, 1.1rem);
        opacity: .88;
        max-width: 560px;
        margin: 0 auto 1.75rem;
        line-height: 1.65;
    }

    .final-cta-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    @media (max-width: 480px) {
        .final-cta-group {
            flex-direction: column;
            align-items: stretch;
        }

        .final-cta-group .btn {
            width: 100%;
        }
    }

    /* =============================================
       FOOTER
    ============================================= */
    #site-footer {
        background: var(--navy-dark);
        color: rgba(255, 255, 255, .7);
        padding: 3rem 1.25rem 2rem;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.25rem;
        padding-bottom: 2.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-brand .footer-logo {
        display: flex;
        align-items: center;
        gap: .7rem;
        margin-bottom: .9rem;
    }

    .footer-brand .footer-logo img {
        width: 48px;
    }

    .footer-brand .footer-logo-text strong {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        color: var(--white);
    }

    .footer-brand .footer-logo-text span {
        font-size: .67rem;
        color: var(--gold);
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .footer-brand p {
        font-size: .83rem;
        line-height: 1.65;
        margin-bottom: .9rem;
    }

    .footer-brand .ein {
        font-size: .76rem;
        color: rgba(255, 255, 255, .38);
    }

    .footer-col h4 {
        font-family: 'Oswald', sans-serif;
        font-size: .95rem;
        color: var(--white);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: .9rem;
    }

    .footer-col ul li {
        font-size: .82rem;
        margin-bottom: .45rem;
    }

    .footer-col ul li a {
        color: rgba(255, 255, 255, .62);
        transition: color var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--gold);
    }

    .footer-col ul li i {
        margin-right: .38rem;
        color: var(--gold);
        font-size: .78rem;
    }

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-legal {
        font-size: .74rem;
        line-height: 1.65;
        max-width: 700px;
    }

    .footer-legal p {
        margin-bottom: .38rem;
    }

    .footer-copy {
        font-size: .76rem;
        color: rgba(255, 255, 255, .4);
        text-align: right;
    }

    .footer-copy a {
        color: rgba(255, 255, 255, .52);
    }

    .licensed-badge {
        display: inline-flex;
        align-items: center;
        gap: .38rem;
        background: rgba(201, 168, 76, .14);
        border: 1px solid rgba(201, 168, 76, .28);
        border-radius: 50px;
        padding: .38rem .9rem;
        font-size: .76rem;
        color: var(--gold);
        font-weight: 600;
        margin-top: .65rem;
    }

    @media (max-width: 768px) {
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 1.75rem;
        }
    }

    @media (max-width: 520px) {
        .footer-top {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .footer-copy {
            text-align: left;
        }
    }

    /* =============================================
       SUCCESS TOAST
    ============================================= */
    #toast {
        position: fixed;
        bottom: 1.5rem;
        right: 1.25rem;
        left: 1.25rem;
        max-width: 420px;
        margin: 0 auto;
        background: #16a34a;
        color: var(--white);
        padding: .9rem 1.35rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: .65rem;
        font-weight: 600;
        font-size: .9rem;
        z-index: 9999;
        transform: translateY(130%);
        opacity: 0;
        transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    @media (min-width: 500px) {
        #toast {
            left: auto;
            right: 1.5rem;
            max-width: 380px;
        }
    }

    #toast.show {
        transform: translateY(0);
        opacity: 1;
    }

    /* =============================================
       SCROLL ANIMATIONS
    ============================================= */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* =============================================
       FLOATING CALL BUTTON (MOBILE)
    ============================================= */
    #float-call {
        position: fixed;
        bottom: 1.25rem;
        left: 1.25rem;
        z-index: 999;
        display: none;
    }

    #float-call a {
        display: flex;
        align-items: center;
        gap: .45rem;
        background: var(--red);
        color: var(--white);
        border-radius: 50px;
        padding: .78rem 1.25rem;
        font-weight: 700;
        font-size: .88rem;
        box-shadow: 0 6px 24px rgba(192, 39, 45, .5);
        animation: pulse 2s infinite;
        white-space: nowrap;
    }

    @media (max-width: 768px) {
        #float-call {
            display: block;
        }
    }

    @media (max-width: 400px) {
        #float-call a {
            font-size: .78rem;
            padding: .7rem 1rem;
        }
    }

    /* =============================================
       MISC UTILITIES
    ============================================= */
    .gold-text {
        color: var(--gold);
    }

    .red-text {
        color: var(--red);
    }

    .navy-text {
        color: var(--navy);
    }

    .divider {
        height: 4px;
        width: 56px;
        background: linear-gradient(90deg, var(--navy), var(--red));
        border-radius: 2px;
        margin: 0 auto 1.4rem;
    }

    .divider-left {
        margin: 0 0 1.4rem;
    }

    /* =============================================
       SMS CONSENT CHECKBOXES
    ============================================= */
    .sms-consent-wrap {
        display: flex;
        flex-direction: column;
        gap: .8rem;
        margin-bottom: 1.1rem;
        padding: 1.1rem;
        background: rgba(26, 43, 94, .04);
        border: 1px solid rgba(26, 43, 94, .1);
        border-radius: var(--radius);
    }

    .sms-consent-item {
        position: relative;
    }

    .sms-consent-label {
        display: flex;
        align-items: flex-start;
        gap: .7rem;
        cursor: pointer;
        line-height: 1;
    }

    .sms-consent-label input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    .sms-checkbox-box {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        min-width: 20px;
        border: 2px solid var(--gray-400);
        border-radius: 4px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .08rem;
        transition: border-color .2s, background .2s, box-shadow .2s;
    }

    .sms-checkbox-box::after {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: .68rem;
        color: var(--white);
        opacity: 0;
        transition: opacity .15s;
    }

    .sms-consent-label input[type="checkbox"]:checked+.sms-checkbox-box {
        background: var(--navy);
        border-color: var(--navy);
    }

    .sms-consent-label input[type="checkbox"]:checked+.sms-checkbox-box::after {
        opacity: 1;
    }

    .sms-consent-label input[type="checkbox"]:focus-visible+.sms-checkbox-box {
        box-shadow: 0 0 0 3px rgba(26, 43, 94, .25);
        border-color: var(--navy);
    }

    .sms-consent-item.has-error .sms-checkbox-box {
        border-color: var(--red);
    }

    .sms-consent-text {
        font-size: .78rem;
        color: var(--gray-600);
        line-height: 1.55;
    }

    .sms-consent-text strong {
        color: var(--text);
    }

    /* Terms / Privacy link */
    .form-tos-line {
        font-size: .76rem;
        color: var(--gray-400);
        text-align: center;
        margin-top: .6rem;
    }

    .form-tos-line a {
        color: var(--navy);
        font-weight: 600;
        text-decoration: underline;
        transition: color .2s;
    }

    .form-tos-line a:hover {
        color: var(--red);
    }

    /* =============================================
       ANNOUNCEMENT RESPONSIVE
    ============================================= */
    @media (max-width: 480px) {
        #announcement {
            font-size: .7rem;
            padding: .55rem .75rem;
        }

        #announcement br {
            display: none;
        }
    }

    /* =============================================
       SECTION PADDING RESPONSIVE
    ============================================= */
    @media (max-width: 480px) {
        .section {
            padding: 2.5rem 1rem;
        }

        .contact-form-wrap {
            padding: 1.4rem 1rem;
        }
    }

    #summer-tribute {
        background: linear-gradient(135deg, #0b1628, #162a46);
        color: #fff;
        position: relative;
    }

    .tribute-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .tribute-image {
        position: relative;
    }

    .tribute-image img {
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    }

    /* BADGE */
    .tribute-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(10, 20, 40, .85);
        backdrop-filter: blur(6px);
        padding: 10px 14px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    }

    .tribute-badge img {
        width: 42px;
    }

    .tribute-badge span {
        font-size: 12px;
        font-weight: 600;
        color: #c9a84c;
    }

    /* TEXTO */
    .section-title .gold {
        color: #c9a84c;
        display: block;
    }

    .tribute-list {
        margin: 1.5rem 0;
    }

    .tribute-list li {
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, .85);
        line-height: 1.6;
    }

    .tribute-cta {
        margin-top: 1.5rem;
    }

    /* RESPONSIVO */
    @media (max-width: 900px) {
        .tribute-grid {
            grid-template-columns: 1fr;
        }

        .tribute-content {
            text-align: center;
        }

        /* =============================================
   🔥 MOBILE FIX HARD (até 480px)
============================================= */
        @media (max-width: 480px) {

            html {
                font-size: 14px;
                /* diminui tudo global */
            }

            .section {
                padding: 2.2rem 1rem;
            }

            .section-title {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .section-subtitle {
                font-size: .85rem;
                margin-bottom: 1.8rem;
            }

            /* HEADER */
            #site-header {
                border-bottom-width: 1px;
            }

            .header-inner {
                min-height: 60px;
            }

            .header-logo img {
                width: 42px;
                height: 42px;
            }

            /* HERO */
            #hero {
                min-height: auto;
                padding-top: 60px;
            }

            .hero-content {
                padding: 2rem 1rem;
                gap: 1.5rem;
            }

            .hero-title {
                font-size: 1.7rem;
                line-height: 1.15;
            }

            .hero-subtitle {
                font-size: .85rem;
                margin-bottom: 1.2rem;
            }

            .hero-cta-group {
                gap: .6rem;
            }

            .hero-form-card {
                padding: 1.2rem 1rem;
                border-radius: 12px;
            }

            .hero-form-card h3 {
                font-size: 1.1rem;
            }

            /* BOTÕES */
            .btn {
                font-size: .8rem;
                padding: .7rem 1rem;
            }

            .btn-lg,
            .btn-xl {
                font-size: .85rem;
                padding: .8rem 1.2rem;
            }

            /* STATS */
            #stats-bar {
                padding: 1.5rem .8rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .stat-label {
                font-size: .65rem;
            }

            /* BENEFITS */
            .benefit-card {
                padding: 1.2rem 1rem;
            }

            .benefit-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
            }

            /* SERVICES */
            .service-img-placeholder {
                height: 140px;
                font-size: 1.6rem;
            }

            .service-body {
                padding: 1rem;
            }

            .service-body h3 {
                font-size: 1rem;
            }

            .service-body p {
                font-size: .82rem;
            }

            /* WHY */
            .why-item {
                padding: 1rem;
                gap: .8rem;
            }

            .why-icon {
                width: 40px;
                height: 40px;
            }

            /* PROCESS */
            .step-number {
                width: 58px;
                height: 58px;
                font-size: 1.2rem;
            }

            /* OFFER */
            .offer-badge-big {
                width: 130px;
                height: 130px;
                margin-top: 15px;
            }

            .offer-text-side h2 {
                font-size: 1.4rem;
            }

            .offer-text-side p {
                font-size: .85rem;
            }

            /* FORM */
            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: .85rem;
                padding: .6rem .8rem;
            }

            /* FIX OVERFLOW BUGS */
            body {
                overflow-x: hidden;
            }

            .container,
            .hero-content,
            .offer-inner,
            .warranty-inner {
                width: 100%;
                overflow: hidden;
            }
        }
    }