/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL SETTINGS
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Apercu", sans-serif;
    background: #ffffff;
    color: #10212B;
    overflow-x: hidden;
}


/* =========================================================
   BRAND COLORS
========================================================= */

:root {
    --brand-navy: #062F47;
    --brand-dark-navy: #031C2B;

    --brand-green: #679D83;
    --brand-light-green: #9FBDA0;
    --brand-pale-green: #EDF5F0;

    --brand-orange: #F8A420;
    --brand-orange-hover: #E8910E;

    --white: #FFFFFF;

    --text-dark: #10212B;
    --text-muted: #60717A;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(6, 47, 71, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateY(0);

    transition:
        transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;

    will-change: transform;
}


/* =========================================================
   NAVBAR HIDDEN STATE
   Activated while scrolling DOWN
========================================================= */

.site-navbar.nav-hidden {
    transform: translateY(-110%);
}


/* =========================================================
   NAVBAR SCROLLED STATE
========================================================= */

.site-navbar.nav-scrolled {
    box-shadow: 0 8px 30px rgba(6, 47, 71, 0.08);
}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {
    width: min(100% - 40px, 1440px);

    height: 86px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: height 0.3s ease;
}


/* Compact navbar after scrolling */

.site-navbar.nav-scrolled .nav-container {
    height: 72px;
}


/* =========================================================
   LOGO
========================================================= */

.nav-logo {
    display: inline-flex;

    align-items: center;

    text-decoration: none;

    line-height: 0;

    flex-shrink: 0;
}


.nav-logo img {
    display: block;

    width: auto;

    height: 58px;

    max-width: 280px;

    object-fit: contain;

    transition:
        height 0.3s ease,
        transform 0.3s ease;
}


.site-navbar.nav-scrolled .nav-logo img {
    height: 50px;
}


.nav-logo:hover img {
    transform: scale(1.015);
}


/* =========================================================
   GET HELP BUTTON
========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 138px;
    min-height: 48px;

    padding: 13px 24px;

    border: none;
    border-radius: 100px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-family: "Apercu", sans-serif;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(248, 164, 32, 0.20);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Button Hover */

.nav-cta:hover {
    background: var(--brand-orange-hover);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(248, 164, 32, 0.30);
}


/* Button Click */

.nav-cta:active {
    transform: translateY(0);
}


/* Keyboard Accessibility */

.nav-cta:focus-visible {
    outline: 3px solid rgba(103, 157, 131, 0.45);

    outline-offset: 4px;
}


/* Arrow */

.nav-cta-arrow {
    display: inline-flex;

    align-items: center;

    font-size: 17px;

    transition: transform 0.25s ease;
}


.nav-cta:hover .nav-cta-arrow {
    transform: translateX(3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .nav-container {
        width: min(100% - 80px, 1520px);

        height: 94px;
    }

    .nav-logo img {
        height: 62px;
    }

    .nav-cta {
        min-width: 150px;

        min-height: 52px;

        font-size: 16px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .nav-container {
        width: min(100% - 36px, 900px);

        height: 76px;
    }

    .nav-logo img {
        height: 52px;

        max-width: 240px;
    }

    .nav-cta {
        min-width: 128px;

        min-height: 45px;

        padding: 11px 21px;

        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nav-container {
        width: calc(100% - 30px);

        height: 70px;
    }

    .nav-logo img {
        height: 45px;

        max-width: 205px;
    }

    .nav-cta {
        min-width: 112px;

        min-height: 42px;

        padding: 10px 17px;

        font-size: 13px;

        gap: 6px;
    }

    .nav-cta-arrow {
        font-size: 15px;
    }


    .site-navbar.nav-scrolled .nav-container {
        height: 64px;
    }

    .site-navbar.nav-scrolled .nav-logo img {
        height: 41px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .nav-container {
        width: calc(100% - 24px);

        height: 74px;
    }

    .nav-logo img {
        height: 49px;

        max-width: 195px;
    }

    .nav-cta {
        min-width: 100px;

        min-height: 39px;

        padding: 9px 14px;

        font-size: 12px;
    }

    .nav-cta-arrow {
        display: none;
    }

    .site-navbar.nav-scrolled .nav-container {
        height: 58px;
    }

    .site-navbar.nav-scrolled .nav-logo img {
        height: 36px;
    }
}


/* =========================================================
   TEMPORARY SECTION
   Remove when actual landing-page sections are added
========================================================= */

.temporary-section {
    min-height: 150vh;

    padding: 160px 5%;
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .site-navbar,
    .nav-container,
    .nav-logo img,
    .nav-cta,
    .nav-cta-arrow {
        transition: none;
    }
}




/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;

    min-height: 100svh;

    padding-top: 150px;
    padding-bottom: 80px;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(103, 157, 131, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #031C2B 0%,
            #062F47 58%,
            #0A4058 100%
        );

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   HERO DECORATIVE ELEMENTS
========================================================= */

.hero-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    left: -180px;

    border-radius: 50%;

    border: 1px solid rgba(159, 189, 160, 0.15);

    pointer-events: none;
}


.hero-section::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -420px;
    bottom: -400px;

    border-radius: 50%;

    border: 1px solid rgba(248, 164, 32, 0.12);

    pointer-events: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 3;

    max-width: 720px;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 9px 15px;

    margin-bottom: 24px;

    border: 1px solid rgba(159, 189, 160, 0.35);

    border-radius: 100px;

    background: rgba(103, 157, 131, 0.10);

    color: #BBD8C4;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.4px;

    line-height: 1.3;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-heading {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 76px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -2.2px;

    text-transform: uppercase;
}


.hero-heading span {
    display: block;

    color: var(--brand-orange);

    margin-top: 5px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 650px;

    margin-top: 27px;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(17px, 1.4vw, 20px);

    line-height: 1.65;
}


.hero-description strong {
    color: #FFFFFF;

    font-weight: 700;
}


.hero-description-secondary {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.65);

    font-size: clamp(15px, 1.2vw, 17px);

    line-height: 1.7;
}


/* =========================================================
   HERO CTA
========================================================= */

.hero-actions {
    margin-top: 34px;
}


.hero-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 58px;

    padding: 16px 27px;

    border-radius: 100px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 14px 35px rgba(248, 164, 32, 0.24);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.hero-cta:hover {
    background: #FFB23B;

    transform: translateY(-3px);

    box-shadow:
        0 18px 42px rgba(248, 164, 32, 0.34);
}


.hero-cta-arrow {
    display: inline-flex;

    font-size: 21px;

    transition: transform 0.25s ease;
}


.hero-cta:hover .hero-cta-arrow {
    transform: translateX(5px);
}


/* =========================================================
   HERO TRUST LINE
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.5;
}


.hero-trust-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--brand-green);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   VISUAL GLOW
========================================================= */

.hero-visual-glow {
    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(103, 157, 131, 0.28) 0%,
            rgba(103, 157, 131, 0.08) 45%,
            transparent 72%
        );

    filter: blur(5px);
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.hero-image-frame {
    position: relative;

    z-index: 2;

    width: min(100%, 510px);

    aspect-ratio: 0.82;

    padding: 10px;

    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            #9FBDA0,
            #679D83 45%,
            #F8A420 100%
        );

    transform: rotate(2deg);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.32);

    transition:
        transform 0.4s ease;
}


