:root {
            --primary: #C17A2A;
            --primary-hover: #D4A843;
            --primary-dark: #915a1e;
            --bg-dark: #111111;
            --bg-darker: #0A0A0A;
            --bg-light: #F5F2EE;
            --text-light: #FFFFFF;
            --text-gray: #a8a8a8;
            --text-dark: #111111;
            --border-light: rgba(255, 255, 255, 0.1);
            --border-gold: rgba(193, 122, 42, 0.3);
            --fs-h1: clamp(3rem, 4.9vw, 4rem);
            --fs-h2: clamp(2.15rem, 3.6vw, 2.625rem);
            --fs-h3: clamp(1.25rem, 1.9vw, 1.5rem);
            --urgent-height: 42px;
            --stack-overlap: 22px;

            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;

            --nav-height: 90px;
        }

        /* --- CSS RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: var(--fs-h1);
        }

        h2 {
            font-size: var(--fs-h2);
        }

        h3 {
            font-size: var(--fs-h3);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

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

        ul {
            list-style: none;
        }

        /* --- TYPOGRAPHY & UTILITIES --- */
        .text-primary {
            color: var(--primary);
        }

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

        .section-padding {
            padding: 100px 5%;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 15px 34px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.25px;
            text-transform: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border-radius: 0;
        }

        .btn-primary {
            background-color: #121212;
            color: #ffffff;
            border: 1px solid #121212;
        }

        .btn-primary:hover {
            background-color: #272727;
            border-color: #272727;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
        }

        .btn-outline {
            border: 1px solid currentColor;
            background: transparent;
            color: #1f1f1f;
            padding: 14px 30px;
        }

        .btn-outline:hover {
            background: rgba(0, 0, 0, 0.04);
            color: #000000;
        }

        .btn-dark {
            background-color: #121212;
            color: #ffffff;
            border: 1px solid #121212;
        }

        .btn-dark:hover {
            background-color: #272727;
            border-color: #272727;
            color: #ffffff;
        }

        .urgent-banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--urgent-height);
            z-index: 1200;
            background: #0f0f0f;
            border-bottom: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
        }

        .urgent-banner a {
            color: #f0f0f0;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
        }

        .urgent-banner a strong {
            color: var(--primary-hover);
            font-weight: 700;
        }

        .urgent-copy-mobile {
            display: none;
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: var(--urgent-height);
            left: 0;
            width: 100%;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 1000;
            transition: all 0.4s ease;
            background: rgba(233, 232, 229, 0.96);
            border-bottom: 1px solid #d4d2cd;
        }

        .navbar.nav-scrolled {
            background: rgba(14, 14, 14, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            height: 80px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-brand a {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #151515;
            line-height: 1;
        }

        .nav-crest {
            width: 52px;
            height: 52px;
            border: 1.5px solid #1f1f1f;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0;
            position: relative;
            line-height: 1;
            color: #1f1f1f;
            flex-shrink: 0;
        }

        .nav-crest::after {
            content: "";
            position: absolute;
            inset: 5px;
            border: 1.5px solid currentColor;
            border-radius: 50%;
            opacity: 0.96;
            pointer-events: none;
        }

        .nav-crest-inner {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            position: relative;
            z-index: 1;
        }

        .nav-crest-divider {
            width: 1px;
            height: 18px;
            background: currentColor;
            opacity: 0.38;
        }

        .nav-crest-letter {
            font-size: 0.88rem;
            font-weight: 600;
            line-height: 1;
        }

        .nav-brand-wordmark {
            display: flex;
            flex-direction: column;
            gap: 1px;
            line-height: 1;
        }

        .nav-brand-wordmark strong {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1.25px;
            text-transform: uppercase;
            color: #141414;
        }

        .nav-brand-wordmark span {
            color: #4b4b4b;
            font-weight: 500;
            font-size: 0.66rem;
            letter-spacing: 1.3px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links li a {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            position: relative;
            color: #151515;
        }

        .nav-links li a:hover {
            color: var(--primary-hover);
        }

        .navbar.nav-scrolled .nav-links li a,
        .navbar.nav-scrolled .mobile-toggle {
            color: var(--text-light);
        }

        .navbar.nav-scrolled .nav-links li a:hover {
            color: var(--primary-hover);
        }

        .navbar.nav-scrolled .nav-crest {
            border-color: rgba(255, 255, 255, 0.45);
            color: var(--text-light);
        }

        .navbar.nav-scrolled .nav-brand-wordmark strong {
            color: var(--text-light);
        }

        .navbar.nav-scrolled .nav-brand-wordmark span {
            color: var(--text-light);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .nav-links li.nav-mobile-cta {
            display: none;
        }

        .nav-links li.nav-mobile-phone {
            display: none;
        }

        .nav-cta {
            display: none;
            align-items: center;
            gap: 18px;
        }

        .nav-phone {
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            color: #1f1f1f;
            border-bottom: 1px solid rgba(31, 31, 31, 0.28);
            padding-bottom: 1px;
        }

        .nav-phone:hover {
            color: var(--primary-hover);
            border-bottom-color: var(--primary-hover);
        }

        .navbar.nav-scrolled .nav-phone {
            color: var(--text-light);
            border-bottom-color: rgba(255, 255, 255, 0.4);
        }

        .navbar.nav-scrolled .nav-phone:hover {
            color: var(--primary-hover);
            border-bottom-color: var(--primary-hover);
        }

        .navbar .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
        }

        .navbar .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            box-shadow: 0 10px 20px rgba(193, 122, 42, 0.2);
        }

        .mobile-toggle {
            display: none;
            color: #151515;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            background-color: var(--bg-light);
            color: #111111;
            padding: calc(var(--nav-height) + var(--urgent-height) + 24px) 3% 32px;
            border-bottom: 1px solid #d4d2cd;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(19, 19, 19, 0.07) 0%, rgba(19, 19, 19, 0.02) 38%, transparent 56%),
                repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.026) 0, rgba(18, 18, 18, 0.026) 1px, transparent 1px, transparent 28px);
            pointer-events: none;
            z-index: 0;
        }

        .hero-shell {
            width: min(1500px, 100%);
            margin: 0 auto;
            min-height: calc(100vh - var(--nav-height) - 56px);
            display: grid;
            grid-template-columns: 1.03fr 0.97fr;
            gap: 24px;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 42px 30px 44px 24px;
            border-right: 1px solid #d4d2cd;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-family: var(--font-body);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #3f3b34;
            margin-bottom: 18px;
        }

        .hero-label::before {
            content: "";
            width: 26px;
            height: 2px;
            background: var(--primary);
            border-radius: 10px;
        }

        .hero-label::after {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.82;
        }

        .hero h1 {
            font-family: var(--font-body);
            font-size: var(--fs-h1);
            font-weight: 500;
            line-height: 0.98;
            margin-bottom: 30px;
            letter-spacing: -1.4px;
            color: #111111;
            max-width: 780px;
        }

        .hero p {
            font-size: clamp(1.15rem, 1.6vw, 2rem);
            color: #4f4e49;
            margin-bottom: 20px;
            max-width: 680px;
            line-height: 1.45;
        }

        .hero-trust {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #3f3d39;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.35px;
            margin-bottom: 28px;
        }

        .hero-trust::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 4px rgba(193, 122, 42, 0.18);
        }

        .hero-btns {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .hero-btns a {
            opacity: 1;
            visibility: visible;
        }

        .hero .btn-primary {
            background: linear-gradient(160deg, #d6a34d 0%, #c17a2a 62%, #9f651f 100%);
            border: 1px solid #b3742a;
            color: #111111;
            font-weight: 600;
            letter-spacing: 0.2px;
            box-shadow: 0 14px 28px rgba(118, 78, 23, 0.28);
        }

        .hero .btn-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient(160deg, #ddb160 0%, #cb8738 62%, #a96e23 100%);
            border-color: #cb8738;
            box-shadow: 0 16px 30px rgba(118, 78, 23, 0.34);
        }

        .hero .btn-outline {
            border: 1px solid rgba(24, 24, 24, 0.5);
            color: #232323;
            background: transparent;
            padding: 14px 30px;
            font-size: 0.98rem;
            font-weight: 700;
            letter-spacing: 0.25px;
            text-decoration: none;
        }

        .hero .btn-outline:hover {
            color: #111111;
            background: rgba(255, 255, 255, 0.42);
            border-color: rgba(24, 24, 24, 0.72);
            text-decoration: none;
        }

        .hero-media {
            border: 1px solid #c8c6c0;
            border-radius: 0;
            overflow: hidden;
            min-height: 100%;
            background: url('Hero image.webp') center/cover no-repeat;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
        }

        /* --- TRUST BAR --- */
        .trust-bar {
            background-color: var(--bg-darker);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 24px 5%;
            position: relative;
            z-index: 10;
        }

        .trust-bar::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-darker);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 16px 24px rgba(0, 0, 0, 0.32);
            pointer-events: none;
        }

        .trust-grid {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-gray);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .trust-item svg {
            width: 24px;
            height: 24px;
            color: #d1d1d1;
        }

        /* --- PRACTICE AREAS --- */
        .practice-areas {
            background-color: var(--bg-dark);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            color: var(--text-light);
            position: relative;
        }

        .practice-areas::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 24px rgba(0, 0, 0, 0.3);
            pointer-events: none;
        }

        .practice-header {
            max-width: 860px;
            margin: 0 auto 46px;
            text-align: center;
        }

        .practice-kicker {
            display: inline-block;
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-gray);
            margin-bottom: 14px;
        }

        .practice-header h2 {
            font-size: var(--fs-h2);
            color: var(--text-light);
            margin-bottom: 14px;
            letter-spacing: -0.6px;
        }

        .practice-heading-short {
            display: none;
        }

        .practice-header p {
            color: var(--text-gray);
            font-size: 1.05rem;
            max-width: 62ch;
            margin: 0 auto;
        }

        .practice-feature {
            display: grid;
            grid-template-columns: 1.25fr auto;
            gap: 26px;
            align-items: center;
            border-top: 2px solid rgba(255, 255, 255, 0.65);
            border-bottom: 1px solid var(--border-light);
            padding: 28px 0;
            margin-bottom: 30px;
        }

        .practice-feature h3 {
            color: var(--text-light);
            font-size: var(--fs-h3);
            margin-bottom: 10px;
        }

        .practice-feature p {
            color: var(--text-gray);
            font-size: 1rem;
            max-width: 60ch;
        }

        .practice-feature .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
        }

        .practice-feature .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .practice-ledger {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            column-gap: 40px;
            row-gap: 0;
        }

        .practice-item {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 14px;
            border-top: 1px solid var(--border-light);
            padding: 22px 0 26px;
            transition: border-color 0.25s ease;
        }

        .practice-item:nth-last-child(-n+2) {
            border-bottom: 1px solid var(--border-light);
        }

        .practice-item:hover {
            border-top-color: var(--border-gold);
        }

        .practice-index {
            font-family: var(--font-heading);
            font-size: 2rem;
            line-height: 1;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: -1px;
            padding-top: 2px;
        }

        .practice-item h3 {
            font-size: var(--fs-h3);
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .practice-item p {
            color: var(--text-gray);
            font-size: 0.98rem;
            margin-bottom: 14px;
            max-width: 38ch;
        }

        .practice-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d8d8d8;
            font-weight: 500;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .practice-link:hover {
            color: var(--primary-hover);
        }

        .section-header {
            margin-bottom: 60px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: var(--fs-h2);
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
        }

        /* --- WHY MCAFEE (ABOUT) --- */
        .about {
            background-color: var(--bg-light);
            color: var(--text-dark);
            position: relative;
        }

        .about::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-light);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
            pointer-events: none;
        }

        .about::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(19, 19, 19, 0.04) 0%, rgba(19, 19, 19, 0.012) 38%, transparent 56%),
                repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.02) 0, rgba(18, 18, 18, 0.02) 1px, transparent 1px, transparent 28px);
            pointer-events: none;
            z-index: 0;
        }

        .about .container {
            position: relative;
            z-index: 1;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 0;
            box-shadow: -20px 20px 0 var(--bg-dark);
            object-fit: cover;
            aspect-ratio: 4/5;
        }

        .about-content h2 {
            font-size: var(--fs-h2);
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .about-content p {
            color: #4a4a4a;
            margin-bottom: 24px;
            font-size: 1.12rem;
            line-height: 1.75;
        }

        .stat-highlight {
            border-left: 4px solid var(--primary);
            padding-left: 20px;
            margin: 30px 0;
        }

        .stat-highlight h4 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

        .stat-highlight p {
            margin-bottom: 0;
            font-size: 1rem;
            font-style: italic;
        }

        /* --- RESULTS --- */
        .results {
            background-color: var(--bg-dark);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }

        .results::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 24px rgba(0, 0, 0, 0.3);
            pointer-events: none;
        }

        .results .container {
            background: #161616;
            border: 1px solid var(--border-light);
            border-radius: 0;
            padding: 58px 48px;
            box-shadow: 0 24px 40px rgba(0, 0, 0, 0.36);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .result-item h3 {
            font-family: var(--font-heading);
            font-size: clamp(3.2rem, 7vw, 5.4rem);
            line-height: 0.92;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            letter-spacing: -1.2px;
            text-wrap: balance;
        }

        .result-item p {
            font-size: clamp(1.08rem, 1.5vw, 1.32rem);
            color: var(--text-light);
            letter-spacing: 1.5px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .disclaimer-small {
            text-align: center;
            font-size: 0.97rem;
            color: #d4d4d4;
            margin: 44px auto 0;
            font-style: normal;
            line-height: 1.6;
            max-width: 72ch;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* --- PROCESS --- */
        .process {
            background-color: var(--bg-light);
            color: var(--text-dark);
            position: relative;
            border-top: 1px solid #ddd8d1;
            border-bottom: 1px solid #ddd8d1;
        }

        .process::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-light);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
            pointer-events: none;
        }

        .process::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(19, 19, 19, 0.04) 0%, rgba(19, 19, 19, 0.012) 38%, transparent 56%),
                repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.02) 0, rgba(18, 18, 18, 0.02) 1px, transparent 1px, transparent 28px);
            pointer-events: none;
            z-index: 0;
        }

        .process .container {
            position: relative;
            z-index: 1;
        }

        .process .section-header h2 {
            color: #131313;
        }

        .process .section-header p {
            color: #55514c;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(220px, 1fr));
            gap: 22px;
            align-items: stretch;
        }

        .process-step {
            border: 1px solid rgba(17, 17, 17, 0.18);
            background: rgba(255, 255, 255, 0.52);
            padding: 26px 24px 24px;
            min-height: 210px;
            position: relative;
        }

        .process-step-number {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 2.15rem;
            line-height: 1;
            color: var(--primary-dark);
            margin-bottom: 14px;
        }

        .process-step h3 {
            font-family: var(--font-body);
            font-size: 1.32rem;
            line-height: 1.15;
            letter-spacing: 0.2px;
            color: #131313;
            margin-bottom: 10px;
        }

        .process-step p {
            color: #4a4742;
            font-size: 1.02rem;
            line-height: 1.62;
            max-width: 34ch;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--bg-dark);
            position: relative;
        }

        .testimonials::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 24px rgba(0, 0, 0, 0.3);
            pointer-events: none;
        }

        .testimony-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .testimony-card {
            background-color: var(--bg-dark);
            padding: 40px;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .testimony-card:nth-child(even) {
            background-color: #1a1a1a;
        }

        .quote-icon {
            font-size: 4rem;
            font-family: var(--font-heading);
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            left: 30px;
            line-height: 1;
        }

        .stars {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .testimony-card p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            color: #d0d0d0;
        }

        .testimony-card h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .reviews-link-wrap {
            margin-top: -18px;
            margin-bottom: 30px;
            text-align: center;
        }

        .reviews-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #e0e0e0;
            font-size: 0.9rem;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.04);
        }

        .reviews-link:hover {
            color: var(--primary-hover);
            border-color: var(--border-gold);
            background: rgba(193, 122, 42, 0.1);
        }

        /* --- CONSULTATION CTA --- */
        .cta-section {
            background-color: var(--bg-dark);
            border-top: 1px solid var(--border-light);
            padding: 100px 5%;
            position: relative;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 24px rgba(0, 0, 0, 0.3);
            pointer-events: none;
        }

        .cta-container {
            max-width: 1240px;
            margin: 0 auto;
            background-color: var(--bg-darker);
            border: 1px solid var(--border-gold);
            padding: 56px 54px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            position: relative;
            align-items: stretch;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
            z-index: -1;
            opacity: 0.3;
        }

        .cta-content h2 {
            font-size: var(--fs-h2);
            margin-bottom: 20px;
        }

        .cta-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 18px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-item svg {
            color: var(--primary);
            width: 20px;
            height: 20px;
        }

        .cta-call-btn {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 9px;
            margin-top: 8px;
            width: fit-content;
            padding: 12px 18px;
            border-radius: 0;
            border: 1px solid rgba(193, 122, 42, 0.65);
            background: rgba(193, 122, 42, 0.14);
            color: #f4d8a8;
            font-weight: 600;
            letter-spacing: 0.4px;
        }

        .cta-call-btn:hover {
            background: rgba(193, 122, 42, 0.22);
            border-color: rgba(193, 122, 42, 0.85);
            color: #ffe7bc;
        }

        .cta-form {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(193, 122, 42, 0.26);
            border-radius: 0;
            padding: 24px 22px 20px;
            min-height: 100%;
        }

        .consultation-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group {
            position: relative;
        }

        .form-group.invalid .form-control {
            border-color: rgba(203, 94, 94, 0.92);
            box-shadow: 0 0 0 3px rgba(203, 94, 94, 0.16);
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-size: 0.86rem;
            letter-spacing: 0.3px;
            text-transform: none;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
            line-height: 1.35;
        }

        .form-label[for="contact-method"] {
            white-space: nowrap;
        }

        .form-control {
            width: 100%;
            background: rgba(9, 9, 9, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 0;
            min-height: 56px;
            padding: 16px 14px;
            color: var(--text-light);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.22s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-hover);
            box-shadow: 0 0 0 3px rgba(193, 122, 42, 0.28);
            background: rgba(12, 12, 12, 0.9);
        }

        .form-control::placeholder {
            color: #666;
        }

        .form-error {
            margin-top: 8px;
            font-size: 0.82rem;
            color: #e4a3a3;
            line-height: 1.4;
        }

        select.form-control {
            color: var(--text-light);
        }

        select.form-control:invalid {
            color: #8c8c8c;
        }

        select.form-control option {
            color: var(--text-light);
            background: #0f0f0f;
        }

        textarea.form-control {
            resize: none;
            min-height: 132px;
        }

        .btn-submit {
            width: 100%;
            margin-top: 10px;
            min-height: 62px;
            font-size: 1.16rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            border-radius: 0;
            background: linear-gradient(160deg, #ddb25e 0%, #c98535 58%, #a86823 100%);
            border: 1px solid #cf8b3d;
            color: #111111;
            box-shadow: 0 16px 28px rgba(95, 63, 22, 0.36);
        }

        .btn-submit:hover {
            background: linear-gradient(160deg, #e3bd72 0%, #d39242 58%, #b7752f 100%);
            border-color: #d89a4e;
            color: #101010;
            transform: translateY(-2px);
            box-shadow: 0 18px 30px rgba(95, 63, 22, 0.42);
        }

        .cta-microcopy {
            margin-top: 12px;
            color: #c8c8c8;
            font-size: 0.9rem;
            line-height: 1.5;
            text-align: center;
        }

        .form-success {
            margin-top: 12px;
            text-align: center;
            color: #9ed3a7;
            font-size: 0.92rem;
            line-height: 1.45;
        }

        /* --- FAQ --- */
        .faq {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border-top: 1px solid #ddd8d1;
            border-bottom: 1px solid #ddd8d1;
            position: relative;
        }

        .faq::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: var(--bg-light);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
            pointer-events: none;
        }

        .faq::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(19, 19, 19, 0.04) 0%, rgba(19, 19, 19, 0.012) 38%, transparent 56%),
                repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.02) 0, rgba(18, 18, 18, 0.02) 1px, transparent 1px, transparent 28px);
            pointer-events: none;
            z-index: 0;
        }

        .faq .container {
            position: relative;
            z-index: 1;
        }

        .faq .section-header h2 {
            color: #131313;
        }

        .faq .section-header p {
            color: #55514c;
        }

        .faq-list {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            gap: 12px;
        }

        .faq-item {
            background: #fdfbf8;
            border: 1px solid #d8d2c8;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-item[open] {
            border-color: var(--border-gold);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            font-size: 1.08rem;
            font-weight: 600;
            color: #191919;
            padding: 18px 48px 18px 18px;
            position: relative;
            line-height: 1.45;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #6d6b67;
        }

        .faq-item[open] summary::after {
            content: "–";
            color: var(--primary-hover);
        }

        .faq-item p {
            padding: 0 18px 18px;
            color: #4f4b45;
            font-size: 1rem;
            line-height: 1.7;
            max-width: 88ch;
        }

        /* --- FOOTER --- */
        .footer {
            background-color: #0A0A0A;
            border-top: 1px solid var(--border-light);
            padding: 80px 5% 30px;
            position: relative;
        }

        .footer::before {
            content: "";
            position: absolute;
            top: calc(-1 * var(--stack-overlap));
            left: 0;
            width: 100%;
            height: var(--stack-overlap);
            background: #0A0A0A;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 16px 24px rgba(0, 0, 0, 0.34);
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-brand h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-gray);
            max-width: 300px;
        }

        .footer h4 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer ul li a {
            color: var(--text-gray);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

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

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 6px;
        }

        .footer-social-link {
            width: auto;
            height: auto;
            color: #d4c8b8;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            transition: all 0.28s ease;
        }

        .footer-social-link svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .footer-social-link:hover {
            color: var(--primary-hover);
            background: transparent;
            transform: none;
            box-shadow: none;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--border-light);
            padding-top: 30px;
            color: #555;
            font-size: 0.85rem;
        }

        /* --- ANIMATIONS (Scroll Observe) --- */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (min-width: 992px) {
            .nav-cta {
                display: flex;
            }
        }

        @media (min-width: 992px) and (max-width: 1280px) {
            .navbar {
                padding: 0 3%;
            }

            .nav-links {
                gap: 1.15rem;
            }

            .nav-links li a {
                font-size: 0.86rem;
                letter-spacing: 1px;
            }

            .nav-cta {
                gap: 10px;
            }

            .nav-phone {
                font-size: 0.84rem;
                letter-spacing: 0.2px;
            }

            .nav-cta .btn {
                padding: 11px 16px;
                font-size: 0.84rem;
                letter-spacing: 0.12px;
            }
        }

        @media (min-width: 992px) and (max-width: 1120px) {
            .nav-phone {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .cta-container {
                grid-template-columns: 1fr;
                padding: 40px;
            }

            .cta-form {
                width: 100%;
            }
        }

        @media (max-width: 991px) {
            .mobile-toggle {
                display: block;
                color: var(--bg-dark);
            }

            .nav-links li.nav-mobile-cta {
                display: block;
            }

            .nav-links li.nav-mobile-cta .btn {
                display: block;
                margin-top: 20px;
            }

            .nav-links li.nav-mobile-phone {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: calc(100dvh - var(--nav-height));
                background-color: var(--bg-darker);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 14px;
                padding: 18px 5% 22px;
                overflow-y: auto;
                border-top: 1px solid var(--border-light);
                border-bottom: 1px solid var(--border-light);
                box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
                transform: translateY(-14px);
                opacity: 0;
                pointer-events: none;
                transition: transform 0.28s ease, opacity 0.28s ease;
                z-index: 1100;
            }

            .navbar.nav-scrolled .nav-links {
                height: calc(100dvh - 80px);
            }

            .nav-links li a {
                color: var(--text-light);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            .hero-shell {
                grid-template-columns: 1fr;
                min-height: auto;
                gap: 20px;
            }

            .hero-content {
                padding: 20px 0;
                border-right: none;
            }

            .hero-media {
                min-height: 440px;
                border-radius: 0;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .about {
                padding-left: 0;
                padding-right: 0;
            }

            .about .container {
                padding-left: 0;
                padding-right: 0;
            }

            .about-image {
                width: 100vw;
                margin-left: 0;
                margin-right: 0;
                transform: none;
            }

            .about-image img {
                width: 100%;
                max-width: 100%;
            }

            .about-content {
                padding: 0 5%;
            }

            .practice-feature {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .practice-ledger {
                grid-template-columns: 1fr;
            }

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

            .about-image img {
                box-shadow: none;
            }

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

        @media (max-width: 768px) {
            .urgent-banner a {
                font-size: 0.76rem;
            }

            .urgent-copy-desktop {
                display: none;
            }

            .urgent-copy-mobile {
                display: inline;
            }

            .trust-grid {
                flex-direction: column;
                align-items: flex-start;
            }

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

            .section-padding {
                padding: 60px 5%;
            }

            .about.section-padding {
                padding-left: 0;
                padding-right: 0;
            }

            .about .container {
                max-width: none;
                padding-left: 0;
                padding-right: 0;
            }

            .about-grid {
                gap: 0;
            }

            .about-image {
                width: 100%;
                margin: 0;
            }

            .about-image img {
                width: 100vw;
                max-width: 100vw;
                margin-left: 50%;
                transform: translateX(-50%);
            }

            .hero {
                padding: calc(var(--nav-height) + var(--urgent-height) + 16px) 0 24px;
            }

            .hero-shell {
                width: 100%;
                gap: 0;
            }

            .hero-content {
                padding: 20px 5%;
            }

            .hero h1 {
                font-size: clamp(2.4rem, 11vw, 4rem);
                line-height: 1.08;
                letter-spacing: -1px;
            }

            .hero p {
                font-size: 1.18rem;
            }

            .hero-btns {
                width: 100vw;
                margin-left: 50%;
                transform: translateX(-50%);
                padding: 0;
                display: grid;
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .hero-btns .btn {
                width: 100%;
            }

            .hero-media {
                min-height: 360px;
                width: 100%;
                margin-left: 0;
                transform: none;
                border-left: none;
                border-right: none;
            }

            .practice-heading-full {
                display: none;
            }

            .practice-heading-short {
                display: inline;
            }

            .cta-call-btn {
                display: inline-flex;
                width: 100%;
                justify-content: center;
            }

            .btn-submit {
                font-size: 1rem;
                letter-spacing: 0.2px;
                min-height: 58px;
            }

            .practice-feature {
                padding: 22px 0;
            }

            .practice-header {
                margin-bottom: 34px;
            }

            .practice-item {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 18px 0 20px;
            }

            .practice-index {
                font-size: 1.5rem;
            }

            .results .container {
                padding: 40px 24px;
            }
        }

        @media (min-width: 769px) {
            .hero-btns {
                width: auto;
                margin-left: 0;
                transform: none;
                display: flex;
                grid-template-columns: none;
            }

            .hero-btns .btn {
                width: auto;
            }

            .hero-media {
                width: 100%;
                margin-left: 0;
                transform: none;
                border-left: 1px solid #c8c6c0;
                border-right: 1px solid #c8c6c0;
            }
        }
