/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111827;
}

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

button {
    font-family: inherit;
}

/* =========================================================
   VARIABLES
========================================================= */
:root {
    --navy: #080e2d;
    --navy-light: #10183d;
    --orange: #ffae24;
    --orange-hover: #f5a313;
    --green: #20c96b;
    --white: #ffffff;
    --text-dark: #111827;
    --text-light: rgba(255, 255, 255, 0.92);
    --border-light: rgba(255, 255, 255, 0.18);
    --border-dark: rgba(8, 14, 45, 0.12);
    --navbar-height: 92px;
    --container-width: 1140px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: transparent;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* =========================================================
   SCROLLED HEADER
========================================================= */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(8, 14, 45, 0.08);
}

/* =========================================================
   NAVBAR CONTAINER
========================================================= */
.navbar-container {
    width: min(calc(100% - 48px), var(--container-width));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--white);
    transition: color 0.3s ease;
}

/* Simple logo symbol */
.brand-symbol {
    width: 42px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Serif Display", serif;
    font-size: 45px;
    line-height: 1;
}

.brand-symbol::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: 10px;
    left: 6px;
}

.brand-symbol span {
    position: relative;
    z-index: 2;
    transform: translateY(-2px);
}

.brand-name {
    display: flex;
    flex-direction: column;
    font-size: 19px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Logo after scroll */
.site-header.scrolled .brand {
    color: #1729b8;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.site-header.scrolled .nav-link {
    color: #15182e;
}

.site-header.scrolled .nav-link:hover {
    color: var(--orange);
}

/* =========================================================
   SERVICES DROPDOWN
========================================================= */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 310px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(8, 14, 45, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(8, 14, 45, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(8, 14, 45, 0.08);
    border-top: 1px solid rgba(8, 14, 45, 0.08);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border-radius: 11px;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f7ff;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #1829c4;
    background: #eef0ff;
}

.dropdown-menu a > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-menu strong {
    color: #111827;
    font-size: 13px;
}

.dropdown-menu small {
    color: #73788d;
    font-size: 11px;
}

/* =========================================================
   NAVBAR ACTIONS
========================================================= */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =========================================================
   BOOK CALL BUTTON
========================================================= */
.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 25px;
    background: var(--orange);
    color: #101321;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.call-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 174, 36, 0.25);
}

.call-button i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.call-button:hover i {
    transform: translateX(4px);
}

/* =========================================================
   WHATSAPP
========================================================= */
.whatsapp-button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 201, 107, 0.28);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled .mobile-menu-button span {
    background: #111827;
}

/* =========================================================
   MOBILE MENU OPEN ICON
========================================================= */
.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-menu {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
    background: #ffffff;
    border-top: 1px solid rgba(8, 14, 45, 0.07);
    box-shadow: 0 20px 30px rgba(8, 14, 45, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    width: min(calc(100% - 40px), 600px);
    margin: 0 auto;
    padding: 20px 0 30px;
}

.mobile-nav-link {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eceef4;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.mobile-nav-link i {
    font-size: 11px;
    color: #6b7280;
}

.mobile-nav-link:hover {
    color: var(--orange);
}

/* =========================================================
   MOBILE ACTIONS
========================================================= */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 25px;
}

.mobile-call-button {
    width: 100%;
}

.whatsapp-mobile {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #dfe4e9;
    border-radius: 10px;
    color: #159957;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-mobile i {
    font-size: 20px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    min-height: calc(100vh - 0px);

    padding-top: calc(var(--navbar-height) + 55px);
    padding-bottom: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 85%,
            rgba(255, 174, 36, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(35, 58, 180, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080d28 0%,
            #0d1435 55%,
            #080e2d 100%
        );

}


/* =========================================================
   SUBTLE BACKGROUND DETAILS
========================================================= */

.hero-section::before {

    content: "";

    position: absolute;

    top: 0;
    right: 48%;

    width: 1px;
    height: 100%;

    background: rgba(255, 255, 255, 0.05);

}


.hero-section::after {

    content: "";

    position: absolute;

    left: -120px;
    bottom: 60px;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        1280px
    );

    min-height: 650px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 80px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 3;

    padding-bottom: 35px;

    color: #ffffff;

}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 16px;

    margin-bottom: 28px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.14
    );

    border-radius: 50px;

    background: rgba(
        255,
        255,
        255,
        0.055
    );

    color: rgba(
        255,
        255,
        255,
        0.78
    );

    font-size: 13px;

    font-weight: 600;

    backdrop-filter: blur(10px);

}


.badge-dot {

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #19c7a1;

    box-shadow:
        0 0 0 5px rgba(
            25,
            199,
            161,
            0.08
        );

}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {

    margin-bottom: 16px;

    color: var(--orange);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    max-width: 720px;

    margin: 0;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size:
        clamp(
            48px,
            5vw,
            74px
        );

    line-height: 0.99;

    letter-spacing: -2px;

    font-weight: 400;

    color: #ffffff;

}


.hero-title span {

    position: relative;

    color: var(--orange);

    white-space: nowrap;

}


/* underline */

.hero-title span::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    margin-bottom: 10px;
    bottom: -0.05px;

    height: 5px;

    border-radius: 5px;

    background: var(--orange);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 600px;

    margin-top: 28px;

    color: rgba(
        255,
        255,
        255,
        0.68
    );

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 32px;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hero-primary-button {

    min-height: 58px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    border-radius: 12px;

    background: var(--orange);

    color: #101321;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;

}


.hero-primary-button:hover {

    background: var(--orange-hover);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(
            255,
            174,
            36,
            0.22
        );

}


.button-arrow {

    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


.hero-primary-button:hover
.button-arrow {

    transform: translateX(5px);

}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.hero-secondary-button {

    min-height: 58px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.18
    );

    border-radius: 12px;

    color: rgba(
        255,
        255,
        255,
        0.82
    );

    background: rgba(
        255,
        255,
        255,
        0.025
    );

    font-size: 14px;

    font-weight: 600;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;

}


.hero-secondary-button:hover {

    color: #ffffff;

    border-color: rgba(
        255,
        255,
        255,
        0.35
    );

    background: rgba(
        255,
        255,
        255,
        0.08
    );

}


.play-icon {

    width: 26px;
    height: 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(
        255,
        255,
        255,
        0.12
    );

    font-size: 8px;

}