.hero-image-frame:hover {
    transform: rotate(0deg) translateY(-5px);
}


/* =========================================================
   IMAGE INNER FRAME
========================================================= */

.hero-image-inner {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 30px;

    background: #F7F9F8;
}


/* =========================================================
   GIRL IMAGE
========================================================= */

.hero-girl {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    mix-blend-mode: multiply;
}


/* =========================================================
   FLOATING RESULT CARD
========================================================= */

.hero-floating-card {
    position: absolute;

    z-index: 4;

    left: -25px;
    bottom: 90px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 19px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.floating-card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: var(--brand-pale-green);

    color: var(--brand-green);

    font-size: 21px;

    font-weight: 800;
}


.floating-card-content {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.floating-card-content strong {
    color: var(--brand-navy);

    font-size: 12px;

    letter-spacing: 0.5px;
}


.floating-card-content span {
    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .hero-container {
        width: min(100% - 120px, 1520px);

        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(500px, 0.95fr);

        gap: 100px;
    }

    .hero-visual {
        min-height: 700px;
    }

    .hero-image-frame {
        width: 540px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .hero-container {
        width: min(100% - 50px, 1000px);

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.75fr);

        gap: 35px;
    }

    .hero-heading {
        font-size: clamp(40px, 5vw, 60px);

        letter-spacing: -1.6px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-image-frame {
        width: 410px;
    }

    .hero-floating-card {
        left: -10px;
    }
}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 850px) {

    .hero-section {
        padding-top: 130px;

        padding-bottom: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 45px;
    }

    .hero-content {
        max-width: 700px;

        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;

        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;

        max-width: 570px;

        width: 100%;

        margin: 0 auto;
    }

    .hero-floating-card {
        left: 5%;

        bottom: 55px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-section {
        min-height: auto;

        padding-top: 115px;

        padding-bottom: 55px;
    }

    .hero-container {
        width: calc(100% - 30px);

        gap: 35px;
    }

    .hero-eyebrow {
        margin-bottom: 18px;

        padding: 8px 12px;

        font-size: 9px;

        letter-spacing: 1px;
    }

    .hero-heading {
        font-size: clamp(34px, 10vw, 46px);

        line-height: 1.04;

        letter-spacing: -1.2px;
    }

    .hero-description {
        margin-top: 20px;

        font-size: 16px;

        line-height: 1.55;
    }

    .hero-description-secondary {
        font-size: 14px;

        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 27px;
    }

    .hero-cta {
        width: 100%;

        max-width: 310px;

        min-height: 54px;

        padding: 15px 22px;

        font-size: 15px;
    }

    .hero-trust {
        margin-top: 17px;

        font-size: 11px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image-frame {
        width: min(88%, 400px);

        border-radius: 30px;

        padding: 8px;
    }

    .hero-image-inner {
        border-radius: 24px;
    }

    .hero-floating-card {
        left: 0;

        bottom: 25px;

        padding: 11px 14px;

        gap: 9px;

        border-radius: 13px;
    }

    .floating-card-icon {
        width: 34px;
        height: 34px;

        border-radius: 9px;

        font-size: 17px;
    }

    .floating-card-content strong {
        font-size: 10px;
    }

    .floating-card-content span {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-section {
        padding-top: 105px;
    }

    .hero-container {
        width: calc(100% - 24px);
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-eyebrow {
        font-size: 8px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-image-frame {
        width: 90%;

        border-radius: 25px;
    }

    .hero-image-inner {
        border-radius: 20px;
    }

    .hero-floating-card {
        left: -2px;

        bottom: 15px;
    }
}

/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {
    position: relative;

    padding: 20px 0 25px;

    background: #F7F9F8;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.problem-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    right: -170px;

    border-radius: 50%;

    background: rgba(248, 164, 32, 0.07);

    pointer-events: none;
}


.problem-section::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    bottom: -190px;
    left: -140px;

    border-radius: 50%;

    background: rgba(103, 157, 131, 0.08);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.problem-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.problem-heading-wrap {
    max-width: 760px;

    margin: 0 auto 5px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.problem-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    margin-bottom: 18px;

    border-radius: 100px;

    background: #FFF1D8;

    color: #C87800;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.problem-heading {
    margin-bottom: 20px;

    color: var(--brand-navy);

    font-size: clamp(40px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.problem-heading span {
    display: block;

    color: var(--brand-green);

    margin-top: 5px;
}


/* =========================================================
   SUBHEADING
========================================================= */

.problem-subheading {
    max-width: 620px;

    margin: 22px auto 0;

    color: #60717A;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   PROBLEM GRID
========================================================= */

.problem-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   BASE CARD
========================================================= */

.problem-card {
    position: relative;

    min-height: 100px;

    padding: 29px 27px 30px;

    border-radius: 24px;

    border: 1px solid transparent;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.problem-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px rgba(6, 47, 71, 0.12);
}


/* =========================================================
   CARD TOP
========================================================= */

.problem-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


.problem-number {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    opacity: 0.55;
}


.problem-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    border-radius: 15px;

    font-size: 23px;

    font-weight: 700;
}


/* =========================================================
   CARD HEADING
========================================================= */

.problem-card h3 {
    margin: 0;

    font-size: 21px;

    font-weight: 750;

    line-height: 1.35;

    letter-spacing: -0.4px;
}


/* =========================================================
   CARD LINE
========================================================= */

.problem-card-line {
    width: 42px;

    height: 3px;

    margin: 24px 0 19px;

    border-radius: 10px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.problem-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    opacity: 0.76;
}


/* =========================================================
   CARD 01 — ORANGE
========================================================= */

.problem-card-orange {
    background: #FFF3E0;

    border-color: #F6D39A;

    color: #6D4310;
}


.problem-card-orange .problem-icon {
    background: #F8A420;

    color: #FFFFFF;

    box-shadow:
        0 9px 20px rgba(248, 164, 32, 0.22);
}


.problem-card-orange .problem-card-line {
    background: #F8A420;
}


.problem-card-orange h3 {
    color: #6B3D08;
}


/* =========================================================
   CARD 02 — GREEN
========================================================= */

.problem-card-green {
    background: #EAF4EE;

    border-color: #C5DDCF;

    color: #315B47;
}


.problem-card-green .problem-icon {
    background: #679D83;

    color: #FFFFFF;

    box-shadow:
        0 9px 20px rgba(103, 157, 131, 0.22);
}


.problem-card-green .problem-card-line {
    background: #679D83;
}


.problem-card-green h3 {
    color: #214A38;
}


/* =========================================================
   CARD 03 — NAVY / BLUE
========================================================= */

.problem-card-blue {
    background: #E8F1F6;

    border-color: #C3D9E5;

    color: #315365;
}


.problem-card-blue .problem-icon {
    background: #062F47;

    color: #FFFFFF;

    box-shadow:
        0 9px 20px rgba(6, 47, 71, 0.20);
}


.problem-card-blue .problem-card-line {
    background: #062F47;
}


.problem-card-blue h3 {
    color: #062F47;
}


/* =========================================================
   CARD 04 — LIGHT SAGE
========================================================= */

.problem-card-sage {
    background: #F0F3E8;

    border-color: #D5DEC4;

    color: #526044;
}


.problem-card-sage .problem-icon {
    background: #82966A;

    color: #FFFFFF;

    box-shadow:
        0 9px 20px rgba(130, 150, 106, 0.22);
}


.problem-card-sage .problem-card-line {
    background: #82966A;
}


.problem-card-sage h3 {
    color: #3F4E32;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.problem-bottom {
    display: flex;

    justify-content: center;

    margin-top: 55px;

    text-align: center;
}


.problem-bottom p {
    max-width: 760px;

    margin: 0;

    color: #60717A;

    font-size: 15px;

    line-height: 1.7;
}


.problem-bottom strong {
    color: var(--brand-navy);

    font-weight: 750;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .problem-container {
        width: min(100% - 120px, 1520px);
    }

    .problem-grid {
        gap: 24px;
    }

    .problem-card {
        min-height: 410px;

        padding: 32px 30px;
    }

    .problem-card h3 {
        font-size: 23px;
    }

    .problem-card p {
        font-size: 15px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .problem-section {
        padding: 100px 0;
    }

    .problem-container {
        width: min(100% - 50px, 1000px);
    }

    .problem-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .problem-card {
        min-height: 350px;
    }

    .problem-card h3 {
        font-size: 21px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .problem-section {
        padding: 80px 0 75px;
    }

    .problem-container {
        width: calc(100% - 30px);
    }

    .problem-heading-wrap {
        margin-bottom: 40px;
    }

    .problem-eyebrow {
        font-size: 9px;

        padding: 7px 12px;
    }

    .problem-heading {
        font-size: clamp(35px, 10vw, 46px);

        letter-spacing: -1.2px;
    }

    .problem-subheading {
        margin-top: 17px;

        font-size: 15px;

        line-height: 1.6;
    }

    .problem-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .problem-card {
        min-height: auto;

        padding: 25px 23px 27px;

        border-radius: 21px;
    }

    .problem-card-top {
        margin-bottom: 30px;
    }

    .problem-card h3 {
        font-size: 20px;

        max-width: 390px;
    }

    .problem-card-line {
        margin: 19px 0 15px;
    }

    .problem-card p {
        font-size: 13.5px;

        line-height: 1.65;
    }

    .problem-bottom {
        margin-top: 35px;
    }

    .problem-bottom p {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .problem-section {
        padding: 70px 0 65px;
    }

    .problem-container {
        width: calc(100% - 24px);
    }

    .problem-heading {
        font-size: 33px;
    }

    .problem-card {
        padding: 23px 20px 25px;
    }

    .problem-card h3 {
        font-size: 19px;
    }
}

/* =========================================================
   SOLUTION SECTION
========================================================= */

.solution-section {
    position: relative;

    padding: 45px 0 22px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(103, 157, 131, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(248, 164, 32, 0.10),
            transparent 28%
        ),
        #031C2B;

    color: #FFFFFF;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE GRID
========================================================= */

.solution-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        transparent 90%
    );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.solution-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.solution-intro {
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.solution-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 8px 16px;

    margin-bottom: 22px;

    border: 1px solid rgba(159, 189, 160, 0.25);

    border-radius: 100px;

    background: rgba(103, 157, 131, 0.10);

    color: #B9D8C5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.6px;
}


/* =========================================================
   HEADING
========================================================= */

.solution-heading {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(39px, 5vw, 66px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.solution-heading span {
    display: block;

    color: var(--brand-orange);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.solution-intro-text {
    max-width: 720px;

    margin: 25px auto 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTION GRID
========================================================= */

.solution-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SOLUTION CARD
========================================================= */

.solution-card {
    position: relative;

    min-height: 390px;

    padding: 28px 27px 30px;

    border-radius: 24px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.solution-card:hover {
    transform: translateY(-9px);

    border-color: rgba(255, 255, 255, 0.22);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.solution-card-number {
    position: absolute;

    top: 25px;
    right: 27px;

    color: rgba(255, 255, 255, 0.28);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CARD ICON
========================================================= */

.solution-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 57px;
    height: 57px;

    margin-bottom: 42px;

    border-radius: 17px;

    color: #FFFFFF;

    font-size: 23px;

    font-weight: 800;
}


.solution-icon span {
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.solution-card-content {
    position: relative;

    z-index: 2;
}


.solution-card h3 {
    margin: 0;

    color: #FFFFFF;

    font-size: 24px;

    font-weight: 750;

    line-height: 1.15;

    letter-spacing: -0.7px;
}


.solution-card h3 span {
    display: block;
}


.solution-card p {
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CARD ARROW
========================================================= */

.solution-card-arrow {
    position: absolute;

    right: 25px;
    bottom: 22px;

    color: rgba(255, 255, 255, 0.28);

    font-size: 22px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.solution-card:hover .solution-card-arrow {
    color: #FFFFFF;

    transform: translate(3px, -3px);
}


/* =========================================================
   CARD 01 — TRANSPARENT
========================================================= */

.solution-card-transparent {
    background:
        linear-gradient(
            145deg,
            rgba(103, 157, 131, 0.22),
            rgba(103, 157, 131, 0.07)
        );
}


.solution-card-transparent .solution-icon {
    background: #679D83;

    box-shadow:
        0 12px 25px rgba(103, 157, 131, 0.22);
}


.solution-card-transparent h3 span {
    color: #9FBDA0;
}


/* =========================================================
   CARD 02 — GROWTH
========================================================= */

.solution-card-growth {
    background:
        linear-gradient(
            145deg,
            rgba(248, 164, 32, 0.18),
            rgba(248, 164, 32, 0.05)
        );
}


.solution-card-growth .solution-icon {
    background: #F8A420;

    box-shadow:
        0 12px 25px rgba(248, 164, 32, 0.22);
}


.solution-card-growth h3 span {
    color: #F8A420;
}


/* =========================================================
   CARD 03 — QUALIFIED LEADS
========================================================= */

.solution-card-leads {
    background:
        linear-gradient(
            145deg,
            rgba(61, 126, 157, 0.20),
            rgba(61, 126, 157, 0.05)
        );
}


.solution-card-leads .solution-icon {
    background: #3D7E9D;

    box-shadow:
        0 12px 25px rgba(61, 126, 157, 0.22);
}


.solution-card-leads h3 span {
    color: #79B9D1;
}


/* =========================================================
   CARD 04 — BUDGET
========================================================= */

.solution-card-budget {
    background:
        linear-gradient(
            145deg,
            rgba(159, 189, 160, 0.19),
            rgba(159, 189, 160, 0.05)
        );
}


.solution-card-budget .solution-icon {
    background: #82966A;

    box-shadow:
        0 12px 25px rgba(130, 150, 106, 0.22);
}


.solution-card-budget h3 span {
    color: #B6D1A8;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.solution-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    margin-top: 58px;
}


.solution-bottom-line {
    width: 80px;

    height: 1px;

    background: rgba(255, 255, 255, 0.15);
}


.solution-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.6;

    text-align: center;
}


.solution-bottom strong {
    color: #FFFFFF;

    font-weight: 700;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .solution-container {
        width: min(100% - 120px, 1520px);
    }

    .solution-grid {
        gap: 22px;
    }

    .solution-card {
        min-height: 415px;

        padding: 32px 30px;
    }

    .solution-card h3 {
        font-size: 26px;
    }

    .solution-card p {
        font-size: 15px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .solution-section {
        padding: 100px 0;
    }

    .solution-container {
        width: min(100% - 50px, 1000px);
    }

    .solution-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .solution-card {
        min-height: 350px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .solution-section {
        padding: 80px 0 70px;
    }

    .solution-container {
        width: calc(100% - 30px);
    }

    .solution-intro {
        margin-bottom: 42px;
    }

    .solution-eyebrow {
        font-size: 9px;

        padding: 7px 12px;

        letter-spacing: 1.1px;
    }

    .solution-heading {
        font-size: clamp(34px, 9.5vw, 45px);

        letter-spacing: -1.2px;
    }

    .solution-intro-text {
        margin-top: 19px;

        font-size: 15px;

        line-height: 1.65;
    }

    .solution-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .solution-card {
        min-height: auto;

        padding: 25px 23px 28px;

        border-radius: 21px;
    }

    .solution-card-number {
        top: 23px;
        right: 23px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 29px;

        border-radius: 14px;

        font-size: 20px;
    }

    .solution-card h3 {
        font-size: 21px;
    }

    .solution-card p {
        margin-top: 15px;

        font-size: 13.5px;

        line-height: 1.65;

        max-width: 500px;
    }

    .solution-bottom {
        margin-top: 38px;

        gap: 12px;
    }

    .solution-bottom-line {
        display: none;
    }

    .solution-bottom p {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .solution-section {
        padding: 70px 0 60px;
    }

    .solution-container {
        width: calc(100% - 24px);
    }

    .solution-heading {
        font-size: 32px;
    }

    .solution-card {
        padding: 23px 20px 26px;
    }

    .solution-card h3 {
        font-size: 20px;
    }
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
    position: relative;

    padding: 45px 0 40px;

    background: #FFFFFF;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.process-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    top: -350px;
    left: -250px;

    border-radius: 50%;

    background: rgba(103, 157, 131, 0.08);

    pointer-events: none;
}


.process-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    bottom: -320px;

    border-radius: 50%;

    background: rgba(248, 164, 32, 0.07);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.process-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(400px, 0.85fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.process-content {
    position: relative;

    z-index: 3;
}


/* =========================================================
   EYEBROW
========================================================= */

.process-eyebrow {
    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 20px;

    border-radius: 100px;

    background: #EDF5F0;

    color: #4C8067;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.process-heading {
    margin: 0;

    color: var(--brand-navy);

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.process-heading span {
    display: block;

    color: var(--brand-orange);
}


/* =========================================================
   INTRO
========================================================= */

.process-intro {
    max-width: 700px;

    margin: 23px 0 55px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS FLOW
========================================================= */

.process-flow {
    position: relative;

    padding-left: 4px;
}


/* =========================================================
   VERTICAL CONNECTING LINE
========================================================= */

.process-flow::before {
    content: "";

    position: absolute;

    top: 27px;
    bottom: 27px;

    left: 27px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--brand-green),
            var(--brand-light-green) 60%,
            var(--brand-orange)
        );

    opacity: 0.45;
}


/* =========================================================
   PROCESS STEP
========================================================= */

.process-step {
    position: relative;

    display: grid;

    grid-template-columns: 56px minmax(0, 1fr);

    column-gap: 24px;

    padding-bottom: 27px;
}


/* =========================================================
   STEP MARKER
========================================================= */

.process-step-marker {
    position: relative;

    z-index: 2;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #C9DDD1;

    border-radius: 50%;

    background: #FFFFFF;

    color: var(--brand-navy);

    box-shadow:
        0 6px 18px rgba(6, 47, 71, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.process-step-marker span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.process-step:hover .process-step-marker {
    background: var(--brand-green);

    border-color: var(--brand-green);

    color: #FFFFFF;

    transform: scale(1.08);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.process-step-content {
    padding-top: 3px;

    padding-bottom: 4px;
}


.process-step-label {
    display: block;

    margin-bottom: 6px;

    color: var(--brand-green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.process-step h3 {
    margin: 0;

    color: var(--brand-navy);

    font-size: 20px;

    font-weight: 750;

    line-height: 1.3;

    letter-spacing: -0.3px;
}


.process-step h3 span {
    color: var(--brand-orange);

    white-space: nowrap;
}


.process-step p {
    max-width: 600px;

    margin: 8px 0 0;

    color: #70808A;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   FINAL STEP
========================================================= */

.process-step-final {
    padding-bottom: 0;
}


.process-step-final .process-step-marker {
    width: 62px;
    height: 62px;

    margin-left: -3px;

    background:
        linear-gradient(
            135deg,
            var(--brand-orange),
            #FFB83D
        );

    border-color: var(--brand-orange);

    color: var(--brand-dark-navy);

    box-shadow:
        0 10px 25px rgba(248, 164, 32, 0.25);
}


.process-step-final:hover .process-step-marker {
    background:
        linear-gradient(
            135deg,
            var(--brand-orange),
            #FFB83D
        );

    color: var(--brand-dark-navy);
}


.process-step-final h3 {
    font-size: 22px;
}


/* =========================================================
   PROCESS VISUAL
========================================================= */

.process-visual {
    position: sticky;

    top: 120px;

    min-height: 680px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   VISUAL GLOW
========================================================= */

.process-visual-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(103, 157, 131, 0.19) 0%,
            rgba(103, 157, 131, 0.07) 48%,
            transparent 72%
        );

    filter: blur(3px);
}


/* =========================================================
   AVATAR FRAME
========================================================= */

.process-avatar-frame {
    position: relative;

    z-index: 2;

    width: min(100%, 530px);

    aspect-ratio: 1 / 1;

    padding: 15px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--brand-navy),
            var(--brand-green) 55%,
            var(--brand-orange)
        );

    box-shadow:
        0 35px 80px rgba(6, 47, 71, 0.20);
}


/* =========================================================
   AVATAR INNER RING
========================================================= */

.process-avatar-ring {
    width: 100%;
    height: 100%;

    padding: 7px;

    border-radius: 50%;

    background: #FFFFFF;

    overflow: hidden;
}


/* =========================================================
   GIRL AVATAR
========================================================= */

.process-avatar {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.process-floating-card {
    position: absolute;

    z-index: 5;

    left: 0;

    bottom: 110px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border: 1px solid rgba(6, 47, 71, 0.08);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.94);

    box-shadow:
        0 18px 45px rgba(6, 47, 71, 0.15);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);
}


.process-floating-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 41px;
    height: 41px;

    border-radius: 12px;

    background: var(--brand-pale-green);

    color: var(--brand-green);

    font-size: 20px;

    font-weight: 800;
}


.process-floating-content {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.process-floating-content strong {
    color: var(--brand-navy);

    font-size: 10px;

    letter-spacing: 0.7px;
}


.process-floating-content span {
    color: #72808A;

    font-size: 10px;
}


/* =========================================================
   GROWTH BADGE
========================================================= */

.process-growth-badge {
    position: absolute;

    z-index: 5;

    right: 0;

    top: 105px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border-radius: 15px;

    background: var(--brand-navy);

    color: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(6, 47, 71, 0.20);

    transform: rotate(3deg);
}


.growth-badge-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-size: 20px;

    font-weight: 800;
}


.process-growth-badge div {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.process-growth-badge strong {
    font-size: 11px;

    letter-spacing: 1px;

    color: var(--brand-orange);
}


.process-growth-badge span:not(.growth-badge-arrow) {
    font-size: 9px;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .process-container {
        width: min(100% - 120px, 1520px);

        gap: 110px;
    }

    .process-avatar-frame {
        width: 580px;
    }

    .process-visual {
        min-height: 730px;
    }

    .process-step h3 {
        font-size: 22px;
    }

    .process-step p {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .process-section {
        padding: 100px 0;
    }

    .process-container {
        width: min(100% - 50px, 1000px);

        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.75fr);

        gap: 45px;
    }

    .process-heading {
        font-size: clamp(40px, 5vw, 57px);
    }

    .process-avatar-frame {
        width: 390px;
    }

    .process-visual {
        min-height: 570px;
    }

    .process-floating-card {
        left: -10px;

        bottom: 70px;
    }

    .process-growth-badge {
        right: -5px;

        top: 75px;
    }
}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 850px) {

    .process-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .process-content {
        max-width: 720px;

        margin: 0 auto;
    }

    .process-visual {
        position: relative;

        top: auto;

        min-height: 500px;

        max-width: 560px;

        width: 100%;

        margin: 0 auto;
    }

    .process-avatar-frame {
        width: 450px;
    }

    .process-floating-card {
        left: 0;

        bottom: 50px;
    }

    .process-growth-badge {
        right: 0;

        top: 55px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .process-section {
        padding: 80px 0 75px;
    }

    .process-container {
        width: calc(100% - 30px);

        gap: 50px;
    }

    .process-heading {
        font-size: clamp(35px, 9.5vw, 46px);

        letter-spacing: -1.2px;
    }

    .process-intro {
        margin: 19px 0 40px;

        font-size: 15px;

        line-height: 1.65;
    }

    .process-flow {
        padding-left: 0;
    }

    .process-flow::before {
        left: 22px;

        top: 22px;
        bottom: 22px;
    }

    .process-step {
        grid-template-columns: 46px minmax(0, 1fr);

        column-gap: 17px;

        padding-bottom: 23px;
    }

    .process-step-marker {
        width: 46px;
        height: 46px;
    }

    .process-step-marker span {
        font-size: 9px;
    }

    .process-step-content {
        padding-top: 1px;
    }

    .process-step-label {
        margin-bottom: 5px;

        font-size: 8px;

        letter-spacing: 1.1px;
    }

    .process-step h3 {
        font-size: 17px;

        line-height: 1.35;
    }

    .process-step p {
        margin-top: 6px;

        font-size: 12px;

        line-height: 1.6;
    }

    .process-step-final .process-step-marker {
        width: 50px;
        height: 50px;

        margin-left: -2px;
    }

    .process-step-final h3 {
        font-size: 18px;
    }

    .process-visual {
        min-height: 400px;
    }

    .process-avatar-frame {
        width: min(88vw, 410px);

        padding: 10px;
    }

    .process-avatar-ring {
        padding: 5px;
    }

    .process-floating-card {
        left: 0;

        bottom: 20px;

        padding: 10px 13px;

        gap: 8px;

        border-radius: 12px;
    }

    .process-floating-icon {
        width: 34px;
        height: 34px;

        border-radius: 9px;

        font-size: 16px;
    }

    .process-floating-content strong {
        font-size: 8px;
    }

    .process-floating-content span {
        font-size: 8px;
    }

    .process-growth-badge {
        right: 0;

        top: 20px;

        padding: 10px 12px;

        gap: 7px;

        border-radius: 12px;
    }

    .growth-badge-arrow {
        width: 29px;
        height: 29px;

        border-radius: 8px;

        font-size: 17px;
    }

    .process-growth-badge strong {
        font-size: 9px;
    }

    .process-growth-badge span:not(.growth-badge-arrow) {
        font-size: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .process-section {
        padding: 70px 0 65px;
    }

    .process-container {
        width: calc(100% - 24px);
    }

    .process-heading {
        font-size: 32px;
    }

    .process-step {
        grid-template-columns: 42px minmax(0, 1fr);

        column-gap: 14px;
    }

    .process-flow::before {
        left: 20px;
    }

    .process-step-marker {
        width: 42px;
        height: 42px;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 11.5px;
    }

    .process-visual {
        min-height: 350px;
    }

    .process-avatar-frame {
        width: 84vw;

        padding: 8px;
    }

    .process-floating-card {
        left: -2px;

        bottom: 12px;
    }

    .process-growth-badge {
        right: -2px;

        top: 10px;
    }
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    position: relative;

    padding: 45px 0 40px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(103, 157, 131, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(248, 164, 32, 0.08),
            transparent 28%
        ),
        #EDF5F0;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.services-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -330px;
    right: -220px;

    border-radius: 50%;

    border: 1px solid rgba(103, 157, 131, 0.15);

    pointer-events: none;
}


.services-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -240px;
    left: -160px;

    border-radius: 50%;

    border: 1px solid rgba(248, 164, 32, 0.12);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.services-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.services-intro {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.services-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    margin-bottom: 20px;

    border: 1px solid rgba(103, 157, 131, 0.20);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.65);

    color: #4C8067;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.services-heading {
    margin: 0;

    color: var(--brand-navy);

    font-size: clamp(42px, 5vw, 66px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.services-heading span {
    display: block;

    color: var(--brand-orange);
}


/* =========================================================
   INTRO TEXT
========================================================= */

.services-intro-text {
    max-width: 680px;

    margin: 22px auto 0;

    color: #60717A;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   BASE SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 355px;

    padding: 27px 25px 23px;

    display: flex;

    flex-direction: column;

    border-radius: 23px;

    border: 1px solid rgba(6, 47, 71, 0.08);

    background: #FFFFFF;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(6, 47, 71, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px rgba(6, 47, 71, 0.12);

    border-color: rgba(6, 47, 71, 0.13);
}


/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 38px;
}


.service-number {
    color: #A0ADB3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 15px;

    transition:
        transform 0.3s ease;
}


.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
}


.service-icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    flex: 1;
}


.service-card h3 {
    margin: 0;

    color: var(--brand-navy);

    font-size: 21px;

    font-weight: 750;

    line-height: 1.22;

    letter-spacing: -0.5px;
}


.service-card h3 span {
    display: block;
}


.service-card p {
    margin: 16px 0 0;

    color: #687983;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.service-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 23px;

    padding-top: 15px;

    border-top: 1px solid rgba(6, 47, 71, 0.08);

    color: #71818A;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.service-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 9px;

    font-size: 15px;

    transition:
        transform 0.25s ease;
}


.service-card:hover .service-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   SERVICE COLOR 01
   LEAD GENERATION
========================================================= */

.service-card-leads .service-icon {
    background: #FFF1D8;

    color: #D47F00;
}


.service-card-leads .service-arrow {
    background: #FFF1D8;

    color: #D47F00;
}


/* =========================================================
   SERVICE COLOR 02
   VIDEO
========================================================= */

.service-card-video .service-icon {
    background: #E8EEF7;

    color: #3B5F8A;
}


.service-card-video .service-arrow {
    background: #E8EEF7;

    color: #3B5F8A;
}


/* =========================================================
   SERVICE COLOR 03
   GRAPHICS
========================================================= */

.service-card-graphics .service-icon {
    background: #F2E9F6;

    color: #7C4D91;
}


.service-card-graphics .service-arrow {
    background: #F2E9F6;

    color: #7C4D91;
}


/* =========================================================
   SERVICE COLOR 04
   AD CONTENT
========================================================= */

.service-card-content .service-icon {
    background: #EAF4EE;

    color: #4F896D;
}


.service-card-content .service-arrow {
    background: #EAF4EE;

    color: #4F896D;
}


/* =========================================================
   SERVICE COLOR 05
   SEO
========================================================= */

.service-card-seo .service-icon {
    background: #E7F2F5;

    color: #35788B;
}


.service-card-seo .service-arrow {
    background: #E7F2F5;

    color: #35788B;
}


/* =========================================================
   SERVICE COLOR 06
   META ADS
========================================================= */

.service-card-meta .service-icon {
    background: #EDE9F8;

    color: #68539A;
}


.service-card-meta .service-arrow {
    background: #EDE9F8;

    color: #68539A;
}


/* =========================================================
   SERVICE COLOR 07
   GOOGLE ADS
========================================================= */

.service-card-google .service-icon {
    background: #FFF0E8;

    color: #C96332;
}


.service-card-google .service-arrow {
    background: #FFF0E8;

    color: #C96332;
}


/* =========================================================
   SERVICE COLOR 08
   GEO
========================================================= */

.service-card-geo .service-icon {
    background: #E9F2EC;

    color: #527B62;
}


.service-card-geo .service-arrow {
    background: #E9F2EC;

    color: #527B62;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.services-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 50px;

    text-align: center;
}


.services-bottom p {
    margin: 0;

    color: #60717A;

    font-size: 14px;
}


.services-cta {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 19px;

    border-radius: 100px;

    background: var(--brand-navy);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.services-cta:hover {
    background: var(--brand-green);

    transform: translateY(-2px);
}


.services-cta span {
    font-size: 16px;

    transition: transform 0.25s ease;
}


.services-cta:hover span {
    transform: translateX(3px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .services-container {
        width: min(100% - 120px, 1520px);
    }

    .services-grid {
        gap: 22px;
    }

    .service-card {
        min-height: 380px;

        padding: 30px 28px 25px;
    }

    .service-card h3 {
        font-size: 23px;
    }

    .service-card p {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .services-section {
        padding: 100px 0;
    }

    .services-container {
        width: min(100% - 50px, 1000px);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .service-card {
        min-height: 330px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-section {
        padding: 80px 0 70px;
    }

    .services-container {
        width: calc(100% - 30px);
    }

    .services-intro {
        margin-bottom: 40px;
    }

    .services-eyebrow {
        padding: 7px 12px;

        font-size: 9px;

        letter-spacing: 1.1px;
    }

    .services-heading {
        font-size: clamp(35px, 9.5vw, 46px);

        letter-spacing: -1.2px;
    }

    .services-intro-text {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .service-card {
        min-height: auto;

        padding: 24px 22px 21px;

        border-radius: 20px;
    }

    .service-card-top {
        margin-bottom: 28px;
    }

    .service-icon {
        width: 48px;
        height: 48px;

        border-radius: 14px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        margin-top: 13px;

        font-size: 13px;

        line-height: 1.65;
    }

    .service-card-footer {
        margin-top: 20px;

        padding-top: 13px;
    }

    .services-bottom {
        flex-direction: column;

        gap: 13px;

        margin-top: 35px;
    }

    .services-bottom p {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .services-section {
        padding: 70px 0 60px;
    }

    .services-container {
        width: calc(100% - 24px);
    }

    .services-heading {
        font-size: 32px;
    }

    .service-card {
        padding: 22px 19px 20px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 12px;
    }
}



/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    position: relative;

    padding: 45px 0 40px;

    background: #FFFFFF;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.faq-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    top: 50px;

    border-radius: 50%;

    background: rgba(103, 157, 131, 0.07);

    pointer-events: none;
}


.faq-section::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(248, 164, 32, 0.07);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.faq-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1440px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(330px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   FAQ INTRO
========================================================= */

.faq-intro {
    position: sticky;

    top: 120px;
}


/* =========================================================
   EYEBROW
========================================================= */

.faq-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    margin-bottom: 20px;

    border-radius: 100px;

    background: #EDF5F0;

    color: #4C8067;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.faq-heading {
    margin: 0;

    color: var(--brand-navy);

    font-size: clamp(40px, 4.7vw, 62px);

    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.faq-heading span {
    color: var(--brand-orange);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.faq-description {
    max-width: 480px;

    margin: 22px 0 0;

    color: #687983;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CTA BOX
========================================================= */

.faq-cta-box {
    margin-top: 38px;

    padding: 20px;

    border: 1px solid #D9E5DE;

    border-radius: 19px;

    background: #F4F8F5;

    display: grid;

    grid-template-columns: 43px 1fr;

    gap: 12px;
}


/* =========================================================
   CTA ICON
========================================================= */

.faq-cta-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    background: var(--brand-navy);

    color: #FFFFFF;

    font-size: 18px;

    font-weight: 700;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.faq-cta-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 3px;
}


.faq-cta-content strong {
    color: var(--brand-navy);

    font-size: 13px;
}


.faq-cta-content span {
    color: #72818A;

    font-size: 11px;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.faq-cta-button {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 7px;

    padding: 12px 16px;

    border-radius: 11px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.faq-cta-button:hover {
    background: #E8910E;

    color: #FFFFFF;

    transform: translateY(-2px);
}


.faq-cta-button span {
    font-size: 17px;

    transition: transform 0.25s ease;
}


.faq-cta-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    position: relative;

    border-bottom: 1px solid #DCE4E0;

    transition:
        border-color 0.3s ease;
}


.faq-item:first-child {
    border-top: 1px solid #DCE4E0;
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.faq-question {
    width: 100%;

    min-height: 82px;

    padding: 20px 4px;

    border: 0;

    background: transparent;

    display: grid;

    grid-template-columns: 42px minmax(0, 1fr) 45px;

    align-items: center;

    gap: 15px;

    text-align: left;

    font-family: "Apercu", sans-serif;

    cursor: pointer;
}


/* =========================================================
   QUESTION NUMBER
========================================================= */

.faq-question-number {
    color: #9EAAA5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-question-text {
    color: var(--brand-navy);

    font-size: 18px;

    font-weight: 700;

    line-height: 1.35;

    transition: color 0.25s ease;
}


.faq-question:hover .faq-question-text {
    color: var(--brand-green);
}


.faq-item.active .faq-question-text {
    color: var(--brand-green);
}


/* =========================================================
   TOGGLE
========================================================= */

.faq-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid #D7E2DC;

    border-radius: 50%;

    background: #F5F8F6;

    color: var(--brand-navy);

    font-size: 22px;

    font-weight: 400;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.faq-item.active .faq-toggle {
    background: var(--brand-navy);

    border-color: var(--brand-navy);

    color: #FFFFFF;

    transform: rotate(45deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-answer-inner {
    overflow: hidden;
}


.faq-answer p {
    max-width: 760px;

    margin: 0;

    padding:
        0 60px
        0 57px;

    color: #6A7A83;

    font-size: 14px;

    line-height: 1.75;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        padding 0.35s ease;
}


.faq-item.active .faq-answer p {
    padding-bottom: 25px;

    opacity: 1;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .faq-container {
        width: min(100% - 120px, 1520px);

        gap: 110px;
    }

    .faq-question {
        min-height: 90px;
    }

    .faq-question-text {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .faq-section {
        padding: 100px 0;
    }

    .faq-container {
        width: min(100% - 50px, 1000px);

        grid-template-columns:
            minmax(280px, 0.7fr)
            minmax(0, 1.3fr);

        gap: 45px;
    }

    .faq-heading {
        font-size: clamp(38px, 5vw, 54px);
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer p {
        padding-left: 55px;
        padding-right: 20px;
    }
}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 850px) {

    .faq-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .faq-intro {
        position: relative;

        top: auto;

        max-width: 700px;
    }

    .faq-description {
        max-width: 650px;
    }

    .faq-cta-box {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 80px 0 70px;
    }

    .faq-container {
        width: calc(100% - 30px);

        gap: 40px;
    }

    .faq-eyebrow {
        padding: 7px 12px;

        font-size: 9px;

        letter-spacing: 1.1px;
    }

    .faq-heading {
        font-size: clamp(35px, 9.5vw, 46px);

        letter-spacing: -1.2px;
    }

    .faq-description {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }

    .faq-cta-box {
        margin-top: 27px;

        padding: 16px;

        border-radius: 16px;
    }

    .faq-question {
        min-height: 72px;

        padding: 17px 0;

        grid-template-columns:
            29px minmax(0, 1fr)
            39px;

        gap: 9px;
    }

    .faq-question-number {
        font-size: 8px;
    }

    .faq-question-text {
        font-size: 15px;

        line-height: 1.4;
    }

    .faq-toggle {
        width: 34px;
        height: 34px;

        font-size: 19px;
    }

    .faq-answer p {
        padding:
            0 48px
            0 38px;

        font-size: 12.5px;

        line-height: 1.65;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 20px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .faq-section {
        padding: 70px 0 60px;
    }

    .faq-container {
        width: calc(100% - 24px);
    }

    .faq-heading {
        font-size: 32px;
    }

    .faq-question {
        grid-template-columns:
            25px minmax(0, 1fr)
            36px;

        gap: 7px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-answer p {
        padding-left: 32px;
        padding-right: 25px;

        font-size: 12px;
    }
}




/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    padding: 40px 0;

    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(103, 157, 131, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(248, 164, 32, 0.10),
            transparent 28%
        ),
        #031C2B;

    color: #FFFFFF;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.contact-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -420px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(159, 189, 160, 0.10);

    pointer-events: none;
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -280px;
    bottom: -300px;

    border-radius: 50%;

    border: 1px solid rgba(248, 164, 32, 0.10);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    position: relative;

    z-index: 2;

    width: min(100% - 80px, 1200px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 0.82fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-content {
    max-width: 620px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    margin-bottom: 21px;

    border: 1px solid rgba(159, 189, 160, 0.25);

    border-radius: 100px;

    background: rgba(103, 157, 131, 0.10);

    color: #B9D8C5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   HEADING
========================================================= */

.contact-heading {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 67px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.contact-heading span {
    display: block;

    color: var(--brand-orange);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-description {
    max-width: 560px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   CONTACT POINTS
========================================================= */

.contact-points {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 32px;
}


.contact-point {
    display: flex;

    align-items: center;

    gap: 11px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
}


.contact-point-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--brand-green);

    color: #FFFFFF;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    padding: 34px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header {
    margin-bottom: 26px;
}


.contact-form-label {
    color: var(--brand-orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-form-header h3 {
    margin: 8px 0 0;

    color: #FFFFFF;

    font-size: 25px;

    font-weight: 750;

    line-height: 1.2;
}


.contact-form-header p {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.form-group label {
    color: rgba(255, 255, 255, 0.76);

    font-size: 11px;

    font-weight: 700;
}


.form-group input {
    width: 100%;

    height: 52px;

    padding: 0 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    outline: none;

    background: rgba(255, 255, 255, 0.07);

    color: #FFFFFF;

    font-family: "Apercu", sans-serif;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}


.form-group input:hover {
    background: rgba(255, 255, 255, 0.09);
}


.form-group input:focus {
    border-color: var(--brand-green);

    background: rgba(255, 255, 255, 0.10);

    box-shadow:
        0 0 0 3px rgba(103, 157, 131, 0.12);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100%;

    min-height: 55px;

    margin-top: 5px;

    padding: 14px 20px;

    border: 0;

    border-radius: 100px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-left: 25px;
    padding-right: 20px;

    font-family: "Apercu", sans-serif;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(248, 164, 32, 0.20);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-submit:hover {
    background: #FFB23B;

    color: var(--brand-dark-navy);

    transform: translateY(-2px);

    box-shadow:
        0 17px 35px rgba(248, 164, 32, 0.30);
}


.contact-submit:active {
    transform: translateY(0);
}


.contact-submit:focus-visible {
    outline: 3px solid rgba(159, 189, 160, 0.50);

    outline-offset: 4px;
}


.contact-submit-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: rgba(3, 28, 43, 0.10);

    font-size: 18px;

    transition:
        transform 0.25s ease;
}


.contact-submit:hover .contact-submit-arrow {
    transform: translateX(4px);
}


/* =========================================================
   PRIVACY TEXT
========================================================= */

.form-privacy {
    margin: 1px 5px 0;

    color: rgba(255, 255, 255, 0.35);

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .contact-container {
        width: min(100% - 120px, 1320px);

        gap: 110px;
    }

    .contact-form-wrapper {
        padding: 38px;
    }

    .form-group input {
        height: 55px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .contact-section {
        padding: 100px 0;
    }

    .contact-container {
        width: min(100% - 50px, 1000px);

        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.8fr);

        gap: 50px;
    }

    .contact-heading {
        font-size: clamp(39px, 5vw, 56px);
    }

    .contact-form-wrapper {
        padding: 28px;
    }
}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 850px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 700px;
    }

    .contact-content {
        max-width: 650px;
    }

    .contact-form-wrapper {
        max-width: 600px;

        width: 100%;

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 80px 0 70px;
    }

    .contact-container {
        width: calc(100% - 30px);

        gap: 40px;
    }

    .contact-eyebrow {
        padding: 7px 12px;

        font-size: 9px;

        letter-spacing: 1.1px;
    }

    .contact-heading {
        font-size: clamp(35px, 9.5vw, 46px);

        letter-spacing: -1.2px;
    }

    .contact-description {
        margin-top: 18px;

        font-size: 15px;

        line-height: 1.65;
    }

    .contact-points {
        margin-top: 25px;

        gap: 11px;
    }

    .contact-point {
        font-size: 12px;
    }

    .contact-form-wrapper {
        padding: 23px 20px;

        border-radius: 21px;
    }

    .contact-form-header {
        margin-bottom: 22px;
    }

    .contact-form-header h3 {
        font-size: 22px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group input {
        height: 49px;

        padding: 0 14px;

        font-size: 13px;
    }

    .contact-submit {
        min-height: 52px;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-section {
        padding: 70px 0 60px;
    }

    .contact-container {
        width: calc(100% - 24px);
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 21px 17px;
    }

    .form-group input {
        height: 47px;
    }

    .contact-submit {
        min-height: 50px;

        padding-left: 21px;
    }
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    width: 100%;

    padding: 28px 0;

    background: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: min(100% - 80px, 1440px);

    min-height: 70px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    line-height: 0;

    text-decoration: none;

    flex-shrink: 0;
}


.footer-logo img {
    display: block;

    width: auto;

    height: 52px;

    max-width: 250px;

    object-fit: contain;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.footer-logo:hover img {
    transform: scale(1.015);

    opacity: 0.9;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 145px;

    min-height: 48px;

    padding: 12px 18px 12px 23px;

    border-radius: 100px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-family: "Apercu", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(248, 164, 32, 0.18);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-contact-btn:hover {
    background: #FFB23B;

    color: var(--brand-dark-navy);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(248, 164, 32, 0.28);
}


.footer-contact-btn:active {
    transform: translateY(0);
}


.footer-contact-btn:focus-visible {
    outline: 3px solid rgba(159, 189, 160, 0.45);

    outline-offset: 4px;
}


/* =========================================================
   CONTACT ARROW
========================================================= */

.footer-contact-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: rgba(3, 28, 43, 0.10);

    font-size: 16px;

    transition:
        transform 0.25s ease;
}


.footer-contact-btn:hover .footer-contact-arrow {
    transform: translateX(4px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .site-footer {
        padding: 32px 0;
    }

    .footer-container {
        width: min(100% - 120px, 1520px);

        min-height: 76px;
    }

    .footer-logo img {
        height: 57px;

        max-width: 280px;
    }

    .footer-contact-btn {
        min-width: 155px;

        min-height: 51px;

        font-size: 15px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .footer-container {
        width: min(100% - 50px, 1000px);
    }

    .footer-logo img {
        height: 48px;

        max-width: 230px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .site-footer {
        padding: 35px 0 38px;
    }

    .footer-container {
        width: calc(100% - 30px);

        min-height: auto;

        flex-direction: column;

        justify-content: center;

        gap: 22px;

        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        height: 47px;

        max-width: 210px;
    }

    .footer-contact-btn {
        min-width: 140px;

        min-height: 46px;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .site-footer {
        padding: 30px 0 34px;
    }

    .footer-container {
        width: calc(100% - 24px);

        gap: 19px;
    }

    .footer-logo img {
        height: 42px;

        max-width: 190px;
    }

    .footer-contact-btn {
        min-width: 132px;

        min-height: 44px;

        padding: 10px 16px 10px 20px;

        font-size: 12px;
    }

    .footer-contact-arrow {
        width: 27px;
        height: 27px;

        font-size: 14px;
    }
}



/* =========================================================
   THANK YOU PAGE
========================================================= */

.thankyou-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px 20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(103, 157, 131, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(248, 164, 32, 0.10),
            transparent 30%
        ),
        #031C2B;

    font-family: "Apercu", sans-serif;

    color: #FFFFFF;

    text-align: center;
}


.thankyou-content {
    width: 100%;

    max-width: 700px;

    margin: 0 auto;
}


/* =========================================================
   CHECK ICON
========================================================= */

.thankyou-check {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brand-green);

    color: #FFFFFF;

    font-size: 32px;

    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(103, 157, 131, 0.25);
}


/* =========================================================
   EYEBROW
========================================================= */

.thankyou-eyebrow {
    display: inline-block;

    margin-bottom: 17px;

    color: #B9D8C5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


/* =========================================================
   HEADING
========================================================= */

.thankyou-content h1 {
    margin: 0;

    color: #FFFFFF;

    font-size: clamp(42px, 7vw, 76px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -2.5px;
}


/* =========================================================
   MAIN MESSAGE
========================================================= */

.thankyou-main-text {
    margin: 24px 0 0;

    color: var(--brand-orange);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.thankyou-description {
    max-width: 620px;

    margin: 15px auto 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   BACK TEXT
========================================================= */

.thankyou-back-text {
    margin: 35px 0 17px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   HOME BUTTON
========================================================= */

.thankyou-home-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 170px;

    padding: 14px 20px;

    border-radius: 100px;

    background: var(--brand-orange);

    color: var(--brand-dark-navy);

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(248, 164, 32, 0.22);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.thankyou-home-button:hover {
    background: #FFB23B;

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(248, 164, 32, 0.30);
}


.thankyou-home-button span {
    font-size: 17px;

    transition:
        transform 0.25s ease;
}


.thankyou-home-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .thankyou-page {
        padding: 30px 20px;
    }

    .thankyou-check {
        width: 62px;
        height: 62px;

        margin-bottom: 21px;

        font-size: 27px;
    }

    .thankyou-eyebrow {
        font-size: 9px;

        letter-spacing: 1.3px;
    }

    .thankyou-content h1 {
        font-size: clamp(38px, 11vw, 52px);

        letter-spacing: -1.5px;
    }

    .thankyou-main-text {
        margin-top: 20px;

        font-size: 17px;
    }

    .thankyou-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .thankyou-back-text {
        margin-top: 28px;

        font-size: 11px;
    }

    .thankyou-home-button {
        min-width: 155px;

        padding: 13px 18px;

        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .thankyou-page {
        padding: 25px 17px;
    }

    .thankyou-content h1 {
        font-size: 36px;
    }

    .thankyou-main-text {
        font-size: 16px;
    }

    .thankyou-description {
        font-size: 13px;
    }
}