/* ============================================================
   SAPIENT ROAD WEALTH MANAGEMENT — styles.css
   ============================================================
   Edit the :root variables below to retheme the entire site.
   ============================================================ */

/* ---- CSS Custom Properties --------------------------------- */
:root {
    --navy:          #1a2744;
    --navy-dark:     #111c33;
    --navy-light:    #243158;
    --teal:          #4DB8B8;
    --teal-dark:     #39a3a3;
    --teal-light:    #6ECECE;
    --teal-glow:     rgba(77, 184, 184, 0.35);
    --gold:          #E8940A;
    --gold-dark:     #C97A08;
    --white:         #ffffff;
    --off-white:     #fafbfc;
    --gray-100:      #f4f5f7;
    --gray-200:      #e8eaee;
    --gray-300:      #cdd2da;
    --gray-500:      #7b8396;
    --gray-700:      #454e63;
    --text-dark:     #1a1f2e;
    --text-medium:   #52596e;
    --text-light:    #8a92a6;

    --shadow-xs:     0 1px 4px  rgba(0,0,0,.06);
    --shadow-sm:     0 2px 10px rgba(0,0,0,.08);
    --shadow-md:     0 6px 24px rgba(0,0,0,.11);
    --shadow-lg:     0 14px 48px rgba(0,0,0,.17);
    --shadow-card:   0 2px 14px rgba(0,0,0,.07);
    --shadow-hover:  0 14px 44px rgba(0,0,0,.15);

    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     14px;

    --ease-out:      cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:    all 0.3s var(--ease-out);

    --font-body:     'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---- Reset & Base ------------------------------------------ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.75;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a          { text-decoration: none; color: inherit; }
ul, ol     { list-style: none; }
img, svg   { display: block; max-width: 100%; height: auto; }
button     { font-family: inherit; cursor: pointer; }

/* ---- Layout ------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section        { padding: 96px 0; }
.section-white  { background: var(--white); }
.section-gray   { background: var(--gray-100); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: transform 0.25s var(--ease-spring),
                box-shadow 0.3s var(--ease-out),
                background 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-teal:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: scale(1.06) translateY(-1px);
    box-shadow: 0 8px 24px var(--teal-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.75);
}
.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    transform: scale(1.06) translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.25);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}


/* ============================================================
   SECTION TITLES & SUBTITLES
   ============================================================ */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 14px;
}
.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--teal);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 52px;
    line-height: 1.85;
}


/* ============================================================
   MOBILE NAV TOGGLE (pure CSS checkbox hack)
   ============================================================ */
.nav-toggle-input {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* Animate hamburger → X */
.nav-toggle-input:checked ~ header .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle-input:checked ~ header .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle-input:checked ~ header .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Show mobile nav when checkbox is checked */
.nav-toggle-input:checked ~ header .mobile-nav {
    max-height: 420px;
    opacity: 1;
    border-top: 1px solid var(--gray-200);
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}
.logo:hover { opacity: 0.85; }

.header-logo-img {
    height: 58px;
    width: auto;
    display: block;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Nav link with animated underline */
.nav-link {
    position: relative;
    display: block;
    padding: 6px 11px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s var(--ease-out);
}
.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-btn { margin-left: 10px; }

.search-btn {
    background: none;
    border: none;
    padding: 6px;
    color: var(--text-medium);
    transition: color 0.25s ease;
    margin-left: 4px;
    border-radius: var(--radius-sm);
}
.search-btn svg { width: 18px; height: 18px; }
.search-btn:hover { color: var(--teal); }

/* Mobile nav drawer */
.mobile-nav {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
    background: var(--white);
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 16px 28px 24px;
    gap: 4px;
}
.mobile-nav .nav-link {
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn {
    margin-top: 12px;
    display: inline-block;
    width: auto;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0c1424;
    background-image:
        /* subtle teal radial glow top-right */
        radial-gradient(ellipse 60% 60% at 78% 30%, rgba(77,184,184,.09) 0%, transparent 70%),
        /* main dark gradient */
        linear-gradient(155deg, rgba(10,14,26,.98) 0%, rgba(18,28,58,.9) 55%, rgba(8,12,22,.97) 100%);
}

/* Faint grid texture */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,   transparent, transparent 59px, rgba(255,255,255,.025) 59px, rgba(255,255,255,.025) 60px),
        repeating-linear-gradient(90deg,  transparent, transparent 59px, rgba(255,255,255,.025) 59px, rgba(255,255,255,.025) 60px);
    pointer-events: none;
}

/* Ambient glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hero-glow-1 {
    width: 500px; height: 500px;
    top: -120px; right: -60px;
    background: radial-gradient(circle, rgba(77,184,184,.12) 0%, transparent 70%);
}
.hero-glow-2 {
    width: 380px; height: 380px;
    bottom: -100px; left: -80px;
    background: radial-gradient(circle, rgba(26,39,68,.6) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    /* subtle text-shadow for depth */
    text-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,.78);
    margin-bottom: 40px;
    letter-spacing: 0.4px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Animated scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero-scroll-hint span {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0);   opacity: .7; }
    50%       { transform: translateY(10px); opacity: .2; }
}


/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
    background: var(--gray-100);
    padding: 76px 0;
    text-align: center;
}
.quote-section blockquote p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--text-dark);
    max-width: 820px;
    margin: 0 auto 20px;
    line-height: 1.65;
}
.quote-section blockquote cite {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--text-medium);
    display: block;
}


