/*
Theme Name: Paula Fernanda - Australia
Theme URI: https://brainwellness.com.au
Author: Developer
Author URI: https://example.com
Description: Official Theme for Paula Fernanda (Brain Wellness)
Version: 1.0.0
Text Domain: paulafernanda
*/

/* ============================================================
   ELEMENTOR FULL-WIDTH ESCAPE
   Allows [brainwellness_home] shortcode to break out of
   Elementor's container and render properly at 100vw.
   ============================================================ */

/* Prevent any horizontal scroll globally */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Remove Elementor's default section padding on the Home page */
.elementor-section,
.elementor-widget-wrap,
.elementor-widget-shortcode,
.elementor-column,
.elementor-column-wrap {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/*
  Full-width wrapper technique.
  overflow-x: clip (stronger than hidden) cuts absolutely everything
  that overflows, including position:absolute children.
*/
.bw-home-shortcode {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
    box-sizing: border-box;
}

/* Apply border-box everywhere inside the shortcode */
.bw-home-shortcode *,
.bw-home-shortcode *::before,
.bw-home-shortcode *::after {
    box-sizing: border-box;
}

/* Ensure site-main used in front-page.php has no extra padding */
.site-main {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

        :root {
            --violet: #4A2B5E;
            --violet-deep: #3A2048;
            --lilac: #9A7FB2;
            --lilac-soft: #E6DDF0;
            --lilac-tint: #F3EEF8;
            --gold: #C6A664;
            --gold-soft: #D9BE82;
            --gold-deep: #A88845;
            --bg: #FAF9F6;
            --bg-warm: #F5F1EA;
            --ink: #2A2A2A;
            --ink-soft: #4A4A4A;
            --ink-muted: #6B6B6B;
            --line: #E5E5E5;
            --line-soft: #EFEBE4;
            --serif: 'Playfair Display', Georgia, serif;
            --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        * {
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            background: var(--bg);
            color: var(--ink);
            font-family: var(--sans);
            font-size: 17px;
            line-height: 1.65;
            scroll-behavior: smooth;
        }

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

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        @media (max-width: 720px) {
            .wrap {
                padding: 0 20px;
            }
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--serif);
            font-weight: 500;
            color: var(--violet);
            letter-spacing: -0.01em;
            margin: 0;
            line-height: 1.12;
        }

        p {
            margin: 0 0 1em;
            color: var(--ink-soft);
        }

        p:last-child {
            margin-bottom: 0;
        }

        em {
            font-family: var(--serif);
            font-style: italic;
            color: var(--violet);
        }

        strong {
            color: var(--ink);
            font-weight: 600;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--sans);
            font-size: 12px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 500;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 1px;
            background: var(--gold);
        }

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

        .eyebrow.on-dark {
            color: var(--gold);
        }

        /* ============ NAV ============ */
        .nav {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(250, 249, 246, 0.88);
            backdrop-filter: saturate(140%) blur(12px);
            -webkit-backdrop-filter: saturate(140%) blur(12px);
            border-bottom: 1px solid transparent;
            transition: border-color .3s ease, background .3s ease;
        }

        .nav.scrolled {
            border-bottom-color: var(--line);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            margin: 0 40px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--violet);
            font-family: var(--sans);
            font-size: 14.5px;
            font-weight: 500;
            transition: color .2s ease;
            white-space: nowrap;
        }

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

        @media (max-width: 1024px) {
            .nav-menu {
                display: none; /* Hide on mobile for now, we can add a hamburger later if needed */
            }
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .brand img {
            height: 48px;
            width: 48px;
            object-fit: contain;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1;
        }

        .brand-name {
            font-family: var(--serif);
            font-weight: 600;
            color: var(--violet);
            font-size: 18px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .brand-tag {
            display: block;
            font-family: var(--serif);
            font-size: 10px;
            letter-spacing: 0.24em;
            color: var(--gold-deep);
            text-transform: uppercase;
            margin-top: 3px;
            line-height: 1.1;
        }

        @media (max-width: 520px) {
            .nav-inner {
                height: 68px;
            }

            .brand img {
                height: 40px;
                width: 40px;
            }

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

            .brand-tag {
                font-size: 9px;
                letter-spacing: 0.22em;
            }
        }

        /* ============ BUTTONS ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 28px;
            background: var(--gold);
            color: var(--violet-deep);
            font-family: var(--sans);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.01em;
            text-decoration: none;
            border: 1px solid var(--gold-deep);
            border-radius: 8px;
            cursor: pointer;
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
            box-shadow: 0 1px 0 rgba(168, 136, 69, 0.3), 0 6px 18px -8px rgba(74, 43, 94, 0.2);
            white-space: nowrap;
        }

        .btn:hover {
            background: var(--gold-soft);
            transform: translateY(-1px);
            box-shadow: 0 2px 0 rgba(168, 136, 69, 0.35), 0 12px 28px -10px rgba(74, 43, 94, 0.3);
        }

        .btn .arrow {
            transition: transform .25s ease;
        }

        .btn:hover .arrow {
            transform: translateX(3px);
        }

        .btn-sm {
            padding: 11px 18px;
            font-size: 13.5px;
        }

        .btn-lg {
            padding: 18px 34px;
            font-size: 16px;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--violet);
            font-weight: 500;
            font-size: 14.5px;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
            transition: border-color .2s ease, color .2s ease;
        }

        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--violet-deep);
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            padding: 90px 0 100px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 20% 0%, rgba(154, 127, 178, 0.18), transparent 60%),
                radial-gradient(ellipse 50% 60% at 100% 30%, rgba(198, 166, 100, 0.10), transparent 60%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 72px;
            align-items: center;
        }

        .hero-eyebrow {
            margin-bottom: 28px;
        }

        .hero h1 {
            font-size: clamp(42px, 5.8vw, 76px);
            line-height: 1.14;
            font-weight: 500;
            color: var(--violet);
            margin: 0 0 40px;
            padding-bottom: 28px;
            letter-spacing: -0.02em;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--violet);
            position: relative;
            display: inline-block;
        }

        .hero h1 .keep {
            position: relative;
            display: inline-block;
        }

        .hero h1 .keep::after {
            content: "";
            position: absolute;
            left: -2%;
            right: -2%;
            bottom: 0.08em;
            height: 0.18em;
            background: linear-gradient(90deg, rgba(198, 166, 100, 0.0), rgba(198, 166, 100, 0.55) 15%, rgba(198, 166, 100, 0.55) 85%, rgba(198, 166, 100, 0));
            z-index: -1;
            border-radius: 2px;
        }

        .hero-body {
            font-size: 18.5px;
            line-height: 1.6;
            max-width: 560px;
            color: var(--ink-soft);
            margin-bottom: 36px;
        }

        .hero-body strong {
            color: var(--violet);
            font-weight: 600;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hero-cta-note {
            font-size: 13.5px;
            color: var(--ink-muted);
            font-style: italic;
            max-width: 280px;
        }

        .trust-bar {
            margin-top: 56px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            padding-top: 28px;
            border-top: 1px solid var(--line);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: var(--ink-soft);
            font-weight: 500;
            padding: 0 16px;
            border-right: 1px solid var(--line);
        }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-item:first-child {
            padding-left: 0;
        }

        .trust-check {
            flex: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--lilac-tint);
            color: var(--violet);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        /* Hero visual
           IMPORTANT: the image is a PNG with transparency at the bottom.
           The fix: let the image define the container height.
           We use position:relative on the container and the img as a normal
           block element (not absolute). Chips are still absolute over the image.
        */
        .hero-visual {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            /* NO background — the image will define the space */
            background: transparent;
            box-shadow: 0 40px 80px -40px rgba(74, 43, 94, 0.45), 0 2px 0 rgba(198, 166, 100, 0.25);
            line-height: 0; /* remove inline whitespace gap under the image */
        }

        .hero-visual-inner {
            /* Overlay is now absolute over the image */
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(
                180deg,
                rgba(255,255,255,0.06) 0%,
                transparent 50%,
                rgba(74, 43, 94, 0.12) 100%
            );
            pointer-events: none;
        }

        .hero-placeholder-label {
            position: absolute;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%);
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 10.5px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            background: rgba(74, 43, 94, 0.35);
            padding: 6px 12px;
            border-radius: 4px;
            backdrop-filter: blur(6px);
        }

        .hero-chip {
            position: absolute;
            background: rgba(250, 249, 246, 0.95);
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 13px;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 40px -20px rgba(74, 43, 94, 0.3);
        }

        .hero-chip-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.18);
        }

        .hero-chip.one {
            top: 28px;
            left: 12px;
        }

        .hero-chip.two {
            bottom: 90px;
            right: 12px;
        }

        .hero-chip strong {
            font-weight: 600;
            color: var(--violet);
        }

        .hero-chip small {
            display: block;
            font-size: 11px;
            color: var(--ink-muted);
            margin-top: 2px;
        }

        @media (max-width: 960px) {
            .hero {
                padding: 60px 0 80px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-visual {
                max-width: 440px;
                margin: 0 auto;
                aspect-ratio: 5 / 4;
            }

            .hero-chip.one {
                left: 10px;
            }

            .hero-chip.two {
                right: 10px;
                bottom: 16px;
            }

            .trust-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px 0;
            }

            .trust-item:nth-child(2) {
                border-right: none;
            }

            .trust-item:nth-child(3) {
                padding-left: 0;
            }
        }

        @media (max-width: 520px) {
            .hero {
                padding: 40px 0 60px;
            }

            .trust-bar {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: none;
                padding: 6px 0;
                border-bottom: 1px solid var(--line-soft);
            }

            .trust-item:last-child {
                border-bottom: none;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
            }

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

            .hero-cta-note {
                text-align: center;
                max-width: none;
            }
        }

        /* ============ SECTION BASE ============ */
        .section {
            padding: 110px 0;
            position: relative;
        }

        .section.tight {
            padding: 90px 0;
        }

        .section.lilac {
            background: var(--bg-warm);
        }

        .section.violet {
            background: var(--violet);
            color: #F3EEF8;
        }

        .section.violet h2,
        .section.violet h3,
        .section.violet h4 {
            color: #fff;
        }

        .section.violet p {
            color: rgba(255, 255, 255, 0.8);
        }

        .section.violet em {
            color: var(--gold-soft);
        }

        .section.violet strong {
            color: #fff;
        }

        .section-head {
            text-align: center;
            margin-bottom: 64px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-head h2 {
            font-size: clamp(34px, 4.4vw, 52px);
            margin: 18px 0 20px;
            font-weight: 500;
        }

        .section-head p {
            font-size: 17.5px;
            color: var(--ink-soft);
        }

        @media (max-width: 720px) {
            .section {
                padding: 72px 0;
            }

            .section-head {
                margin-bottom: 44px;
            }
        }

        /* ============ SECTION 2 - Does This Sound Familiar ============ */
        .validation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .vcard {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 32px 28px;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }

        .vcard:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 50px -30px rgba(74, 43, 94, 0.3);
            border-color: var(--lilac-soft);
        }

        .vcard-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--lilac-tint);
            color: var(--violet);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .vcard h3 {
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 500;
            color: var(--violet);
            margin-bottom: 10px;
        }

        .vcard p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--ink-soft);
            margin: 0;
        }

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

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

        .pivot-quote {
            max-width: 760px;
            margin: 64px auto 0;
            padding: 32px 40px;
            border-left: 3px solid var(--gold);
            background: transparent;
            text-align: left;
        }

        .pivot-quote p {
            font-family: var(--serif);
            font-style: italic;
            font-size: 22px;
            line-height: 1.45;
            color: var(--violet);
            margin: 0;
        }

        .transition-p {
            max-width: 720px;
            margin: 40px auto 0;
            text-align: center;
            font-size: 17px;
            line-height: 1.65;
        }

        .mini-cta {
            margin-top: 32px;
            text-align: center;
        }

        .mini-cta-sub {
            display: block;
            margin-top: 10px;
            font-size: 13px;
            color: var(--ink-muted);
        }

        /* ============ SECTION 3 - How Brain Training Works ============ */
        .hbt-lead {
            max-width: 780px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .hbt-lead p {
            font-size: 18px;
            line-height: 1.65;
            color: var(--ink-soft);
        }

        .hbt-lead p+p {
            margin-top: 20px;
        }

        .gym-quote {
            max-width: 820px;
            margin: 48px auto;
            padding: 36px 48px;
            background: #fff;
            border: 1px solid var(--line);
            border-left: 4px solid var(--gold);
            border-radius: 10px;
            text-align: left;
        }

        .gym-quote p {
            font-family: var(--serif);
            font-style: italic;
            font-size: 20px;
            line-height: 1.55;
            color: var(--violet);
            margin: 0;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 56px 0;
        }

        .pillar {
            background: var(--bg-warm);
            border-radius: 12px;
            padding: 32px 28px;
            border: 1px solid var(--line-soft);
        }

        .pillar-num {
            font-family: var(--serif);
            font-style: italic;
            font-size: 36px;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 14px;
            display: block;
        }

        .pillar h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .pillar p {
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            color: var(--ink-soft);
        }

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

        .notlist-head {
            text-align: center;
            font-family: var(--serif);
            font-style: italic;
            font-size: 17px;
            color: var(--ink-muted);
            margin: 48px 0 24px;
            letter-spacing: 0.02em;
        }

        .notlist {
            max-width: 820px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .notlist-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            padding: 20px 24px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 10px;
        }

        .notlist-badge {
            font-family: var(--serif);
            font-style: italic;
            font-size: 14px;
            color: var(--gold-deep);
            padding: 3px 10px;
            border: 1px solid var(--gold);
            border-radius: 20px;
            height: fit-content;
            white-space: nowrap;
        }

        .notlist-item p {
            margin: 0;
            font-size: 15.5px;
        }

        .notlist-item strong {
            color: var(--violet);
            font-weight: 600;
        }

        @media (max-width: 560px) {
            .notlist-item {
                grid-template-columns: 1fr;
            }
        }

        /* ============ SECTION 4 - Brain Wellness Reset timeline ============ */
        .reset-lead {
            max-width: 780px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .reset-lead p {
            font-size: 18px;
            line-height: 1.65;
        }

        .timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 44px;
            top: 0;
            bottom: 60px;
            width: 2px;
            background: linear-gradient(180deg, var(--gold) 0%, var(--lilac) 100%);
            opacity: 0.4;
        }

        .tstep {
            position: relative;
            padding-left: 112px;
            margin-bottom: 32px;
        }

        .tstep-num {
            position: absolute;
            left: 0;
            top: 0;
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--violet);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--serif);
            font-size: 34px;
            color: var(--violet);
            font-weight: 500;
            box-shadow: 0 10px 24px -12px rgba(74, 43, 94, 0.35);
            z-index: 2;
        }

        .tstep.session0 .tstep-num {
            background: var(--gold);
            border-color: var(--gold-deep);
            color: var(--violet-deep);
        }

        .tstep.session5 .tstep-num {
            background: var(--violet);
            border-color: var(--violet-deep);
            color: #fff;
        }

        .tstep-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 28px 32px;
            transition: box-shadow .3s ease, transform .3s ease;
        }

        .tstep-card:hover {
            box-shadow: 0 24px 50px -30px rgba(74, 43, 94, 0.3);
            transform: translateY(-2px);
        }

        .tstep-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            font-size: 12.5px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .tstep-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--gold);
        }

        .tstep-meta .free {
            background: var(--gold);
            color: var(--violet-deep);
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.05em;
        }

        .tstep h3 {
            font-size: 26px;
            margin-bottom: 12px;
        }

        .tstep p {
            font-size: 15.5px;
            margin: 0;
        }

        .tstep-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 8px 14px;
            background: var(--lilac-tint);
            color: var(--violet);
            font-size: 13px;
            font-weight: 500;
            border-radius: 6px;
        }

        .tstep-tag::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
        }

        .tconnect {
            position: relative;
            padding-left: 112px;
            margin: -14px 0 14px;
            font-family: var(--serif);
            font-style: italic;
            font-size: 14px;
            color: var(--ink-muted);
        }

        .tconnect::before {
            content: "↓";
            position: absolute;
            left: 34px;
            font-style: normal;
            color: var(--gold-deep);
            font-size: 16px;
        }

        @media (max-width: 700px) {
            .timeline::before {
                left: 28px;
            }

            .tstep {
                padding-left: 76px;
            }

            .tstep-num {
                width: 56px;
                height: 56px;
                font-size: 22px;
            }

            .tconnect {
                padding-left: 76px;
            }

            .tconnect::before {
                left: 22px;
            }

            .tstep-card {
                padding: 22px 22px;
            }

            .tstep h3 {
                font-size: 22px;
            }
        }

        .practical {
            margin-top: 80px;
            background: var(--bg-warm);
            border-radius: 14px;
            padding: 40px 44px;
            border: 1px solid var(--line-soft);
        }

        .practical-title {
            font-family: var(--serif);
            font-size: 20px;
            color: var(--violet);
            margin-bottom: 24px;
            text-align: center;
            letter-spacing: 0.02em;
        }

        .practical-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px 32px;
        }

        .practical-item {
            border-left: 2px solid var(--gold);
            padding: 4px 0 4px 18px;
        }

        .practical-item h4 {
            font-family: var(--sans);
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .practical-item p {
            font-size: 15px;
            color: var(--ink);
            margin: 0;
        }

        @media (max-width: 720px) {
            .practical {
                padding: 28px 24px;
            }

            .practical-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

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

        .paula-quote {
            margin: 64px auto 0;
            max-width: 780px;
            text-align: center;
            padding: 0 20px;
        }

        .paula-quote p {
            font-family: var(--serif);
            font-style: italic;
            font-size: 24px;
            line-height: 1.5;
            color: var(--violet);
            margin-bottom: 18px;
        }

        .paula-quote cite {
            display: block;
            font-style: normal;
            font-size: 13px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 600;
        }

        /* ============ SECTION 5 - About Paula ============ */
        .about {
            display: grid;
            grid-template-columns: 0.85fr 1.1fr;
            gap: 72px;
            align-items: start;
        }

        .about-col-left {
            position: sticky;
            top: 100px;
        }

        .about-photo {
            aspect-ratio: 4 / 5;
            border-radius: 12px;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.5), transparent 55%),
                linear-gradient(155deg, #E6DDF0 0%, #BFA5D1 45%, #9A7FB2 100%);
            box-shadow: 0 40px 80px -40px rgba(74, 43, 94, 0.45);
            position: relative;
        }

        .about-photo::after {
            content: "";
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            pointer-events: none;
        }

        .about-photo-label {
            position: absolute;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 10.5px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(74, 43, 94, 0.4);
            padding: 7px 14px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .about-gold-flake {
            position: absolute;
            background: var(--gold);
            opacity: 0.85;
        }

        .about h2 {
            font-size: clamp(34px, 3.6vw, 46px);
            margin: 18px 0 14px;
        }

        .about-role {
            font-size: 13.5px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 600;
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            align-items: center;
        }

        .about-role .sep {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--gold);
        }

        .about-body p {
            font-size: 16.5px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .about-body p:last-child {
            margin-bottom: 0;
        }

        .about-quote {
            margin: 32px 0;
            padding: 24px 28px;
            border-left: 3px solid var(--gold);
            background: var(--lilac-tint);
            border-radius: 0 10px 10px 0;
        }

        .about-quote p {
            font-family: var(--serif);
            font-style: italic;
            font-size: 20px;
            line-height: 1.5;
            color: var(--violet);
            margin: 0;
        }

        .credentials {
            margin: 40px 0 0 0;
            padding: 0;
        }

        .credentials-head {
            font-family: var(--sans);
            font-size: 12px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold-deep);
            font-weight: 600;
            margin-bottom: 18px;
        }

        .credentials ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .credentials li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 15.5px;
            color: var(--ink);
            line-height: 1.5;
        }

        .credentials li::before {
            flex-shrink: 0;
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            margin-top: 9px;
            background: var(--gold);
            transform: rotate(45deg);
        }

        .about-mini-cta {
            margin-top: 28px;
            padding: 24px 28px;
            background: var(--bg-warm);
            border: 1px solid var(--line-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .about-mini-cta p {
            margin: 0;
            font-size: 15.5px;
            color: var(--ink);
            flex: 1;
            min-width: 240px;
        }

        @media (max-width: 960px) {
            .about {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-col-left {
                position: static;
            }

            .about-photo {
                position: relative;
                max-width: 420px;
                aspect-ratio: 5/4;
                margin: 0 auto;
            }
        }

        /* ============ SECTION 6 - What Changes ============ */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 1px solid var(--line);
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
        }

        .rcard {
            padding: 36px 32px;
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            transition: background .25s ease;
        }

        .rcard:hover {
            background: var(--bg-warm);
        }

        .rcard:nth-child(3n) {
            border-right: none;
        }

        .rcard:nth-child(n+4) {
            border-bottom: none;
        }

        .rcard-num {
            font-family: var(--serif);
            font-style: italic;
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 12px;
            display: block;
        }

        .rcard h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .rcard p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--ink-soft);
            margin: 0;
        }

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

            .rcard {
                border-right: 1px solid var(--line) !important;
                border-bottom: 1px solid var(--line) !important;
            }

            .rcard:nth-child(2n) {
                border-right: none !important;
            }

            .rcard:nth-last-child(-n+2) {
                border-bottom: none !important;
            }
        }

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

            .rcard {
                border-right: none !important;
                border-bottom: 1px solid var(--line) !important;
            }

            .rcard:last-child {
                border-bottom: none !important;
            }
        }

        /* ============ SECTION 7 - Final CTA ============ */
        .final-cta {
            background:
                radial-gradient(ellipse 80% 50% at 80% 0%, rgba(198, 166, 100, 0.18), transparent 60%),
                radial-gradient(ellipse 60% 50% at 10% 100%, rgba(154, 127, 178, 0.25), transparent 60%),
                var(--violet);
            color: #F3EEF8;
            padding: 130px 0 140px;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.5;
        }

        .final-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .final-eyebrow {
            font-family: var(--serif);
            font-style: italic;
            font-size: 18px;
            color: var(--gold-soft);
            margin-bottom: 20px;
        }

        .final-cta h2 {
            font-size: clamp(40px, 5.5vw, 64px);
            color: #fff;
            margin-bottom: 28px;
            line-height: 1.1;
        }

        .final-cta p.lead {
            font-size: 18.5px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.82);
            max-width: 640px;
            margin: 0 auto 14px;
        }

        .final-cta p.italic {
            font-family: var(--serif);
            font-style: italic;
            font-size: 18px;
            color: var(--gold-soft);
            margin: 28px auto 36px;
        }

        .final-cta .btn {
            background: var(--gold);
            color: var(--violet-deep);
            box-shadow: 0 20px 50px -20px rgba(198, 166, 100, 0.5);
        }

        .final-location {
            margin-top: 22px;
            font-family: var(--serif);
            font-style: italic;
            font-size: 14.5px;
            color: rgba(255, 255, 255, 0.65);
        }

        .final-checks {
            margin-top: 48px;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 18px 32px;
            justify-content: center;
            align-items: center;
        }

        .final-check {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.82);
            white-space: nowrap;
        }

        .final-check-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(198, 166, 100, 0.2);
            color: var(--gold);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        @media (max-width: 720px) {
            .final-cta {
                padding: 80px 0 90px;
            }

            .final-checks {
                gap: 12px 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* ============ FOOTER ============ */
        .foot {
            padding: 36px 0 48px;
            background: var(--violet-deep);
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }

        .foot-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px;
        }

        .foot a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(198, 166, 100, 0.3);
        }

        .foot a:hover {
            color: var(--gold);
        }

        /* ============ UTIL ============ */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .9s ease, transform .9s ease;
        }

        .fade-up.in {
            opacity: 1;
            transform: none;
        }

        /* subtle decoration */
        .ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--gold);
            margin: 0 auto 28px;
        }

        .ornament::before,
        .ornament::after {
            content: "";
            display: block;
            width: 32px;
            height: 1px;
            background: var(--gold);
            opacity: 0.7;
        }

        .ornament svg {
            opacity: 0.9;
        }

        /* ===== PHOTO IMAGES ===== */
        .hero-visual > img {
            /*
              Changed from position:absolute to block flow.
              The image now defines the height of .hero-visual.
              This eliminates the background-color faixa at the bottom
              that appeared because the PNG has transparent pixels there.
            */
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            object-fit: initial; /* not needed with natural sizing */
            z-index: 0;
        }

        .hero-visual-inner {
            z-index: 1;
        }

        .hero-chip {
            z-index: 2;
        }

        .about-photo > img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
            display: block;
        }

        @media (max-width: 600px) {
            .hero-visual {
                max-width: 100%;
            }

            .about-photo {
                aspect-ratio: 4 / 3;
                max-width: 100%;
            }
        }

        /* ===== WHITE LINE FIX =====
           Eliminates the gap between the last section and the footer.
           Causes: Elementor padding-bottom on last widget,
           and default margin on <main> / <article>.
        */
        .bw-home-shortcode main {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }

        /* Remove bottom margin/padding from the last section in the shortcode */
        .bw-home-shortcode section:last-of-type,
        .bw-home-shortcode .final-cta {
            margin-bottom: 0 !important;
        }

        /* Kill Elementor's default bottom padding on last widget */
        .elementor-widget:last-child,
        .elementor-widget-wrap > .elementor-element:last-child {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }

        /* Prevent the page container from adding bottom space */
        .elementor-section:last-of-type {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }
    