/* =========================================================
   TRUST AREA
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 38px;

}


.trust-avatars {

    display: flex;

    align-items: center;

}


.trust-avatars span {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: -7px;

    border: 2px solid #0b1130;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #26389b,
            #17236c
        );

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

}


.trust-avatars span:first-child {

    margin-left: 0;

}


.trust-avatars span:nth-child(2) {

    background:
        linear-gradient(
            135deg,
            #c77a37,
            #7e421e
        );

}


.trust-avatars span:nth-child(3) {

    background:
        linear-gradient(
            135deg,
            #3b8b72,
            #20594b
        );

}


.trust-avatars span:last-child {

    background: #ffffff;

    color: #15204b;

}


.trust-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.trust-text strong {

    color: rgba(
        255,
        255,
        255,
        0.88
    );

    font-size: 12px;

}


.trust-text small {

    color: rgba(
        255,
        255,
        255,
        0.45
    );

    font-size: 11px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   IMAGE GLOW
========================================================= */

.hero-glow {

    position: absolute;

    width: 75%;

    height: 75%;

    top: 10%;
    left: 15%;

    background:
        radial-gradient(
            circle,
            rgba(
                40,
                65,
                190,
                0.38
            ),
            transparent 70%
        );

    filter: blur(45px);

}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.hero-image-wrapper {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 610px;

    aspect-ratio: 1.08 / 0.82;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.12
    );

    background: #111936;

    box-shadow:
        0 35px 80px rgba(
            0,
            0,
            0,
            0.32
        );

    transform: translateY(0);

    transition:
        transform 0.5s ease;

}


.hero-image-wrapper:hover {

    transform: translateY(-6px);

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.7s ease;

}


.hero-image-wrapper:hover
.hero-image {

    transform: scale(1.025);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(
                5,
                10,
                35,
                0.03
            ) 40%,
            rgba(
                5,
                10,
                35,
                0.55
            ) 100%
        );

    pointer-events: none;

}


/* =========================================================
   LOCATION CARD
========================================================= */

.hero-location-card {

    position: absolute;

    top: 22px;
    left: 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px 11px 11px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.15
    );

    border-radius: 13px;

    background: rgba(
        7,
        13,
        42,
        0.78
    );

    backdrop-filter: blur(14px);

    color: #ffffff;

}


.location-icon {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(
        255,
        174,
        36,
        0.16
    );

    color: var(--orange);

}


.hero-location-card div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.hero-location-card strong {

    font-size: 12px;

}


.hero-location-card small {

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 10px;

}


/* =========================================================
   BOTTOM INFO CARD
========================================================= */

.hero-info-card {

    position: absolute;

    left: 24px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 260px;

    padding: 13px 15px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.13
    );

    border-radius: 14px;

    background: rgba(
        7,
        13,
        42,
        0.83
    );

    backdrop-filter: blur(16px);

}


.info-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(
        25,
        199,
        161,
        0.14
    );

    color: #24cfa9;

}


.info-content {

    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;

}


.info-content strong {

    color: #ffffff;

    font-size: 11px;

}


.info-content span {

    color: rgba(
        255,
        255,
        255,
        0.5
    );

    font-size: 9px;

}


.info-check {

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #20c96b;

    color: #ffffff;

    font-size: 10px;

}

/* =========================================================
   HERO BOTTOM STATS
========================================================= */

.hero-bottom {

    position: relative;

    z-index: 5;

    width: min(
        calc(100% - 48px),
        1120px
    );

    margin: 20px auto 0;

    min-height: 90px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );

}


.hero-stat {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 0 20px;

}


.hero-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    width: 1px;
    height: 28px;

    background: rgba(
        255,
        255,
        255,
        0.09
    );

}


.hero-stat strong {

    color: #ffffff;

    font-family:
        "DM Serif Display",
        Georgia,
        serif;

    font-size: 24px;

    font-weight: 400;

}