/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about-section {
    background: var(--white);
    padding: 64px 0;
}
.about-text {
    max-width: 920px;
    margin: 0 auto;
    font-size: 15.5px;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.95;
}


/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
    margin-top: 52px;
}

.who-photo { position: relative; }

.advisor-photo {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.advisor-photo:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.who-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.3;
}
.who-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}
.who-content p:last-of-type { margin-bottom: 28px; }


/* ============================================================
   SERVICES — WHAT WE DO
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 38px 28px 34px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease-spring),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(77,184,184,.35);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    color: var(--teal);
    transition: transform 0.3s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.12); }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 18.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.85;
}


/* ============================================================
   INITIAL STEPS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 38px 22px 34px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease-spring),
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
/* Teal accent top bar */
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.step-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}
.step-card:hover::before { transform: scaleX(1); }

.step-number {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.step-card:hover .step-number { opacity: 1; }

.step-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
}
.step-card p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.85;
}


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 12px 36px;
    transition: color 0.25s ease;
}
.trust-item:hover { color: var(--teal); }
.trust-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--teal);
    transition: transform 0.3s var(--ease-spring);
}
.trust-item:hover svg { transform: scale(1.18); }

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
    flex-shrink: 0;
}


/* ============================================================
   CONTACT REVEAL BUTTONS (phone & email bot protection)
   ============================================================ */
.reveal-input { display: none; }

.reveal-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 7px 16px;
    background: rgba(77, 184, 184, 0.10);
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(77, 184, 184, 0.35);
    cursor: pointer;
    transition: background 0.25s ease,
                color 0.25s ease,
                border-color 0.25s ease,
                transform 0.2s var(--ease-spring),
                box-shadow 0.25s ease;
}
.reveal-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    transform: scale(1.05);
    box-shadow: 0 4px 14px var(--teal-glow);
}

.reveal-info {
    display: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--teal-dark);
    margin-top: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.reveal-info:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Show info, hide button once checked */
.reveal-input:checked ~ .reveal-btn  { display: none; }
.reveal-input:checked ~ .reveal-info { display: block; }

/* LinkedIn */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-dark);
    margin-top: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.linkedin-link:hover {
    color: var(--navy);
    text-decoration: underline;
}

.contact-detail { flex: 1; min-width: 0; }

/* ============================================================
   DISCLOSURE
   ============================================================ */
.disclosure-container { max-width: 820px; }
.disclosure-content   { margin-top: 44px; }
.disclosure-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.95;
    margin-bottom: 22px;
    padding-left: 22px;
    border-left: 3px solid var(--teal);
    transition: border-color 0.3s ease;
}
.disclosure-content p:hover { border-color: var(--gold); }
.disclosure-content p:last-child { margin-bottom: 0; }


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 44px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(77,184,184,.3);
}
.faq-item[open] {
    border-color: rgba(77,184,184,.4);
    box-shadow: 0 4px 18px rgba(77,184,184,.12);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: color 0.25s ease, background 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-item[open] summary {
    color: var(--teal);
    background: rgba(77,184,184,.06);
    border-bottom: 1px solid var(--gray-200);
}

/* +/× icon */
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px 24px 24px;
}
.faq-answer p {
    font-size: 14.5px;
    color: var(--text-medium);
    line-height: 1.9;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.35s var(--ease-spring),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(77,184,184,.35);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(77,184,184,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 4px;
    transition: background 0.3s ease, transform 0.3s var(--ease-spring);
    flex-shrink: 0;
}
.contact-card:hover .contact-icon {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.08);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-card strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.contact-card p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.5;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap;
}

.footer-brand { max-width: 300px; }
.footer-logo-link { transition: opacity 0.25s ease; }
.footer-logo-link:hover { opacity: 0.8; }

.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    background: var(--white);
    padding: 7px 18px;
    border-radius: var(--radius-sm);
}

.footer-tagline {
    margin-top: 14px;
    font-size: 13.5px;
    font-style: italic;
    color: rgba(255,255,255,.45);
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 40px;
    text-align: right;
}
.footer-nav a {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.25s ease;
    display: inline-block;
}
.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s var(--ease-out);
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}
.footer-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,.28);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet (≤ 1024px) ------------------------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .who-grid {
        grid-template-columns: 5fr 8fr;
        gap: 44px;
    }
    .trust-item {
        padding: 12px 24px;
    }
    .footer-nav ul {
        grid-template-columns: auto;
        text-align: left;
        gap: 6px;
    }
}

/* ---- Mobile (≤ 768px) ------------------------------------- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section   { padding: 68px 0; }

    /* Header */
    .main-nav  { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { min-height: 460px; }
    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hero-btns .btn { width: 200px; text-align: center; }
    .hero-scroll-hint { display: none; }

    /* Who */
    .who-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .who-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Trust */
    .trust-inner {
        gap: 0;
        flex-direction: column;
    }
    .trust-divider {
        width: 80px;
        height: 1px;
        margin: 4px 0;
    }
    .trust-item { padding: 10px 20px; }

    /* Contact */
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 48px 0 36px;
    }
    .footer-brand { max-width: 100%; }
    .footer-tagline { padding-left: 0; }
    .footer-nav ul {
        text-align: center;
        justify-items: center;
    }
}

/* ---- Small mobile (≤ 480px) ------------------------------- */
@media (max-width: 480px) {
    .header-logo-img { height: 44px; }

    .hero-title { font-size: 36px; }
    .quote-section blockquote p { font-size: 17px; }
    .section-title { font-size: 26px; }
    .who-content h3 { font-size: 22px; }
}