/* ===== Rafa final manual fixes ===== */

/* HERO: keep image clean, avoid text overlap on floating cards */
.hero-visual {
    line-height: normal !important;
    max-width: 100%;
}

.hero-visual > img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-chip {
    z-index: 3;
    line-height: 1.35 !important;
    padding: 16px 18px !important;
    gap: 12px;
    max-width: calc(100% - 36px);
    min-width: 240px;
}

.hero-chip strong {
    display: block;
    line-height: 1.25;
    margin: 0;
}

.hero-chip small {
    display: block;
    line-height: 1.35;
    margin-top: 4px;
    white-space: normal;
}

.hero-chip.one {
    top: 22px !important;
    left: 18px !important;
}

.hero-chip.two {
    right: 18px !important;
    bottom: 22px !important;
}

@media (min-width: 961px) {
    .hero-visual {
        transform: scale(1.04);
        transform-origin: center center;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        transform: none !important;
    }

    .hero-chip {
        min-width: 0;
        max-width: calc(100% - 24px);
        padding: 12px 14px !important;
        font-size: 12px;
    }

    .hero-chip.one {
        top: 14px !important;
        left: 12px !important;
    }

    .hero-chip.two {
        right: 12px !important;
        bottom: 14px !important;
    }
}

/* CREDENTIALS: normalize into a readable list, without broken side text */
.credentials ul {
    gap: 16px !important;
}