.hero-stat span {

    color: rgba(
        255,
        255,
        255,
        0.47
    );

    font-size: 10px;

}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(0, 1fr);

        gap: 45px;

    }


    .hero-title {

        font-size:
            clamp(
                45px,
                5vw,
                64px
            );

    }


    .hero-stat {

        flex-direction: column;

        gap: 2px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .hero-section {

        padding-top:
            calc(
                var(--navbar-height) + 45px
            );

    }


    .hero-container {

        width: min(
            calc(100% - 32px),
            680px
        );

        display: flex;

        flex-direction: column;

        gap: 55px;

        min-height: auto;

    }


    .hero-content {

        width: 100%;

        padding-bottom: 0;

        text-align: center;

    }


    .hero-badge {

        margin-left: auto;
        margin-right: auto;

    }


    .hero-title {

        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(
                46px,
                8vw,
                64px
            );

    }


    .hero-title span {

        white-space: normal;

    }


    .hero-description {

        max-width: 600px;

        margin-left: auto;
        margin-right: auto;

    }


    .hero-actions {

        justify-content: center;

    }


    .hero-trust {

        justify-content: center;

    }


    .hero-visual {

        width: 100%;

    }


    .hero-image-wrapper {

        max-width: 650px;

    }


    .hero-bottom {

        width: min(
            calc(100% - 32px),
            680px
        );

        margin-top: 55px;

        grid-template-columns:
            repeat(2, 1fr);

        padding: 20px 0;

    }


    .hero-stat {

        min-height: 55px;

    }


    .hero-stat:nth-child(2)::after {

        display: none;

    }


    .hero-stat:nth-child(-n + 2) {

        border-bottom: 1px solid rgba(
            255,
            255,
            255,
            0.08
        );

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-section {

        padding-top:
            calc(
                var(--navbar-height) + 35px
            );

    }


    .hero-container {

        width: calc(100% - 28px);

        gap: 42px;

    }


    .hero-badge {

        padding: 8px 13px;

        font-size: 11px;

    }


    .hero-eyebrow {

        font-size: 11px;

        letter-spacing: 1.2px;

    }


    .hero-title {

        font-size:
            clamp(
                40px,
                12vw,
                54px
            );

        letter-spacing: -1.5px;

    }


    .hero-title span::after {

        height: 2px;

    }


    .hero-description {

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.7;

    }


    .hero-actions {

        flex-direction: column;

        width: 100%;

        margin-top: 27px;

    }


    .hero-primary-button,
    .hero-secondary-button {

        width: 100%;

        min-height: 54px;

    }


    .hero-trust {

        margin-top: 30px;

    }


    .hero-image-wrapper {

        aspect-ratio: 0.95 / 0.9;

        border-radius: 21px;

    }


    .hero-location-card {

        top: 14px;
        left: 14px;

        padding: 8px 11px 8px 8px;

    }


    .location-icon {

        width: 31px;
        height: 31px;

    }


    .hero-location-card strong {

        font-size: 10px;

    }


    .hero-location-card small {

        font-size: 8px;

    }


    .hero-info-card {

        left: 14px;
        bottom: 14px;

        min-width: auto;

        max-width: calc(100% - 75px);

        padding: 10px;

    }


    .info-icon {

        width: 32px;
        height: 32px;

    }


    .info-content strong {

        font-size: 9px;

    }


    .info-content span {

        font-size: 8px;

    }


    .hero-image-number {

        right: 14px;
        bottom: 14px;

        width: 43px;
        height: 43px;

        font-size: 15px;

    }


    .hero-bottom {

        width: calc(100% - 28px);

        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 40px;

    }


    .hero-stat {

        padding: 10px;

        text-align: center;

    }


    .hero-stat strong {

        font-size: 21px;

    }


    .hero-stat span {

        font-size: 8px;

    }


    .demo-section {

        padding: 80px 20px;

    }

}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1050px) {
    .desktop-nav {
        gap: 24px;
    }
    .navbar-actions {
        gap: 10px;
    }
    .call-button {
        padding: 0 18px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 850px) {
    :root {
        --navbar-height: 76px;
    }

    .navbar-container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .desktop-nav,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-symbol {
        width: 37px;
        height: 43px;
        font-size: 40px;
    }

    .demo-hero {
        min-height: 700px;
    }

    .demo-content {
        width: min(calc(100% - 32px), var(--container-width));
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
    .navbar-container {
        width: calc(100% - 24px);
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-symbol {
        width: 32px;
        font-size: 35px;
    }

    .mobile-menu-inner {
        width: calc(100% - 30px);
    }
}

/* =========================================================
   CHALLENGE SECTION
========================================================= */
.challenge-section {
    position: relative;
    overflow: hidden;
    padding: 120px 24px 130px;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,174,36,.08), transparent 28%),
        radial-gradient(circle at 85% 65%, rgba(44,76,210,.12), transparent 30%),
        #080e29;
    color: #fff;
}

.challenge-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.08) .6px, transparent .6px);
    background-size: 5px 5px;
}

.challenge-container {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: auto;
}

.challenge-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.challenge-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #ffad24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.challenge-heading h2 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.challenge-heading h2 span {
    color: #ffad24;
}

.challenge-heading p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.58);
    font-size: 15px;
    line-height: 1.8;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.challenge-card {
    position: relative;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.challenge-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
}

.challenge-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    opacity: .07;
}

.challenge-card-orange::after { background: #ffad24; }
.challenge-card-blue::after { background: #4d7cff; }
.challenge-card-teal::after { background: #19c7b0; }
.challenge-card-purple::after { background: #9b7cff; }

.challenge-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.challenge-number {
    color: rgba(255,255,255,.18);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 52px;
    line-height: 1;
}

.challenge-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    color: #ffad24;
    font-size: 16px;
}

.challenge-card-blue .challenge-icon { color: #6f92ff; }
.challenge-card-teal .challenge-icon { color: #19c7b0; }
.challenge-card-purple .challenge-icon { color: #aa91ff; }

.challenge-card h3 {
    max-width: 430px;
    margin: 28px 0 10px;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}

.challenge-card p {
    max-width: 470px;
    margin: 0;
    color: rgba(255,255,255,.53);
    font-size: 13px;
    line-height: 1.75;
}

.challenge-line {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 55px;
    height: 3px;
    border-radius: 5px 5px 0 0;
    background: #ffad24;
}

.challenge-card-blue .challenge-line { background: #6f92ff; }
.challenge-card-teal .challenge-line { background: #19c7b0; }
.challenge-card-purple .challenge-line { background: #aa91ff; }

/* =========================================================
   TRANSITION
========================================================= */
.challenge-transition {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 85px auto 55px;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.transition-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.09);
}

/* =========================================================
   ANSWER / SOLUTION
========================================================= */
.challenge-answer {
    max-width: 780px;
    margin: auto;
    text-align: center;
}

.answer-mark {
    width: 42px;
    height: 42px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,174,36,.35);
    border-radius: 50%;
    color: #ffad24;
    font-size: 18px;
}

.challenge-answer h3 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.8px;
}

.challenge-answer h3 span {
    color: #ffad24;
}

.challenge-answer p {
    max-width: 590px;
    margin: 20px auto 28px;
    color: rgba(255,255,255,.52);
    font-size: 14px;
    line-height: 1.8;
}

.answer-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border: 1px solid rgba(255,174,36,.35);
    border-radius: 10px;
    color: #ffad24;
    background: rgba(255,174,36,.06);
    font-size: 13px;
    font-weight: 700;
    transition: all .25s ease;
}

.answer-button:hover {
    color: #101426;
    background: #ffad24;
    border-color: #ffad24;
}

.answer-button span {
    font-size: 18px;
    transition: transform .25s ease;
}

.answer-button:hover span {
    transform: translateX(4px);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 800px) {
    .challenge-section {
        padding: 90px 20px 100px;
    }

    .challenge-heading {
        margin-bottom: 50px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .challenge-card {
        min-height: 250px;
    }

    .challenge-transition {
        margin: 65px auto 45px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 520px) {
    .challenge-section {
        padding: 75px 15px 85px;
    }

    .challenge-heading h2 {
        font-size: 39px;
    }

    .challenge-heading p {
        font-size: 13px;
    }

    .challenge-card {
        min-height: 245px;
        padding: 24px;
        border-radius: 16px;
    }

    .challenge-number {
        font-size: 42px;
    }

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

    .challenge-card h3 {
        margin-top: 22px;
        font-size: 24px;
    }

    .challenge-card p {
        font-size: 12px;
    }

    .challenge-transition {
        gap: 12px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .challenge-answer h3 {
        font-size: 32px;
    }

    .challenge-answer p {
        font-size: 13px;
    }
}

/* =========================================================
   QUOTE / CTA SECTION
========================================================= */
.quote-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background: #f5f6fa;
}

.quote-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -180px;
    border-radius: 50%;
    background: rgba(255,174,36,.08);
    filter: blur(10px);
}

.quote-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(20,38,110,.06);
}

.quote-container {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 80px;
}

.quote-content {
    max-width: 650px;
}

.quote-label {
    display: inline-block;
    margin-bottom: 17px;
    color: #e79b16;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.quote-content h2 {
    margin: 0;
    color: #101735;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(43px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.quote-content h2 span {
    color: #e79b16;
}

.quote-content > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: #687087;
    font-size: 15px;
    line-height: 1.8;
}

.quote-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 30px;
}

.quote-points div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4c566e;
    font-size: 12px;
    font-weight: 600;
}

.quote-points i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30,190,132,.12);
    color: #18a975;
    font-size: 9px;
}

/* =========================================================
   CTA CARD
========================================================= */
.quote-card {
    position: relative;
    padding: 38px 36px 32px;
    border: 1px solid rgba(18,31,75,.09);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(15,26,65,.10);
}

.quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #ffad24, #ffc85c);
}

.quote-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff5df;
    color: #e79b16;
    font-size: 17px;
}

.quote-card-label {
    display: block;
    margin-bottom: 9px;
    color: #a0a7b7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.quote-card h3 {
    margin: 0;
    color: #101735;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}

.quote-card p {
    margin: 14px 0 25px;
    color: #737b90;
    font-size: 13px;
    line-height: 1.7;
}

.quote-button {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 11px;
    background: #ffad24;
    color: #11182f;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(255,174,36,.22);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.quote-button:hover {
    background: #ffbb43;
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(255,174,36,.28);
}

.quote-button span {
    font-size: 18px;
    transition: transform .25s ease;
}

.quote-button:hover span {
    transform: translateX(5px);
}

.quote-card small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    color: #a1a8b7;
    font-size: 10px;
}

.quote-card small i {
    color: #20ad7c;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 850px) {
    .quote-section {
        padding: 85px 20px;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quote-content {
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .quote-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .quote-points {
        justify-content: center;
    }

    .quote-card {
        width: min(500px, 100%);
        margin: auto;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 520px) {
    .quote-section {
        padding: 70px 15px;
    }

    .quote-content h2 {
        font-size: 39px;
    }

    .quote-content > p {
        font-size: 13px;
    }

    .quote-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .quote-card {
        padding: 32px 24px 26px;
        border-radius: 19px;
    }

    .quote-card h3 {
        font-size: 27px;
    }
}

.services-section {
    position: relative;
    overflow: hidden;
    padding: 125px 24px;
    background: #f7f8fb;
    color: #101735;
}

.services-wrap {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.services-intro {
    position: sticky;
    top: 120px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #e69b18;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.services-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #e69b18;
}

.services-intro h2 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(43px, 5vw, 63px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.5px;
}

.services-intro h2 span {
    color: #e69b18;
}

.services-intro > p {
    max-width: 480px;
    margin: 25px 0 30px;
    color: #737b90;
    font-size: 14px;
    line-height: 1.8;
}

.services-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 21px;
    border-radius: 10px;
    background: #111936;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.services-cta span {
    color: #ffad24;
    font-size: 18px;
    transition: transform .25s ease;
}

.services-cta:hover {
    background: #ffad24;
    color: #111936;
}

.services-cta:hover span {
    color: #111936;
    transform: translateX(5px);
}

.services-proof {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(16,23,53,.1);
}

.proof-avatars {
    display: flex;
}

.proof-avatars span {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -7px;
    border: 2px solid #f7f8fb;
    border-radius: 50%;
    background: #eaf8f3;
    color: #19a977;
    font-size: 10px;
}

.proof-avatars span:nth-child(2) {
    background: #fff3da;
    color: #e69b18;
}

.proof-avatars span:nth-child(3) {
    background: #e9edff;
    color: #536fd4;
}

.services-proof strong,
.services-proof small {
    display: block;
}

.services-proof strong {
    color: #30384e;
    font-size: 11px;
}

.services-proof small {
    margin-top: 4px;
    color: #9299aa;
    font-size: 10px;
}

/* PROCESS */
.services-process {
    position: relative;
    padding-left: 32px;
}

.process-line {
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 19px;
    width: 1px;
    background: #dfe2ea;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr 50px;
    gap: 22px;
    align-items: center;
    min-height: 145px;
    padding: 22px 24px 22px 0;
    border-bottom: 1px solid #e4e6ec;
    transition: .3s ease;
}

.process-item:last-child {
    border-bottom: 0;
}

.process-marker {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8dce6;
    border-radius: 50%;
    background: #f7f8fb;
    color: #8b92a3;
    font-size: 10px;
    font-weight: 800;
    transition: .3s ease;
}

.process-content > span {
    color: #9aa1b1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.process-content h3 {
    margin: 7px 0 7px;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.process-content p {
    max-width: 470px;
    margin: 0;
    color: #7c8497;
    font-size: 12px;
    line-height: 1.65;
}

.process-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff;
    color: #8b92a3;
    box-shadow: 0 6px 20px rgba(16,23,53,.06);
    transition: .3s ease;
}

.process-item:hover,
.process-item.active {
    transform: translateX(8px);
}

.process-item:hover .process-marker,
.process-item.active .process-marker {
    border-color: #ffad24;
    background: #ffad24;
    color: #111936;
    box-shadow: 0 0 0 6px rgba(255,173,36,.12);
}

.process-item:hover .process-icon,
.process-item.active .process-icon {
    background: #111936;
    color: #ffad24;
}

.process-item.active .process-content h3 {
    color: #111936;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .services-wrap {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .services-intro {
        position: static;
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .services-intro > p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-eyebrow {
        justify-content: center;
    }

    .services-proof {
        justify-content: center;
        text-align: left;
    }

    .services-process {
        max-width: 720px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 85px 16px;
    }

    .services-intro h2 {
        font-size: 40px;
    }

    .services-intro > p {
        font-size: 13px;
    }

    .services-process {
        padding-left: 0;
    }

    .process-line {
        left: 18px;
    }

    .process-item {
        grid-template-columns: 38px 1fr;
        gap: 17px;
        padding: 20px 0;
    }

    .process-icon {
        display: none;
    }

    .process-content h3 {
        font-size: 23px;
    }

    .process-content p {
        font-size: 12px;
    }

    .process-item:hover,
    .process-item.active {
        transform: none;
    }

    .services-proof {
        align-items: flex-start;
    }
}

.control-section {
    position: relative;
    overflow: hidden;
    padding: 115px 24px;
    background: #fffaf3;
    color: #101735;
}

.control-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -250px;
    top: -230px;
    border-radius: 50%;
    background: rgba(255,173,36,.08);
}

.control-container {
    position: relative;
    z-index: 1;
    width: min(1150px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.control-main {
    max-width: 520px;
}

.control-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #e79b16;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.control-eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    background: #e79b16;
}

.control-main h2 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(43px, 5vw, 61px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.4px;
}

.control-main h2 span {
    color: #e79b16;
}

.control-main > p {
    margin: 24px 0 30px;
    color: #71798d;
    font-size: 14px;
    line-height: 1.85;
}

.control-status {
    display: flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    padding: 13px 18px;
    border: 1px solid rgba(25,169,119,.16);
    border-radius: 12px;
    background: rgba(25,169,119,.06);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #19ad7a;
    box-shadow: 0 0 0 5px rgba(25,173,122,.10);
}

.control-status strong,
.control-status small {
    display: block;
}

.control-status strong {
    color: #26314c;
    font-size: 11px;
}

.control-status small {
    margin-top: 3px;
    color: #8991a2;
    font-size: 9px;
}

/* FEATURES */

.control-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.control-feature {
    position: relative;
    min-height: 190px;
    padding: 25px;
    border: 1px solid #e9e4db;
    border-radius: 18px;
    background: rgba(255,255,255,.8);
    transition: .3s ease;
}

.control-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(231,155,22,.35);
    box-shadow: 0 18px 40px rgba(24,32,65,.07);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 11px;
    background: #fff4dd;
    color: #e79b16;
    font-size: 15px;
}

.control-feature:nth-child(2) .feature-icon {
    background: #eef3ff;
    color: #4d69c8;
}

.control-feature:nth-child(3) .feature-icon {
    background: #eaf8f3;
    color: #1aa87a;
}

.control-feature:nth-child(4) .feature-icon {
    background: #f0edff;
    color: #8068d8;
}

.control-feature > div:last-child > span {
    color: #b2b7c2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.control-feature h3 {
    margin: 6px 0 8px;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.1;
}

.control-feature p {
    margin: 0;
    color: #7d8597;
    font-size: 11px;
    line-height: 1.7;
}

.control-bottom {
    position: relative;
    z-index: 1;
    width: min(1150px, 100%);
    margin: 85px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #aaa38f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.control-bottom-line {
    flex: 1;
    height: 1px;
    background: #e8e1d6;
}

@media (max-width: 900px) {
    .control-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .control-main {
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .control-eyebrow {
        justify-content: center;
    }

    .control-main > p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .control-status {
        margin: auto;
        text-align: left;
    }

    .control-features {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 550px) {
    .control-section {
        padding: 80px 16px;
    }

    .control-main h2 {
        font-size: 39px;
    }

    .control-features {
        grid-template-columns: 1fr;
    }

    .control-feature {
        min-height: auto;
    }

    .control-bottom {
        margin-top: 60px;
        font-size: 7px;
        gap: 10px;
    }
}

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 120px 24px;
    background: #f7f8fc;
}

.reviews-container {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 70px;
    align-items: center;
}

.reviews-heading {
    align-self: start;
}

.reviews-eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    color: #e79b16;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.reviews-heading h2 {
    margin: 0;
    color: #101735;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1px;
}

.reviews-heading h2 span {
    color: #e79b16;
}

.reviews-heading > p {
    margin: 22px 0 30px;
    color: #778096;
    font-size: 13px;
    line-height: 1.8;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e7e9ef;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,23,53,.05);
}

.rating-box > strong {
    color: #101735;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 43px;
    font-weight: 400;
    line-height: 1;
}

.rating-stars,
.review-stars {
    color: #f5a623;
    letter-spacing: 2px;
}

.rating-stars {
    font-size: 13px;
}

.rating-box span {
    display: block;
    margin-top: 4px;
    color: #9aa1b1;
    font-size: 9px;
}

/* SLIDER */

.reviews-slider {
    min-width: 0;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 18px;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.review-card {
    flex: 0 0 calc(50% - 9px);
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 31px;
    border: 1px solid #e3e6ed;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16,23,53,.055);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.review-stars {
    font-size: 15px;
}

.review-category {
    padding: 7px 11px;
    border-radius: 20px;
    background: #f3f5f9;
    color: #7d8698;
    font-size: 9px;
    white-space: nowrap;
}

.review-card blockquote {
    flex: 1;
    margin: 35px 0;
    color: #59637a;
    font-size: 14px;
    line-height: 1.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 22px;
    border-top: 1px solid #edf0f4;
}

.author-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.avatar-green { background: #19b69a; }
.avatar-orange { background: #f5a623; }
.avatar-blue { background: #526fd4; }
.avatar-purple { background: #866bd6; }

.review-author strong,
.review-author span {
    display: block;
}

.review-author strong {
    color: #17203c;
    font-size: 11px;
}

.review-author span {
    margin-top: 4px;
    color: #9299aa;
    font-size: 9px;
}

.author-verified {
    margin-left: auto;
    color: #18a878;
    font-size: 9px;
}

.author-verified i {
    margin-right: 3px;
}

/* NAVIGATION */

.review-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
}

.review-arrow {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3eb;
    border-radius: 50%;
    background: #fff;
    color: #19213c;
    cursor: pointer;
    transition: .25s ease;
}

.review-arrow:hover {
    border-color: #111936;
    background: #111936;
    color: #fff;
}

.review-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.review-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #d5d9e3;
    cursor: pointer;
    transition: .3s ease;
}

.review-dot.active {
    width: 27px;
    background: #253ca8;
}

/* RESPONSIVE */

@media (max-width: 950px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .reviews-heading {
        max-width: 650px;
        margin: auto;
        text-align: center;
    }

    .rating-box {
        width: fit-content;
        margin: auto;
        text-align: left;
    }

    .review-track {
        max-width: 850px;
        margin: auto;
    }
}

@media (max-width: 650px) {
    .reviews-section {
        padding: 80px 16px;
    }

    .reviews-heading h2 {
        font-size: 42px;
    }

    .review-card {
        flex: 0 0 100%;
        min-height: 370px;
        padding: 25px;
    }

    .review-card blockquote {
        margin: 28px 0;
        font-size: 13px;
    }

    .review-navigation {
        margin-top: 20px;
    }
}

.faq-section {
    position: relative;
    padding: 120px 6%;
    background: #f7f8fb;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    background: rgba(36, 55, 180, 0.06);
    border-radius: 50%;
    filter: blur(10px);
}

.faq-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid #dfe3ef;
    border-radius: 50px;
    background: #fff;
    color: #2437b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-label i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #f5aa24;
}

.faq-intro h2 {
    margin: 0;
    color: #08133d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.faq-intro h2 span {
    color: #2437b4;
}

.faq-description {
    max-width: 450px;
    margin: 26px 0 32px;
    color: #69738e;
    font-size: 17px;
    line-height: 1.8;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    border-radius: 10px;
    background: #2437b4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(36, 55, 180, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.faq-cta span {
    font-size: 20px;
    transition: transform .25s ease;
}

.faq-cta:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(36, 55, 180, 0.25);
}

.faq-cta:hover span {
    transform: translateX(4px);
}

.faq-note {
    max-width: 420px;
    margin-top: 45px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e3e6ef;
    border-radius: 14px;
    background: #fff;
}

.faq-note-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eaf8f3;
    color: #10a77b;
    font-size: 15px;
    font-weight: 800;
}

.faq-note strong {
    display: block;
    margin-bottom: 4px;
    color: #101a3c;
    font-size: 14px;
}

.faq-note p {
    margin: 0;
    color: #8991a5;
    font-size: 13px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.faq-item {
    border: 1px solid #e4e7ef;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.faq-item:hover {
    border-color: #cfd5e6;
    transform: translateY(-1px);
}

.faq-item.active {
    border-color: #cbd3f4;
    box-shadow: 0 15px 35px rgba(19, 31, 76, 0.07);
}

.faq-question {
    width: 100%;
    min-height: 82px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: #0b1539;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.faq-number {
    color: #b5bbca;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
}

.faq-item.active .faq-number {
    color: #2437b4;
}

.faq-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    background: #f5f6fa;
    color: #2437b4;
    font-size: 21px;
    font-weight: 400;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #2437b4;
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 78px 0 78px;
    color: #707991;
    font-size: 15px;
    line-height: 1.8;
    transition: padding .35s ease;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 25px;
}

@media (max-width: 1000px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .faq-intro {
        position: static;
        max-width: 700px;
    }

    .faq-description {
        max-width: 600px;
    }

    .faq-note {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 80px 20px;
    }

    .faq-intro h2 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .faq-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-question {
        min-height: 72px;
        padding: 0 15px;
        grid-template-columns: 32px 1fr 36px;
        gap: 8px;
    }

    .faq-title {
        font-size: 14px;
    }

    .faq-number {
        font-size: 13px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .faq-answer-inner {
        padding-left: 55px;
        padding-right: 20px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer-inner {
        padding-bottom: 20px;
    }

    .faq-note {
        margin-top: 30px;
    }
}

.final-cta {
    position: relative;
    padding: 120px 24px 100px;
    background: #f7f8fc;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 15%, rgba(36,55,180,.09), transparent 35%),
        radial-gradient(circle at 15% 80%, rgba(245,170,36,.06), transparent 28%);
    pointer-events: none;
}

.final-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    pointer-events: none;
}

.final-glow-one {
    top: 40px;
    left: -120px;
    background: rgba(36,55,180,.12);
}

.final-glow-two {
    right: -100px;
    bottom: 30px;
    background: rgba(245,170,36,.10);
}

.final-container {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 auto;
}

.final-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 28px;
    border: 1px solid #dfe3ed;
    border-radius: 50px;
    background: rgba(255,255,255,.8);
    color: #2437b4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.final-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #13ad83;
    box-shadow: 0 0 0 4px rgba(19,173,131,.1);
}

.final-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    border: 1px solid #d7def5;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(25,42,100,.08);
}