.credentials li {
    display: block !important;
    position: relative;
    padding-left: 28px;
    line-height: 1.55 !important;
}

.credentials li::before {
    position: absolute;
    left: 0;
    top: 0.65em;
    margin-top: 0 !important;
}

.credentials li > * {
    display: inline !important;
    margin: 0 !important;
    white-space: normal !important;
}

.credentials li > * + * {
    margin-left: 0.25em !important;
}

.credentials li br {
    display: none !important;
}

@media (max-width: 640px) {
    .credentials li {
        font-size: 15px !important;
        padding-left: 24px;
    }
}

/* ===== AJUSTE SOMENTE HERO PHOTO FRAME - 2026-05-12 =====
   Objetivo: manter a mesma largura visual da foto da Paula,
   mas deixar a moldura mais alta para acompanhar melhor a dobra da hero.
*/
@media (min-width: 961px) {
    .hero-visual {
        position: relative !important;
        width: 100% !important;
        height: clamp(520px, 42vw, 640px) !important;
        aspect-ratio: auto !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        transform: none !important;
        line-height: normal !important;
    }

    .hero-visual > img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
        z-index: 0 !important;
    }

    .hero-visual-inner {
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .hero-chip {
        z-index: 3 !important;
        line-height: 1.35 !important;
    }

    .hero-chip.one {
        top: 28px !important;
        left: 24px !important;
    }

    .hero-chip.two {
        right: 24px !important;
        bottom: 30px !important;
    }
}