.final-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #2437b4;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.final-icon svg path:first-child {
    fill: #eaf0ff;
}

.final-container h2 {
    max-width: 800px;
    margin: 0 auto;
    color: #08133d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.final-container h2 span {
    color: #2437b4;
}

.final-description {
    max-width: 680px;
    margin: 25px auto 34px;
    color: #707991;
    font-size: 17px;
    line-height: 1.8;
}

.final-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: 300px;
    padding: 19px 28px;
    border-radius: 12px;
    background: #2437b4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(36,55,180,.22);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.final-button span {
    font-size: 21px;
    transition: transform .25s ease;
}

.final-button:hover {
    color: #fff;
    background: #1d2fa3;
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(36,55,180,.28);
}

.final-button:hover span {
    transform: translateX(5px);
}

.final-note {
    margin: 14px 0 48px;
    color: #9aa2b5;
    font-size: 13px;
}

.final-trust {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid #e1e5ee;
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 15px 45px rgba(20,31,70,.05);
    text-align: left;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7f7f2;
    color: #0ba47a;
    font-size: 14px;
    font-weight: 800;
}

.trust-item strong {
    display: block;
    margin-bottom: 3px;
    color: #142044;
    font-size: 13px;
}

.trust-item span {
    display: block;
    color: #8a92a7;
    font-size: 11px;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: #e3e6ed;
}