@media (max-width: 960px) {
    .hero-visual {
        height: auto !important;
        aspect-ratio: auto !important;
        transform: none !important;
    }

    .hero-visual > img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        object-fit: initial !important;
    }
}

/* ============================================================
   MOBILE ONLY FIX — Header hamburger + hero order + about order
   This block is intentionally scoped to max-width media queries
   to preserve the approved desktop layout.
   ============================================================ */

/* ---------- MOBILE HEADER / HAMBURGER ---------- */
@media (max-width: 1024px) {
    .nav {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
    }

    .nav-inner {
        position: relative !important;
        height: 72px !important;
        min-height: 72px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .brand {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 72px) !important;
    }

    .brand img {
        flex: 0 0 auto !important;
    }

    .brand-name,
    .brand-tag {
        white-space: nowrap !important;
    }

    /* Hide the desktop CTA in the mobile header so it never cuts off */
    .nav-inner > .btn,
    .nav-inner > .btn-sm,
    .nav-inner > a.btn {
        display: none !important;
    }

    /* Supports the class names Antigravity may have used */
    .hamburger,
    .mobile-menu-toggle,
    .nav-toggle {
        display: inline-flex !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border: 1px solid var(--line) !important;
        border-radius: 10px !important;
        background: rgba(250, 249, 246, 0.95) !important;
        color: var(--violet) !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        padding: 0 !important;
        margin-left: auto !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 10001 !important;
        box-shadow: 0 10px 25px -18px rgba(74, 43, 94, 0.45) !important;
    }

    .hamburger span,
    .mobile-menu-toggle span,
    .nav-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: var(--violet) !important;
        transition: transform .25s ease, opacity .25s ease !important;
    }

    .hamburger.is-open span:nth-child(1),
    .mobile-menu-toggle.is-open span:nth-child(1),
    .nav-toggle.is-open span:nth-child(1),
    .hamburger[aria-expanded="true"] span:nth-child(1),
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1),
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .hamburger.is-open span:nth-child(2),
    .mobile-menu-toggle.is-open span:nth-child(2),
    .nav-toggle.is-open span:nth-child(2),
    .hamburger[aria-expanded="true"] span:nth-child(2),
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2),
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.is-open span:nth-child(3),
    .mobile-menu-toggle.is-open span:nth-child(3),
    .nav-toggle.is-open span:nth-child(3),
    .hamburger[aria-expanded="true"] span:nth-child(3),
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3),
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Mobile menu hidden by default */
    .nav-menu {
        display: none !important;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        margin: 0 !important;
        padding: 18px !important;
        background: rgba(250, 249, 246, 0.98) !important;
        border: 1px solid var(--line) !important;
        border-radius: 14px !important;
        box-shadow: 0 24px 60px -32px rgba(74, 43, 94, 0.45) !important;
        backdrop-filter: saturate(140%) blur(14px) !important;
        -webkit-backdrop-filter: saturate(140%) blur(14px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        z-index: 10000 !important;
    }

    /* Supports different JS open patterns */
    .nav-menu.is-open,
    .nav-menu.open,
    .nav-menu.active,
    .nav-menu.menu-open,
    .nav.menu-open .nav-menu,
    .nav.is-open .nav-menu,
    body.mobile-menu-open .nav-menu {
        display: flex !important;
    }

    .nav-menu .nav-link,
    .nav-menu a:not(.btn) {
        display: block !important;
        width: 100% !important;
        padding: 13px 4px !important;
        border-bottom: 1px solid var(--line-soft) !important;
        color: var(--violet) !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }

    .nav-menu .nav-link:last-child,
    .nav-menu a:not(.btn):last-child {
        border-bottom: 0 !important;
    }

    /* CTA inside menu, if Antigravity inserted one there */
    .nav-menu .btn,
    .nav-menu .btn-sm,
    .mobile-menu-cta,
    .mobile-cta {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 14px !important;
        padding: 14px 18px !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

/* Very small phones: reduce logo text a little */
@media (max-width: 420px) {
    .brand {
        gap: 9px !important;
    }

    .brand-name {
        font-size: 14px !important;
        letter-spacing: 0.035em !important;
    }

    .brand-tag {
        font-size: 8.5px !important;
        letter-spacing: 0.18em !important;
    }
}

/* ---------- MOBILE HERO ORDER ---------- */
/* Desktop remains untouched. On mobile, we use display: contents
   so the photo can move before the trust-bar without changing HTML. */
@media (max-width: 960px) {
    .hero {
        padding-top: 52px !important;
        padding-bottom: 70px !important;
    }

    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 34px !important;
        align-items: stretch !important;
    }

    .hero-inner > div:first-child {
        display: contents !important;
    }

    .hero-eyebrow {
        order: 1 !important;
        margin-bottom: 0 !important;
    }

    .hero h1 {
        order: 2 !important;
        margin-bottom: 0 !important;
        padding-bottom: 10px !important;
    }

    .hero-body {
        order: 3 !important;
        margin-bottom: 0 !important;
        max-width: none !important;
    }

    .hero-cta {
        order: 4 !important;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
    }

    .hero-cta-note {
        order: 5 !important;
        max-width: none !important;
        text-align: center !important;
        margin-top: -8px !important;
    }

    .hero-visual {
        order: 6 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 8px auto 0 !important;
        height: auto !important;
        aspect-ratio: auto !important;
        transform: none !important;
        line-height: normal !important;
        border-radius: 12px !important;
    }

    .hero-visual > img {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        object-fit: initial !important;
        object-position: center center !important;
        display: block !important;
    }

    .hero-visual-inner {
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none !important;
    }

    /* Hide floating cards only on mobile */
    .hero-chip {
        display: none !important;
    }

    .trust-bar {
        order: 7 !important;
        margin-top: 0 !important;
        padding-top: 28px !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .trust-item {
        padding: 16px 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line-soft) !important;
        font-size: 16px !important;
    }

    .trust-item:last-child {
        border-bottom: 0 !important;
    }

    .trust-item:nth-child(3) {
        padding-left: 0 !important;
    }
}

/* ---------- MOBILE ABOUT ORDER + READABILITY ---------- */
@media (max-width: 960px) {
    .about {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .about-col-right {
        order: 1 !important;
    }

    .about-col-left {
        order: 2 !important;
        position: static !important;
        top: auto !important;
    }

    .about-photo {
        max-width: 100% !important;
        margin: 0 auto 34px !important;
        aspect-ratio: 4 / 3 !important;
    }

    .credentials {
        margin-top: 28px !important;
    }
}

@media (max-width: 640px) {
    .about h2 {
        font-size: clamp(38px, 10vw, 54px) !important;
    }

    .about-role {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        line-height: 1.55 !important;
        letter-spacing: 0.14em !important;
    }

    .about-role .sep {
        display: none !important;
    }

    .about-body p {
        font-size: 17px !important;
        line-height: 1.75 !important;
    }

    .credentials li {
        font-size: 16px !important;
        line-height: 1.55 !important;
        padding-left: 26px !important;
    }

    .credentials li::before {
        top: 0.65em !important;
    }
}

/* ============================================================
   DESKTOP FIX — hide duplicated mobile CTA / hamburger on desktop
   Keeps only the original desktop CTA visible.
   ============================================================ */
@media (min-width: 1025px) {
    .hamburger,
    .mobile-menu-toggle,
    .nav-toggle,
    .mobile-menu-cta,
    .mobile-cta,
    .nav-menu .btn,
    .nav-menu .btn-sm,
    .nav-menu a.btn,
    .nav-menu a.btn-sm {
        display: none !important;
    }
}