@media (max-width: 800px) {
    .final-cta {
        padding: 90px 20px 75px;
    }

    .final-container h2 {
        font-size: 45px;
        letter-spacing: -1.8px;
    }

    .final-description {
        font-size: 15px;
    }

    .final-trust {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 500px) {
    .final-container h2 {
        font-size: 38px;
    }

    .final-button {
        width: 100%;
        min-width: 0;
    }

    .final-note {
        margin-bottom: 35px;
    }
}

.final-container {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s ease, transform .8s ease;
}

.final-container.visible {
    opacity: 1;
    transform: translateY(0);
}


/*Footer*/
.site-footer {
    position: relative;
    padding: 90px 6% 25px;
    background: #070d29;
    color: #8d96b3;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -300px;
    left: -250px;
    border-radius: 50%;
    background: rgba(36,55,180,.13);
    filter: blur(100px);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(245,170,36,.06);
    filter: blur(90px);
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr .8fr 1.1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.05;
    font-weight: 500;
    text-decoration: none;
}

.footer-logo b {
    font-weight: 700;
}

.logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-family: Georgia,serif;
    font-size: 31px;
    font-weight: 700;
    transform: rotate(-8deg);
}

.footer-brand > p {
    max-width: 370px;
    margin: 30px 0;
    color: #929bb7;
    font-size: 15px;
    line-height: 1.8;
}

.footer-reg {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-reg span,
.office small,
.working-hours span {
    display: block;
    margin-bottom: 8px;
    color: #e5aa2d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.footer-reg strong {
    color: #69738f;
    font-size: 13px;
    font-weight: 500;
}

.office {
    margin-top: 24px;
}

.office strong {
    display: block;
    color: #aeb6cc;
    font-size: 14px;
    font-weight: 500;
}

.footer-column h4,
.footer-connect h4 {
    margin: 5px 0 28px;
    color: #e9ecf5;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column > a {
    position: relative;
    margin-bottom: 18px;
    color: #8791ad;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-column > a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    color: #f5aa24;
    transition: opacity .2s ease;
}

.footer-column > a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-column > a:hover::before {
    opacity: 1;
}

.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
    color: #8e97b1;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact > a:hover {
    color: #fff;
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: #f5aa24;
    font-size: 14px;
}

.working-hours {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.working-hours p {
    margin: 6px 0;
    color: #6f7995;
    font-size: 12px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-bottom: 34px;
}

.social-links a {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;
    background: rgba(255,255,255,.04);
    color: #a5aec4;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.social-links a:hover {
    border-color: #f5aa24;
    background: #f5aa24;
    color: #07102d;
    transform: translateY(-3px);
}

.secure-card {
    padding: 23px;
    border: 1px solid rgba(245,170,36,.25);
    border-radius: 17px;
    background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
}

.secure-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #e9aa28;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.secure-heading span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e9aa28;
}

.secure-card h3 {
    margin: 18px 0 8px;
    color: #fff;
    font-family: Georgia,serif;
    font-size: 20px;
    font-weight: 500;
}

.secure-card p {
    margin: 0 0 18px;
    color: #7e88a4;
    font-size: 12px;
    line-height: 1.7;
}

.payment-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #fff;
    color: #111a35;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}

.secure-card small {
    display: block;
    color: #69738e;
    font-size: 10px;
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0 0 8px;
    color: #58627e;
    font-size: 12px;
}

.footer-bottom .crafted {
    margin: 0;
}

.crafted strong {
    color: #e5a72b;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #626c87;
    font-size: 12px;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 1050px) {
    .footer-top {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 50px 40px;
    }

    .footer-connect {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .footer-connect h4 {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .social-links {
        margin: 0;
    }
}

@media (max-width: 750px) {
    .site-footer {
        padding: 70px 24px 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-connect {
        grid-column: 1 / -1;
        display: block;
    }

    .footer-connect h4 {
        margin-bottom: 22px;
    }

    .social-links {
        margin-bottom: 25px;
    }
}

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand > p {
        margin: 22px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        gap: 20px;
    }

    .secure-card {
        max-width: none;
    }
}

.about-intro {
    padding: 130px 24px 100px;
    background: rgba(7,20,59,.94);
    text-align: center;
}

.about-intro-inner {
    max-width: 900px;
    margin: auto;
}

.about-label {
    display: inline-block;
    margin-bottom: 22px;
    color: #e8a526;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.about-intro h1 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.about-intro h1 span {
    color: #e8a526;
}

.about-intro p {
    max-width: 680px;
    margin: 28px auto 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.8;
}

.about-story {
    padding: 110px 6%;
    background: #fff;
}

.about-story-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 570px;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(12,25,65,.12);
}

.about-image-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    width: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 14px;
    background: rgba(7,20,59,.94);
    color: #fff;
    box-shadow: 0 18px 40px rgba(7,20,59,.2);
}

.about-image-badge strong {
    color: #f5ad28;
    font-family: Georgia,serif;
    font-size: 28px;
}

.about-image-badge span {
    color: #b8c0d5;
    font-size: 11px;
    line-height: 1.4;
}

.section-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #e8a526;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-story-content h2 {
    max-width: 650px;
    margin: 0 0 25px;
    color: #08143b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.about-story-content h2 span {
    color: #243bb5;
}

.about-story-content p {
    max-width: 680px;
    margin: 0 0 18px;
    color: #707b96;
    font-size: 15px;
    line-height: 1.9;
}

.about-quote {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e6ef;
}

.quote-line {
    width: 4px;
    flex: 0 0 4px;
    border-radius: 10px;
    background: #e8a526;
}

.about-quote blockquote {
    margin: 0;
    color: #16275e;
    font-family: Georgia,serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.5;
}

.about-values {
    padding: 110px 6%;
    background: #08122f;
    color: #fff;
}

.about-values-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-values-header .about-label {
    color: #22b9a0;
}

.about-values-header h2 {
    margin: 0;
    font-family: Georgia,serif;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.about-values-header h2 span {
    color: #f4ad29;
}

.about-values-header p {
    margin: 22px auto 0;
    color: #929db9;
    font-size: 15px;
    line-height: 1.8;
}

.values-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 310px;
    padding: 35px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    transition: transform .3s ease,border-color .3s ease;
}

.value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244,173,41,.4);
}

.value-card.featured {
    background: linear-gradient(145deg,#253db8,#172a8f);
}

.value-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(255,255,255,.12);
    font-family: Georgia,serif;
    font-size: 60px;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 55px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(244,173,41,.3);
    border-radius: 13px;
    color: #f4ad29;
    font-size: 20px;
}

.value-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: Georgia,serif;
    font-size: 25px;
}

.value-card p {
    margin: 0;
    color: #929db8;
    font-size: 14px;
    line-height: 1.8;
}

.value-card.featured p {
    color: #c2c9e2;
}

.about-reach {
    padding: 115px 6%;
    background: #f7f8fc;
}

.reach-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.reach-content h2 {
    margin: 0 0 22px;
    color: #08143b;
    font-family: Georgia,serif;
    font-size: clamp(38px,4vw,54px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.reach-content h2 span {
    color: #243bb5;
}

.reach-content > p {
    max-width: 500px;
    color: #707b96;
    font-size: 15px;
    line-height: 1.85;
}

.reach-stats {
    display: flex;
    gap: 45px;
    margin-top: 40px;
}

.reach-stats strong {
    display: block;
    color: #243bb5;
    font-family: Georgia,serif;
    font-size: 40px;
}

.reach-stats span {
    display: block;
    margin-top: 4px;
    color: #8a93aa;
    font-size: 11px;
}

.countries {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.country-card {
    position: relative;
    padding: 27px 28px;
    border: 1px solid #e2e6ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20,35,75,.04);
    transition: transform .25s ease,box-shadow .25s ease;
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(20,35,75,.08);
}

.country-number {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #d8ddea;
    font-family: Georgia,serif;
    font-size: 13px;
}

.country-card strong {
    display: block;
    margin-bottom: 6px;
    color: #0a173f;
    font-family: Georgia,serif;
    font-size: 20px;
}

.country-card small {
    color: #8b94aa;
    font-size: 11px;
}

.about-cta {
    padding: 65px 6%;
    background: #243bb5;
}

.about-cta-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta .about-label {
    margin-bottom: 10px;
    color: #f7bd46;
}

.about-cta h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Georgia,serif;
    font-size: 38px;
}

.about-cta p {
    margin: 0;
    color: #cbd2ef;
    font-size: 14px;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 18px 26px;
    border-radius: 11px;
    background: #f5ad29;
    color: #08143b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s ease,box-shadow .25s ease;
}

.about-cta-button span {
    font-size: 20px;
}

.about-cta-button:hover {
    color: #08143b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.18);
}

@media (max-width: 900px) {
    .about-story-inner,
    .reach-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image-wrap {
        max-width: 650px;
        margin: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .about-intro {
        padding: 90px 20px 75px;
    }

    .about-intro h1 {
        letter-spacing: -1.8px;
    }

    .about-story,
    .about-values,
    .about-reach {
        padding: 80px 20px;
    }

    .about-image-wrap img {
        height: 400px;
    }

    .about-image-badge {
        right: 15px;
        bottom: 20px;
    }

    .countries {
        grid-template-columns: 1fr;
    }

    .reach-stats {
        gap: 30px;
    }

    .about-cta {
        padding: 55px 20px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .about-cta-button {
        width: 100%;
        justify-content: center;
    }
}

.about-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease,transform .7s ease;
}

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

/* =========================================================
   Base Layout & Page Sections
========================================================= */
.contact-page {
    background: #f7f8fc;
    color: #0b1745;
    padding: 110px 0 90px;
}

.contact-wrap {
    width: min(1180px, 92%);
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

/* =========================================================
   Header Override
========================================================= */
#siteHeader {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 30px rgba(8, 14, 45, 0.08) !important;
}

#siteHeader .nav-link {
    color: #15182e !important;
}

#siteHeader .nav-link:hover {
    color: var(--orange) !important;
}

#siteHeader .brand {
    color: #1729b8 !important;
}

#siteHeader .mobile-menu-button span {
    background: #111827 !important;
}

/* =========================================================
   Left Column: Typography & Points
========================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e3e7f2;
    border-radius: 30px;
    background: #fff;
    color: #f2a51a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eyebrow i {
    width: 7px;
    height: 7px;
    background: #1dbb91;
    border-radius: 50%;
}

.contact-copy h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 25px 0 22px;
}

.contact-copy h1 span {
    color: #293fc4;
}

.contact-copy > p {
    max-width: 520px;
    color: #68748f;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-points {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eaf0ff;
    color: #2940bf;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-point strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-point span {
    color: #7a849b;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   Right Column: Contact Form Card & Inputs
========================================================= */
.contact-card {
    background: #fff;
    border: 1px solid #e4e7ef;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(22, 37, 83, 0.08);
}

.form-head {
    margin-bottom: 28px;
}

.form-head h2 {
    font-family: "DM Serif Display", serif;
    font-size: 31px;
    margin: 0 0 7px;
}

.form-head p {
    margin: 0;
    color: #7a849b;
    font-size: 14px;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 13px;
    font-weight: 700;
    color: #1b2749;
}

.field label span {
    color: #e15d42;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #e0e4ed;
    border-radius: 11px;
    background: #fbfcfe;
    color: #142047;
    padding: 13px 14px;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #3047c8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(48, 71, 200, 0.08);
}

.field textarea {
    min-height: 125px;
    resize: vertical;
}

.field small {
    font-size: 11px;
    color: #8a93a7;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 20px 0;
    color: #737d94;
    font-size: 12px;
    line-height: 1.6;
}

.consent input {
    margin-top: 3px;
    accent-color: #2940bf;
}

.submit-btn {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2940bf, #2434a7);
    color: #fff;
    padding: 16px 22px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(41, 64, 191, 0.22);
    transition: 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(41, 64, 191, 0.28);
}

.form-note {
    text-align: center;
    color: #8a93a7;
    font-size: 11px;
    margin: 12px 0 0;
}

/* =========================================================
   Alerts & Validation States
========================================================= */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14px;
}

.alert-success {
    background: #eaf9f3;
    color: #087653;
    border: 1px solid #c8eee0;
}

.error-box {
    background: #fff1f0;
    color: #a33a32;
    border: 1px solid #f1c9c5;
}

.field-error {
    font-size: 11px;
    color: #c33d32;
    margin-top: -3px;
}

/* =========================================================
   Trust Strip
========================================================= */
.trust-strip {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e4e7ef;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #778198;
    font-size: 12px;
}

.trust-strip span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-strip b {
    color: #2940bf;
}

/* =========================================================
   Media Queries / Responsiveness
========================================================= */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-points {
        text-align: left;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-strip {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding: 80px 0 60px;
    }

    .contact-card {
        padding: 22px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(22, 37, 83, 0.06);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

    .contact-copy h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .contact-copy > p {
        font-size: 15px;
    }
}
