/* ============================================================
   THE AUTHORS PRIME — Design System
   ============================================================ */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     /* Brand */
     --navy: #0A1F44;
     --navy-mid: #132D5C;
     --navy-deep: #060F22;
     --gold: #D4AF37;
     --gold-light: #E8C84A;
     --gold-dark: #9A7B1A;
     --gold-gradient: linear-gradient(135deg, #F0D060 0%, #D4AF37 50%, #B8941F 100%);
     --gold-soft: rgba(212, 175, 55, 0.14);
   
     /* Neutrals */
     --white: #FFFFFF;
     --bg: #FFFFFF;
     --bg-muted: #F4F6FA;
     --bg-warm: #FAFAF8;
     --border: #E2E6EF;
     --border-dark: rgba(255, 255, 255, 0.1);
   
     /* Text — always use these on correct backgrounds */
     --text: #1C2340;
     --text-muted: #5C6478;
     --text-light: #FFFFFF;
     --text-light-muted: rgba(255, 255, 255, 0.72);
   
     /* Layout */
     --container: 1180px;
     --container-wide: 1320px;
     --section-y: 96px;
     --section-y-sm: 72px;
     --nav-h: 88px;
     --radius: 10px;
     --radius-lg: 16px;
     --radius-pill: 50px;
   
     /* Effects */
     --shadow-sm: 0 2px 12px rgba(10, 31, 68, 0.07);
     --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.1);
     --shadow-lg: 0 20px 56px rgba(10, 31, 68, 0.14);
     --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.35);
     --ease: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   
     --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
     --font-serif: 'Playfair Display', Georgia, serif;
   }
   
   html {
     scroll-behavior: smooth;
     scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
     font-size: 16px;
     -webkit-text-size-adjust: 100%;
   }
   
   @media (prefers-reduced-motion: reduce) {
     html { scroll-behavior: auto; }
   }
   
   body {
     font-family: var(--font-sans);
     color: var(--text);
     background: var(--bg);
     line-height: 1.65;
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
   }
   
   img { max-width: 100%; display: block; height: auto; }
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   
   /* ---- Typography ---- */
   h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--text); }
   .section-dark h1, .section-dark h2, .section-dark h3,
   .section-dark h4, .page-hero-dark h1 { color: var(--text-light); }
   
   .display-xl { font-size: clamp(2.1rem, 4.2vw, 3.4rem); letter-spacing: -0.02em; }
   .display-lg { font-size: clamp(1.75rem, 3vw, 2.6rem); letter-spacing: -0.02em; }
   .display-md { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
   .display-sm { font-size: clamp(1.15rem, 2vw, 1.45rem); }
   
   .lead { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); }
   .section-dark .lead, .page-hero-dark .lead { color: var(--text-light-muted); }
   
   .eyebrow {
     display: inline-block;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: var(--gold-dark);
     margin-bottom: 12px;
   }
   .section-dark .eyebrow, .page-hero-dark .eyebrow { color: var(--gold-light); }
   
   .text-gold { color: var(--gold-dark); }
   .section-dark .text-gold { color: var(--gold-light); }
   em.highlight { color: var(--gold-dark); font-style: italic; }
   .section-dark em.highlight { color: var(--gold-light); }
   
   /* ---- Layout ---- */
   .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
   .container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
   
   section { padding: var(--section-y) 0; }
   .section-sm { padding: var(--section-y-sm) 0; }
   
   .section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
   .section-header .display-lg { margin: 8px 0 14px; }
   
   .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
   .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
   .text-center { text-align: center; }
   .mt-8 { margin-top: 32px; }
.mt-2 { margin-top: 8px; }
   
   /* Section backgrounds */
   .section-white { background: var(--white); }
   .section-muted { background: var(--bg-muted); }
   .section-warm { background: var(--bg-warm); }
   .section-dark {
     background: var(--navy);
     color: var(--text-light);
   }
   .section-dark .lead { color: var(--text-light-muted); }
   
   /* ---- Logo ---- */
   .logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
   .logo {
     height: 64px;
     width: auto;
     object-fit: contain;
   }
   .logo--footer { height: 68px; max-height: 68px; }
   /* Logo for light header/footer (navy letters — 1.png) */
   .logo--on-light { height: 76px; max-height: 76px; }
   /* Logo for dark sections (silver letters — 2.png) */
   .logo--on-dark { height: 76px; max-height: 76px; }
   #navbar .logo--on-light,
   footer .logo--on-light {
     mix-blend-mode: multiply;
   }
   #navbar .logo--on-dark,
   footer .logo--on-dark {
     mix-blend-mode: screen;
     filter: brightness(1.05);
   }
   .logo-wrap { display: inline-flex; align-items: center; }
   .site-logo { height: 64px; width: auto; object-fit: contain; }
   footer .site-logo { height: 56px; mix-blend-mode: screen; }
   
   /* ---- Buttons ---- */
   .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     font-family: var(--font-sans);
     font-weight: 700;
     font-size: 0.875rem;
     padding: 13px 28px;
     border-radius: var(--radius-pill);
     border: 2px solid transparent;
     cursor: pointer;
     transition: all var(--ease);
     white-space: nowrap;
   }
   .btn-sm { padding: 10px 22px; font-size: 0.8rem; }
   .btn-lg { padding: 15px 36px; font-size: 0.95rem; }
   
   .btn-primary {
     background: var(--gold-gradient);
     color: var(--navy-deep);
     border-color: transparent;
     box-shadow: var(--shadow-gold);
   }
   .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,175,55,0.45); }
   
   .btn-secondary {
     background: var(--navy);
     color: var(--text-light);
   }
   .btn-secondary:hover { background: var(--navy-mid); transform: translateY(-2px); }
   
   .btn-outline {
     background: transparent;
     color: var(--navy);
     border-color: var(--navy);
   }
   .btn-outline:hover { background: var(--navy); color: var(--text-light); }
   
   .btn-outline-light {
     background: transparent;
     color: var(--text-light);
     border-color: rgba(255,255,255,0.45);
   }
   .btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
   
   .btn-outline-gold {
     background: transparent;
     color: var(--gold-dark);
     border-color: var(--gold);
   }
   .btn-outline-gold:hover { background: var(--gold-soft); }
   
   .btn-arrow::after { content: '↗'; font-size: 0.95em; }
   
   /* ---- HEADER ---- */
   #navbar {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 1000;
     height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
     padding-top: env(safe-area-inset-top, 0px);
     background: var(--white);
     border-bottom: 1px solid var(--border);
     box-shadow: 0 2px 20px rgba(10, 31, 68, 0.06);
   }
   #navbar.scrolled {
     box-shadow: 0 4px 24px rgba(10, 31, 68, 0.1);
   }
   #navbar .container { height: 100%; }
   .nav-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 100%;
     gap: 20px;
   }
   .nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
   .nav-links > a {
     display: inline-flex;
     align-items: center;
     font-size: 0.875rem;
     font-weight: 600;
     color: var(--text-muted);
     padding: 8px 14px;
     border-radius: var(--radius-pill);
     line-height: 1.3;
     white-space: nowrap;
     transition: color var(--ease), background var(--ease);
   }
   .nav-links > a:hover,
   .nav-links > a.active { color: var(--navy); background: var(--gold-soft); }
   .nav-links > a.active { color: var(--gold-dark); font-weight: 700; }
   .nav-cta { flex-shrink: 0; }

   /* ---- MEGA MENU ---- */
   .nav-mega-wrap {
     position: relative;
     display: inline-flex;
     align-items: center;
     align-self: stretch;
   }
   .nav-mega-trigger {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     font-size: 0.875rem;
     font-weight: 600;
     color: var(--text-muted);
     padding: 8px 16px;
     border-radius: var(--radius-pill);
     line-height: 1.3;
     white-space: nowrap;
     height: 36px;
     box-sizing: border-box;
     transition: color var(--ease), background var(--ease);
     -webkit-tap-highlight-color: transparent;
   }
   .nav-mega-trigger:hover,
   .nav-mega-trigger.active,
   .nav-mega-wrap.open .nav-mega-trigger {
     color: var(--navy);
     background: var(--gold-soft);
   }
   .nav-mega-trigger.active { color: var(--gold-dark); font-weight: 700; }
   .nav-chevron { transition: transform var(--ease); flex-shrink: 0; opacity: 0.7; }
   .nav-mega-wrap.open .nav-chevron { transform: rotate(180deg); }
   .mega-menu {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%) translateY(6px);
     padding-top: 10px;
     background: transparent;
     border: none;
     box-shadow: none;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
     z-index: 1003;
   }
   .nav-mega-wrap.open .mega-menu {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateX(-50%) translateY(0);
   }
   .mega-menu-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr) minmax(180px, 200px);
     gap: 20px 28px;
     min-width: 720px;
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-lg);
     padding: 24px;
   }
   .mega-col-title {
     font-size: 0.68rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--gold-dark);
     margin-bottom: 10px;
     padding: 0 10px;
   }
   .mega-col a {
     display: block;
     font-size: 0.85rem;
     font-weight: 600;
     color: var(--text);
     padding: 8px 10px;
     border-radius: var(--radius);
     line-height: 1.35;
     transition: color var(--ease), background var(--ease);
   }
   .mega-col a:hover {
     color: var(--navy);
     background: var(--gold-soft);
   }
   .mega-col a[aria-current="page"] {
     color: var(--gold-dark);
     font-weight: 700;
     background: var(--gold-soft);
   }
   .mega-cta-col {
     background: var(--bg-muted);
     border-radius: var(--radius);
     padding: 18px;
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   .mega-cta-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
   .mega-all-link {
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--gold-dark);
     padding: 0;
     border-radius: 0;
   }
   .mega-all-link:hover { text-decoration: underline; background: none; }
   .mega-cta-col .btn { width: 100%; justify-content: center; }
   .mobile-nav-group {
     width: 100%;
     max-width: 360px;
     display: flex;
     flex-direction: column;
     align-items: stretch;
   }
   .mobile-services-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     width: 100%;
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--navy);
     padding: 16px 40px 16px 12px;
     background: none;
     border: none;
     border-bottom: 1px solid var(--border);
     cursor: pointer;
     font-family: inherit;
     text-align: center;
     -webkit-tap-highlight-color: transparent;
   }
   .mobile-services-btn .nav-chevron {
     position: absolute;
     right: 14px;
     top: 50%;
     transform: translateY(-50%);
   }
   .mobile-services-btn.active,
   .mobile-services-btn[aria-expanded="true"] {
     color: var(--gold-dark);
     background: var(--gold-soft);
     border-radius: var(--radius);
     border-bottom-color: transparent;
   }
   .mobile-services-btn[aria-expanded="true"] .nav-chevron {
     transform: translateY(-50%) rotate(180deg);
   }
   .mobile-services-list {
     display: flex;
     flex-direction: column;
     width: 100%;
     padding: 0;
     margin-bottom: 4px;
   }
   .mobile-services-list[hidden] { display: none; }
   .mobile-services-list a {
     width: 100%;
     max-width: none;
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--text-muted);
     padding: 13px 12px;
     text-align: center;
     border-bottom: 1px solid var(--border);
     border-radius: 0;
   }
   .mobile-services-list a:hover,
   .mobile-services-list a[aria-current="page"] {
     color: var(--gold-dark);
     background: var(--gold-soft);
     border-radius: var(--radius);
     border-bottom-color: transparent;
   }
   .footer-links--services { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }

   /* ---- SERVICE PAGES ---- */
   .page-service .page-hero .svc-hero-btns { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
   .svc-intro-wrap {
     display: grid;
     grid-template-columns: 1.4fr 1fr;
     gap: 48px;
     align-items: start;
   }
   .svc-intro p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
   .svc-intro p:last-child { margin-bottom: 0; }
   .svc-audience {
     background: var(--bg-muted);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 28px;
   }
   .svc-audience h2 { margin-bottom: 16px; color: var(--navy); }
   .svc-process-steps {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 16px;
     max-width: 960px;
     margin: 0 auto;
   }
   .svc-process-steps .process-step {
     flex: 1 1 160px;
     max-width: 220px;
     min-width: 150px;
   }
   .svc-benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
   }
   .svc-benefit {
     background: var(--bg-muted);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 28px 24px;
   }
   .svc-benefit-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
   .svc-benefit p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
   .svc-related-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
   }
   .svc-related-card {
     display: flex;
     flex-direction: column;
     gap: 6px;
     padding: 22px 20px;
     background: var(--bg-muted);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
   }
   .svc-related-card:hover {
     border-color: var(--gold);
     box-shadow: var(--shadow-sm);
     transform: translateY(-2px);
   }
   .svc-related-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); }
   .svc-related-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); font-weight: 600; }
   .svc-related-arrow { font-size: 0.9rem; color: var(--gold-dark); font-weight: 700; margin-top: 4px; }
   .page-hero .breadcrumb a { color: var(--text-muted); }
   .final-cta-note a { color: var(--gold-light); font-weight: 600; }
   .final-cta-note a:hover { text-decoration: underline; }

   @media (max-width: 1280px) {
     .mega-menu {
       left: auto;
       right: -24px;
       transform: translateY(6px);
     }
     .nav-mega-wrap.open .mega-menu {
       transform: translateY(0);
     }
     .mega-menu-grid {
       min-width: min(700px, calc(100vw - 40px));
     }
   }
   
   .hamburger {
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 5px;
     width: 44px;
     height: 44px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
     flex-shrink: 0;
     -webkit-tap-highlight-color: transparent;
   }
   .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
   .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
   .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
   .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   
   .mobile-menu {
     display: flex;
     position: fixed;
     inset: 0;
     background: var(--white);
     z-index: 1001;
     flex-direction: column;
     align-items: center;
     padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 16px) 20px calc(24px + env(safe-area-inset-bottom, 0px));
     gap: 0;
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: opacity 0.25s ease, visibility 0.25s ease;
   }
   .mobile-menu.open {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
   }
   .mobile-menu a {
     width: 100%;
     max-width: 360px;
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--navy);
     padding: 16px 12px;
     text-align: center;
     border-bottom: 1px solid var(--border);
     -webkit-tap-highlight-color: transparent;
   }
   .mobile-menu a:last-of-type { border-bottom: none; }
   .mobile-menu a:hover,
   .mobile-menu a.active { color: var(--gold-dark); background: var(--gold-soft); border-radius: var(--radius); border-bottom-color: transparent; }
   .mobile-menu-cta {
     width: 100%;
     max-width: 360px;
     margin-top: 20px;
   }
   .mobile-close {
     position: fixed;
     top: calc(12px + env(safe-area-inset-top, 0px));
     right: 12px;
     width: 44px; height: 44px;
     background: var(--bg-muted);
     border: 1px solid var(--border);
     border-radius: 50%;
     color: var(--navy); font-size: 1.4rem; cursor: pointer;
     z-index: 1002;
     -webkit-tap-highlight-color: transparent;
   }
   
   /* ---- PAGE HERO (inner pages) ---- */
   .page-hero {
     padding: calc(var(--nav-h) + 56px) 0 64px;
     background: var(--bg-muted);
   }
   .page-hero .breadcrumb {
     display: flex; gap: 8px; align-items: center;
     font-size: 0.8rem; color: var(--text-muted);
     margin-bottom: 20px;
   }
   .page-hero .breadcrumb a:hover { color: var(--gold-dark); }
   .page-hero .breadcrumb span { color: var(--gold-dark); font-weight: 600; }
   .page-hero .display-xl { margin-bottom: 14px; }
   .page-hero .eyebrow { margin-bottom: 12px; }
   .page-hero .lead { max-width: 640px; }
   
   /* ---- ABOUT PAGE ---- */
   .page-about .page-hero {
     padding: calc(var(--nav-h) + 48px) 0 48px;
   }
   .page-about section {
     padding: 72px 0;
   }
   .page-about .page-hero + section {
     padding-top: 56px;
   }
   .page-about .section-header {
     margin-bottom: 40px;
   }
   .page-about .final-cta {
     padding: 72px 0;
   }
   
   .about-grid {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     gap: 48px;
     align-items: center;
   }
   .about-media {
     position: relative;
     padding-bottom: 20px;
     padding-right: 20px;
     overflow: visible;
   }
   .about-img-main {
     position: relative;
     background: var(--navy);
     border-radius: var(--radius-lg);
     aspect-ratio: 4/5;
     max-height: 520px;
     overflow: hidden;
     border: 1px solid rgba(212,175,55,0.2);
     box-shadow: var(--shadow-md);
   }
   .about-img-photo {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     display: block;
   }
   .about-img-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 32px;
     background: linear-gradient(to top, rgba(5,18,38,0.92) 0%, rgba(5,18,38,0.45) 45%, transparent 70%);
   }
   .about-accent {
     position: absolute;
     bottom: 0;
     right: 0;
     background: var(--gold-gradient);
     padding: 18px 22px;
     border-radius: var(--radius);
     color: var(--navy-deep);
     box-shadow: var(--shadow-gold);
     z-index: 2;
   }
   
   .about-content .eyebrow,
   .why-content .eyebrow {
     margin-bottom: 10px;
   }
   .about-content .display-lg,
   .why-content .display-lg {
     margin-bottom: 14px;
   }
   .about-content .lead,
   .why-content .lead {
     margin-bottom: 18px;
   }
   .about-content p {
     font-size: 0.95rem;
     color: var(--text-muted);
     line-height: 1.75;
     margin-bottom: 14px;
   }
   .about-content .about-vals {
     margin-top: 28px;
   }
   .about-vals {
     display: flex;
     flex-direction: column;
     gap: 10px;
   }
   
   .why-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
   }
   .why-content .why-feat-grid {
     margin-top: 20px;
   }
   .why-card-main {
     background: var(--navy);
     border-radius: var(--radius-lg);
     padding: 36px 32px;
     border: 1px solid rgba(212,175,55,0.2);
     text-align: center;
   }
   
   /* ---- HOME HERO ---- */
   .hero {
     padding: calc(var(--nav-h) + 88px) 0 var(--section-y);
     background: var(--white);
     position: relative;
   }
   .hero::after {
     content: '';
     position: absolute;
     bottom: 0; left: 0; right: 0;
     height: 1px;
     background: var(--border);
   }
   .hero-inner {
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 48px;
     align-items: start;
   }
   .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--gold-soft);
     border: 1px solid rgba(212,175,55,0.3);
     color: var(--navy);
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     padding: 10px 18px;
     border-radius: var(--radius-pill);
     margin-bottom: 22px;
   }
   .hero-badge-dot {
     width: 8px; height: 8px;
     border-radius: 50%;
     background: var(--gold);
     flex-shrink: 0;
   }
   .hero-headline { margin-bottom: 18px; }
   .hero-sub { margin-bottom: 28px; max-width: 520px; }
   .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
   .trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
   .trust-item { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
   .trust-stars { color: var(--gold); letter-spacing: 1px; }
   .trust-sep { width: 1px; height: 24px; background: var(--border); }
   
   /* Hero form */
   .form-card {
     background: var(--navy);
     border: 2px solid rgba(212,175,55,0.35);
     border-radius: var(--radius-lg);
     padding: 32px 28px;
     box-shadow: var(--shadow-lg);
   }
   .form-card h3 {
     font-family: var(--font-serif);
     font-size: 1.45rem;
     color: var(--gold-light);
     margin-bottom: 4px;
   }
   .form-card .form-sub {
     font-size: 0.88rem;
     color: var(--text-light-muted);
     margin-bottom: 22px;
   }
   .form-group { margin-bottom: 14px; }
   .form-group label {
     display: block;
     font-size: 0.72rem;
     font-weight: 600;
     color: rgba(255,255,255,0.85);
     margin-bottom: 6px;
     text-transform: uppercase;
     letter-spacing: 0.06em;
   }
   .form-group input,
   .form-group select,
   .form-group textarea {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid var(--border);
     border-radius: var(--radius-pill);
     font-family: var(--font-sans);
     font-size: 0.9rem;
     color: var(--text);
     background: white;
     outline: none;
     transition: border-color var(--ease);
   }
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
     border-color: var(--gold);
     box-shadow: 0 0 0 3px var(--gold-soft);
   }
   .form-group textarea { border-radius: var(--radius); min-height: 110px; resize: vertical; }
   .form-honey {
     position: absolute;
     left: -9999px;
     width: 1px;
     height: 1px;
     opacity: 0;
     pointer-events: none;
   }
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
   .form-card .form-submit {
     width: 100%;
     margin-top: 6px;
     padding: 14px;
     background: var(--gold-gradient);
     color: var(--navy-deep);
     font-weight: 800;
     font-size: 0.88rem;
     letter-spacing: 0.06em;
     border: none;
     border-radius: var(--radius-pill);
     cursor: pointer;
     transition: all var(--ease);
   }
   .form-card .form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
   
   /* Light form (contact page) */
   .form-box {
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 36px;
     box-shadow: var(--shadow-md);
   }
   .form-box .form-title {
     font-family: var(--font-serif);
     font-size: 1.35rem;
     color: var(--navy);
     margin-bottom: 4px;
   }
   .form-box .form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
   .form-box .form-group label { color: var(--navy); }
   .form-box .form-submit {
     width: 100%;
     padding: 14px;
     background: var(--gold-gradient);
     color: var(--navy-deep);
     font-weight: 700;
     font-size: 0.88rem;
     border: none;
     border-radius: var(--radius-pill);
     cursor: pointer;
     transition: all var(--ease);
     box-shadow: var(--shadow-gold);
   }
   .form-box .form-submit:hover { transform: translateY(-1px); }
   
   /* ---- PARTNERS / LOGO MARQUEE ---- */
   .partners-wrap { text-align: center; }
   .partners-wrap h2 { margin-bottom: 10px; }
   .partners-wrap p { color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-size: 0.95rem; }
   
   .logo-marquee {
     overflow: hidden;
     width: 100%;
     pointer-events: none;
     user-select: none;
     background: var(--white);
     padding: 28px 0;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
     -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
     mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
   }
   .logo-marquee-track {
     display: flex;
     width: max-content;
     animation: marquee-scroll 10s linear infinite;
     will-change: transform;
   }
   .logo-marquee-group {
     display: flex;
     align-items: center;
     gap: 48px;
     padding-right: 48px;
     flex-shrink: 0;
   }
   .marquee-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     background: transparent;
   }
   .marquee-logo img {
     display: block;
     height: 40px;
     width: auto;
     max-width: 140px;
     object-fit: contain;
     object-position: center;
     background: transparent;
   }
   
   @keyframes marquee-scroll {
     0% { transform: translateX(0); }
     100% { transform: translateX(-50%); }
   }
   
   @media (prefers-reduced-motion: reduce) {
     .logo-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
     .logo-marquee { mask-image: none; -webkit-mask-image: none; }
     .logo-marquee-group[aria-hidden="true"] { display: none; }
   }
   
   /* Legacy static grid (other pages) */
   .partners-grid {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 28px 40px;
     padding: 36px 40px;
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
   }
   .partner-logo {
     height: 38px;
     width: auto;
     max-width: 150px;
     object-fit: contain;
     opacity: 0.85;
     transition: opacity var(--ease), transform var(--ease);
     filter: grayscale(20%);
   }
   .partner-logo:hover { opacity: 1; transform: translateY(-2px); filter: none; }
   
   /* ---- SERVICE CARDS ---- */
   .svc-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     overflow: hidden;
     transition: all var(--ease);
     display: flex;
     flex-direction: column;
   }
   .svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
   .svc-cover {
     aspect-ratio: 16/10;
     display: flex;
     align-items: flex-end;
     padding: 20px;
     position: relative;
     overflow: hidden;
     background: var(--navy);
   }
   .svc-cover-img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   .svc-card:hover .svc-cover-img { transform: scale(1.05); }
   .svc-cover::after {
     content: '';
     position: absolute; inset: 0;
     background: linear-gradient(to top, rgba(6,15,34,0.82) 0%, rgba(6,15,34,0.2) 45%, transparent 70%);
     z-index: 1;
   }
   .svc-cover span {
     position: relative; z-index: 2;
     font-family: var(--font-serif);
     font-size: 1.1rem;
     font-weight: 600;
     color: white;
     text-shadow: 0 1px 8px rgba(0,0,0,0.35);
   }
   .svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
   .svc-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
   .svc-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
   
   .svc-c1 { background: linear-gradient(135deg, #2D1B4E, #5C3480); }
   .svc-c2 { background: linear-gradient(135deg, #1A3A5C, #2E6A9E); }
   .svc-c3 { background: linear-gradient(135deg, #4A2030, #8B3A50); }
   .svc-c4 { background: linear-gradient(135deg, #1A3A2A, #2D6A4A); }
   .svc-c5 { background: linear-gradient(135deg, #1A1A2E, #3A3A5C); }
   .svc-c6 { background: linear-gradient(135deg, #5C3A10, #A06820); }
   
   /* Legacy service card */
   .service-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 28px 24px;
     transition: all var(--ease);
   }
   .service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
   .service-icon {
     width: 50px; height: 50px;
     background: var(--gold-soft);
     border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center;
     color: var(--gold-dark);
     margin-bottom: 16px;
   }
   .service-icon svg { width: 22px; height: 22px; }
   .service-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
   .service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
   .service-link { display: inline-flex; gap: 6px; margin-top: 14px; font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); }
   
   /* ---- CTA BANNER ---- */
   .cta-banner {
     background: var(--gold-gradient);
     padding: 56px 0;
     text-align: center;
   }
   .cta-banner h2 { color: var(--navy-deep); font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 10px; }
   .cta-banner p { color: rgba(6,15,34,0.75); margin-bottom: 24px; font-size: 0.95rem; }
   .cta-banner .btn { background: var(--navy-deep); color: white; box-shadow: var(--shadow-md); }
   .cta-banner .btn:hover { background: var(--navy); }
   
   /* ---- WHY / STATS BOXES ---- */
   .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
   .stat-boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0; }
   .stat-box {
     text-align: center;
     padding: 22px 14px;
     background: var(--bg-muted);
     border-radius: var(--radius);
     border: 1px solid var(--border);
   }
   .stat-box-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold-dark); line-height: 1; }
   .stat-box-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 6px; }
   
   .info-card {
     background: var(--navy);
     border-radius: var(--radius-lg);
     padding: 40px;
     border: 1px solid rgba(212,175,55,0.2);
   }
   .info-card h3 { color: white; font-size: 1.45rem; margin-bottom: 12px; }
   .info-card p { color: var(--text-light-muted); font-size: 0.92rem; line-height: 1.7; }
   .chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
   .chip {
     padding: 6px 14px;
     border-radius: var(--radius-pill);
     background: rgba(212,175,55,0.12);
     border: 1px solid rgba(212,175,55,0.25);
     font-size: 0.65rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     color: var(--gold-light);
   }
   
   /* ---- PORTFOLIO ---- */
   .pf-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
   .pf-grid-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
   .pf-item {
     border-radius: var(--radius);
     overflow: hidden;
     aspect-ratio: 2/3;
     position: relative;
     box-shadow: var(--shadow-sm);
     transition: all var(--ease);
     cursor: pointer;
     background: #16181d;
   }
   .pf-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
   .pf-item.hidden { display: none; }
   .pf-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
   .pf-cover-img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     display: block;
   }
   
   .pf-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
   .pf-btn {
     font-size: 0.78rem; font-weight: 600;
     padding: 8px 18px;
     border-radius: var(--radius-pill);
     border: 1px solid var(--border);
     background: white;
     color: var(--text-muted);
     cursor: pointer;
     font-family: var(--font-sans);
     transition: all var(--ease);
   }
   .pf-btn.active, .pf-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-soft); }
   
   /* ---- PROCESS ---- */
   .process-steps {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 16px;
     max-width: 1100px;
     margin: 0 auto;
   }
   .process-step {
     flex: 1 1 140px;
     max-width: 170px;
     min-width: 130px;
     text-align: center;
     padding: 24px 14px;
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: var(--radius);
     transition: all var(--ease);
   }
   .process-step:hover { background: rgba(255,255,255,0.08); border-color: rgba(212,175,55,0.3); }
   .step-num {
     width: 46px; height: 46px;
     border-radius: 50%;
     background: var(--gold-gradient);
     color: var(--navy-deep);
     font-family: var(--font-serif);
     font-weight: 700;
     font-size: 0.95rem;
     display: flex; align-items: center; justify-content: center;
     margin: 0 auto 14px;
   }
   .step-title { font-size: 0.78rem; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.35; }
   .step-desc { font-size: 0.76rem; color: rgba(255,255,255,0.55); line-height: 1.55; margin: 0 auto; max-width: 140px; }
   
   /* ---- STATS BAR ---- */
   .stats-bar {
     background: var(--navy-deep);
     padding: 56px 0;
     border-top: 3px solid var(--gold);
     border-bottom: 3px solid var(--gold);
   }
   .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
   .stat-item { text-align: center; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
   .stat-item:last-child { border-right: none; }
   .stat-num { font-family: var(--font-serif); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
   .stat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
   .stats-bar .section-header { margin-bottom: 40px; }
   .stats-bar .section-header .eyebrow { color: var(--gold-light); }
   .stats-bar .section-header .display-lg { color: white; }
   .stats-bar .section-header .lead { color: var(--text-light-muted); }
   
   /* ---- TESTIMONIALS ---- */
   .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
   .testi-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 28px;
     transition: all var(--ease);
   }
   .testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
   .testi-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.88rem; margin-bottom: 14px; }
   .testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
   .testi-author { display: flex; align-items: center; gap: 12px; }
   .testi-avatar {
     width: 44px; height: 44px; border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     font-family: var(--font-serif); font-weight: 700; font-size: 0.85rem; color: white;
     flex-shrink: 0;
   }
   .av-1 { background: linear-gradient(135deg,var(--navy),#1A4A8A); }
   .av-2 { background: linear-gradient(135deg,#6B2D4A,#3A1A2E); }
   .av-3 { background: linear-gradient(135deg,#1A5C3A,#0F3D25); }
   .av-4 { background: linear-gradient(135deg,#5C3A82,#3A1A5A); }
   .av-5 { background: linear-gradient(135deg,#6B4A1A,#4A3010); }
   .av-6 { background: linear-gradient(135deg,#1A4A6B,#0C2B42); }
   .testi-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
   .testi-role { font-size: 0.76rem; color: var(--text-muted); }
   .testi-book { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-dark); }
   
   /* ---- ABOUT ---- */
   .about-quote {
     font-family: var(--font-serif);
     font-size: 1.15rem;
     color: white;
     line-height: 1.45;
     border-left: 3px solid var(--gold);
     padding-left: 18px;
   }
   .about-cite { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); margin-top: 12px; padding-left: 21px; }
   .about-badge {
     position: absolute; bottom: -18px; right: -18px;
     background: var(--gold-gradient);
     padding: 20px 24px;
     border-radius: var(--radius);
     color: var(--navy-deep);
     box-shadow: var(--shadow-gold);
   }
   .about-badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
   .about-badge-txt { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
   .val-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
   .val-item {
     display: flex; gap: 14px;
     padding: 14px 16px;
     background: var(--bg-muted);
     border-radius: var(--radius);
     border-left: 3px solid transparent;
     transition: all var(--ease);
   }
   .val-item:hover { border-left-color: var(--gold); background: var(--gold-soft); }
   .val-icon {
     width: 38px; height: 38px;
     background: var(--gold-soft);
     border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center;
     color: var(--gold-dark); flex-shrink: 0;
   }
   .val-icon svg { width: 18px; height: 18px; }
   .val-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
   .val-desc { font-size: 0.8rem; color: var(--text-muted); }
   
   /* ---- CONTACT ---- */
   .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
   .contact-info .eyebrow { margin-bottom: 10px; }
   .contact-info .display-md { margin-bottom: 14px; }
   .contact-info .lead { margin-bottom: 32px; line-height: 1.75; }
   .contact-items { display: flex; flex-direction: column; gap: 24px; }
   .contact-item { display: flex; gap: 16px; margin-bottom: 0; align-items: flex-start; }
   .contact-item > div:last-child { flex: 1; min-width: 0; }
   .contact-icon-wrap {
     width: 44px; height: 44px;
     background: var(--gold-gradient);
     border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center;
     color: var(--navy-deep); flex-shrink: 0;
     margin-top: 2px;
   }
   .contact-icon-wrap svg { width: 20px; height: 20px; }
   .contact-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 6px; line-height: 1.3; }
   .contact-val { font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.55; word-break: break-word; }
.contact-val a { color: inherit; font-weight: 500; }
.contact-val a:hover { color: var(--gold-dark); }
.legal-content h2 { margin: 28px 0 12px; color: var(--navy); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-content a { color: var(--gold-dark); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-wrap { max-width: 720px; }

/* ---- 404 PAGE ---- */
.page-404 .error-section {
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 0 96px;
  background: var(--bg-muted);
  min-height: calc(100vh - 320px);
}
.page-404 .error-section .container { max-width: 640px; }
.page-404 .error-section .eyebrow { margin-bottom: 12px; }
.error-code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.page-404 .error-section .display-xl { margin-bottom: 16px; }
.page-404 .error-section .lead { margin: 0 auto; }
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.error-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}
.error-links a:hover { color: var(--gold-dark); }
   .page-contact .form-box .form-title { margin-bottom: 10px; line-height: 1.3; }
   .page-contact .form-box .form-sub { margin-bottom: 28px; line-height: 1.65; }
   .page-contact .form-box .form-group { margin-bottom: 18px; }
   .page-contact .form-box .form-group label { margin-bottom: 8px; }
   .page-contact .form-box .form-submit { margin-top: 6px; }
   .page-contact .faq-q span { flex: 1; line-height: 1.45; padding-right: 8px; }
   .page-contact .faq-a { padding-right: 4px; }
   
   /* ---- FAQ ---- */
   .faq-list { max-width: 720px; margin: 0 auto; }
   .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
   .faq-q {
     display: flex; justify-content: space-between; align-items: center;
     cursor: pointer; gap: 16px;
     font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy);
   }
   .faq-q svg { flex-shrink: 0; color: var(--gold-dark); transition: transform 0.3s; }
   .faq-item.open .faq-q svg { transform: rotate(45deg); }
   .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
   .faq-item.open .faq-a { max-height: 32rem; padding-top: 12px; }
   
   /* ---- SERVICE DETAIL ---- */
   .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
   .detail-card {
     background: white;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 32px;
   }
   .detail-card h3 { margin-bottom: 12px; }
   .detail-list li {
     display: flex; gap: 10px; padding: 9px 0;
     font-size: 0.88rem; color: var(--text-muted);
     border-bottom: 1px solid var(--border);
   }
   .detail-list li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
   .detail-list li:last-child { border-bottom: none; }
   
   .why-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
   .why-feat {
     display: flex; gap: 12px; padding: 14px;
     background: var(--bg-muted); border-radius: var(--radius);
   }
   .why-feat-icon {
     width: 36px; height: 36px;
     background: var(--gold-gradient);
     border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center;
     color: var(--navy-deep); flex-shrink: 0;
   }
   .why-feat-icon svg { width: 18px; height: 18px; }
   .why-feat-title { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
   .why-feat-desc { font-size: 0.76rem; color: var(--text-muted); }
   
   /* ---- FINAL CTA ---- */
   .final-cta {
     background: var(--navy);
     padding: 80px 0;
     text-align: center;
     position: relative;
   }
   .final-cta::before {
     content: '';
     position: absolute; inset: 0;
     background: radial-gradient(ellipse at center, rgba(212,175,55,0.1), transparent 65%);
     pointer-events: none;
   }
   .final-cta-inner {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     max-width: 640px;
     margin: 0 auto;
   }
   .final-cta .eyebrow {
     color: var(--gold-light);
     margin-bottom: 14px;
   }
   .final-cta h2 {
     color: white;
     font-size: clamp(1.8rem, 3.5vw, 2.4rem);
     margin: 0 0 16px;
     line-height: 1.2;
   }
   .final-cta-inner > p:not(.final-cta-note) {
     color: var(--text-light-muted);
     font-size: 1.02rem;
     line-height: 1.75;
     margin: 0 0 28px;
     max-width: 520px;
   }
   .final-cta-btns {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 14px;
     flex-wrap: wrap;
   }
   .final-cta-note {
     margin: 24px 0 0;
     font-size: 0.75rem;
     color: rgba(255,255,255,0.45);
     letter-spacing: 0.03em;
     line-height: 1.5;
   }
   .final-cta-note span { color: var(--gold-light); }
   
   /* ---- FOOTER ---- */
   footer { background: var(--white); color: var(--text-muted); border-top: 3px solid var(--gold); }
   .footer-main { padding: 64px 0 40px; }
   .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin: 16px 0 20px; max-width: 320px; color: var(--text-muted); }
.footer-social-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin: 20px 0 10px; }
.footer-social { display: flex; gap: 8px; margin-bottom: 2px; }
.footer-trust { margin-top: 22px; }
.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 10px;
  align-items: center;
  justify-items: start;
  max-width: 460px;
}
.footer-trust-logo {
  width: 100%;
  max-width: 108px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
   .social-btn {
     width: 38px; height: 38px;
     background: var(--bg-muted);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     display: flex; align-items: center; justify-content: center;
     font-size: 0.75rem; font-weight: 700;
     color: var(--text-muted);
     transition: all var(--ease);
   }
   .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
   .footer-col-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy); margin-bottom: 14px; }
   .footer-links { display: flex; flex-direction: column; gap: 8px; }
   .footer-links a { font-size: 0.84rem; color: var(--text-muted); transition: color var(--ease); }
   .footer-links a:hover { color: var(--gold-dark); }
   .footer-contact-item { display: flex; gap: 8px; font-size: 0.82rem; margin-bottom: 10px; color: var(--text-muted); }
.footer-contact-item a { color: inherit; transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--gold-dark); }
   .footer-contact-item .fi { color: var(--gold-dark); flex-shrink: 0; }
   .footer-bottom {
     padding: 18px 0;
     border-top: 1px solid var(--border);
     display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
   }
   .footer-copy { font-size: 0.76rem; color: var(--text-muted); }
   .footer-legal { display: flex; gap: 16px; }
   .footer-legal a { font-size: 0.76rem; color: var(--text-muted); }
   .footer-legal a:hover { color: var(--gold-dark); }
   
   /* ---- FLOATING WIDGETS ---- */
   .float-widgets {
     position: fixed; right: 0; top: 50%;
     transform: translateY(-50%);
     z-index: 900;
     display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
   }
   .float-btn {
     width: 48px; height: 48px;
     border-radius: 50% 0 0 50%;
     background: var(--gold-gradient);
     color: var(--navy-deep);
     display: flex; align-items: center; justify-content: center;
     box-shadow: var(--shadow-gold);
     transition: all var(--ease);
   }
   .float-btn:hover { width: 54px; }
   .float-btn svg { width: 22px; height: 22px; }
   .float-promo {
     writing-mode: vertical-rl;
     background: var(--gold-gradient);
     color: var(--navy-deep);
     font-size: 0.65rem; font-weight: 800;
     letter-spacing: 0.08em; text-transform: uppercase;
     padding: 16px 10px;
     border-radius: var(--radius) 0 0 var(--radius);
     box-shadow: var(--shadow-gold);
     transition: all var(--ease);
   }
   .float-promo:hover { padding-right: 14px; }
   
   /* ---- REVEAL ---- */
   .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   .reveal-delay-1 { transition-delay: 0.1s; }
   .reveal-delay-2 { transition-delay: 0.2s; }
   .reveal-delay-3 { transition-delay: 0.3s; }
   
   /* ---- LEGACY / ALIASES ---- */
   .cta-band {
     background: var(--navy);
     padding: var(--section-y) 0;
     text-align: center;
   }
   .cta-band .eyebrow { color: var(--gold-light); }
   .cta-band h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 10px 0 14px; }
   .cta-band p { color: var(--text-light-muted); max-width: 520px; margin: 0 auto 28px; }
   .cta-band-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
   .faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); }
   .faq-question svg { flex-shrink: 0; color: var(--gold-dark); transition: transform 0.3s; }
   .faq-item.open .faq-question svg { transform: rotate(45deg); }
   .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
   .faq-item.open .faq-answer { max-height: 32rem; padding-top: 12px; }
   .btn-outline-dark { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 0.875rem; padding: 13px 28px; border-radius: var(--radius-pill); border: 2px solid var(--navy); background: transparent; color: var(--navy); transition: all var(--ease); }
   .btn-outline-dark:hover { background: var(--navy); color: white; }
   .portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
   .service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
   .service-detail-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
   .service-detail-list { list-style: none; }
   .service-detail-list li { display: flex; gap: 10px; padding: 9px 0; font-size: 0.88rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
   .service-detail-list li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
   .service-detail-list li:last-child { border-bottom: none; }
   .why-card-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
   .why-card-title { font-family: var(--font-serif); font-size: 1.35rem; color: white; margin-bottom: 10px; }
   .why-card-desc { font-size: 0.9rem; color: var(--text-light-muted); line-height: 1.7; margin-bottom: 18px; }
   .why-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
   .why-chip { padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--gold-light); }
   .accent-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
   .accent-txt { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
   .about-val { display: flex; gap: 14px; padding: 14px 16px; background: var(--bg-muted); border-radius: var(--radius); border-left: 3px solid transparent; transition: all var(--ease); }
   .about-val:hover { border-left-color: var(--gold); background: var(--gold-soft); }
   .about-val-icon { width: 38px; height: 38px; background: var(--gold-soft); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); flex-shrink: 0; }
   .about-val-icon svg { width: 18px; height: 18px; }
   .about-val-title { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
   .about-val-desc { font-size: 0.8rem; color: var(--text-muted); }
   .contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
   .contact-detail-icon { width: 44px; height: 44px; background: var(--gold-gradient); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--navy-deep); flex-shrink: 0; }
   .contact-detail-icon svg { width: 20px; height: 20px; }
   .contact-detail-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 2px; }
   .contact-detail-val { font-size: 0.92rem; color: var(--text); font-weight: 500; }
   .contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
   .contact-icon, .footer-contact-item .contact-icon { color: var(--gold-light); }
   .divider-gold { height: 3px; background: var(--gold-gradient); }
   .process { background: var(--navy); color: var(--text-light); padding: var(--section-y) 0; }
   .process .section-header .display-lg,
   .process .section-header h2 { color: white; }
   .process .section-header .lead { color: var(--text-light-muted); }
   .process .section-header .eyebrow { color: var(--gold-light); }
   
   /* ---- RESPONSIVE ---- */
   @media (max-width: 1100px) {
     .pf-grid, .pf-grid-row { grid-template-columns: repeat(4,1fr); }
     .process-steps { gap: 12px; }
     .process-step, .svc-process-steps .process-step {
       flex: 1 1 calc(50% - 8px);
       max-width: calc(50% - 8px);
       min-width: 0;
     }
   }
   @media (max-width: 900px) {
     :root { --section-y: 72px; --nav-h: 72px; }
     .logo, .logo--on-light { height: 56px; max-height: 56px; }
     .hero-inner, .split-grid, .about-grid, .contact-grid, .detail-grid, .grid-2 { grid-template-columns: 1fr; }
     .about-grid { gap: 32px; }
     .hero { padding: calc(var(--nav-h) + 48px) 0 var(--section-y); }
     .hero-inner { gap: 32px; }
     .form-card { max-width: 100%; }
     .trust-row { gap: 12px 16px; }
     .testi-grid { grid-template-columns: 1fr 1fr; }
     .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-trust-grid { max-width: 100%; gap: 10px 8px; }
  .footer-trust-logo { max-width: 100%; height: 42px; object-position: center; justify-self: center; }
     .stats-grid { grid-template-columns: repeat(2,1fr); }
     .stat-item { border-right: none; }
     .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
     .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
     .grid-3 { grid-template-columns: repeat(2,1fr); }
     .stat-boxes { grid-template-columns: repeat(3,1fr); }
     .float-widgets { display: none; }
     .why-grid, .service-detail-grid { grid-template-columns: 1fr; }
     .why-card-main { margin-top: 8px; }
     .svc-intro-wrap { grid-template-columns: 1fr; gap: 28px; }
     .svc-benefits-grid { grid-template-columns: 1fr; }
     .svc-related-grid { grid-template-columns: 1fr; }
     .svc-process-steps { gap: 12px; }
     .mega-menu, .nav-mega-wrap.open .mega-menu { display: none !important; }
     .page-about section { padding: 56px 0; }
     .page-about .page-hero + section { padding-top: 40px; }
     .about-media {
       display: flex;
       flex-direction: column;
       padding-right: 0;
       padding-bottom: 0;
       margin-bottom: 24px;
     }
     .about-accent {
       position: relative;
       bottom: auto;
       right: auto;
       align-self: flex-start;
       margin-top: 16px;
       padding: 16px 20px;
     }
     .accent-txt {
       font-size: 0.7rem;
       line-height: 1.4;
       max-width: none;
       letter-spacing: 0.06em;
       opacity: 1;
       white-space: normal;
     }
     .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
     .form-group input,
     .form-group select,
     .form-group textarea { font-size: 16px; }
   }
   @media (max-width: 640px) {
     :root { --section-y: 56px; --section-y-sm: 48px; --nav-h: 64px; }
     .container, .container-wide { padding: 0 16px; }
     section { padding: var(--section-y) 0; }
     .section-sm { padding: var(--section-y-sm) 0; }
     .section-header { margin-bottom: 32px; }
     .nav-links { display: none; }
     .nav-cta { display: none; }
     .hamburger { display: flex; }
     .logo, .logo--on-light, .logo--footer { height: 48px; max-height: 48px; }
     .nav-inner { gap: 12px; }
     .page-hero { padding: calc(var(--nav-h) + 24px) 0 40px; }
     .page-404 .error-section { padding: calc(var(--nav-h) + 24px) 0 64px; min-height: auto; }
     .error-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
     .error-actions .btn { width: 100%; }
     .page-about .page-hero { padding: calc(var(--nav-h) + 20px) 0 36px; }
     .page-about section { padding: 48px 0; }
     .hero { padding: calc(var(--nav-h) + 28px) 0 var(--section-y); }
     .hero-badge { font-size: 0.62rem; padding: 8px 14px; text-align: left; line-height: 1.4; }
     .hero-headline { font-size: clamp(1.65rem, 7.5vw, 2.15rem); }
     .hero-sub { max-width: 100%; font-size: 0.98rem; }
     .hero-btns { flex-direction: column; width: 100%; }
     .hero-btns .btn { width: 100%; max-width: none; }
     .trust-row { flex-direction: column; align-items: flex-start; gap: 8px; }
     .trust-sep { display: none; }
     .footer-links--services { grid-template-columns: 1fr; }
     .section-dark .section-header,
     .page-service .section-header { text-align: center; }
     .section-dark .section-header .lead,
     .page-service .section-header .lead { margin-left: auto; margin-right: auto; }
     .svc-audience { padding: 22px 18px; }
     .svc-benefit { padding: 22px 18px; }
     .svc-related-card { padding: 18px 16px; }
     .detail-card { padding: 22px 18px; }
     .legal-content { padding: 0 4px; }
     .form-card, .form-box, .contact-form, .service-detail-card { padding: 24px 18px; }
     .form-row { grid-template-columns: 1fr; }
     .logo-marquee { padding: 20px 0; }
     .logo-marquee-group { gap: 28px; padding-right: 28px; }
     .marquee-logo img { height: 30px; max-width: 90px; }
     .partners-wrap p { margin-bottom: 28px; font-size: 0.9rem; }
     .process-steps, .svc-process-steps { gap: 10px; }
     .process-step, .svc-process-steps .process-step {
       flex: 1 1 100%;
       max-width: 300px;
       min-width: 0;
       padding: 20px 16px;
     }
     .step-desc { max-width: none; }
     .testi-grid, .grid-2, .grid-3, .why-feat-grid { grid-template-columns: 1fr; }
     .pf-grid, .pf-grid-row, .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
     .pf-item.featured { grid-column: span 1; grid-row: span 1; aspect-ratio: 2/3; }
     .pf-filters {
       flex-wrap: nowrap;
       justify-content: flex-start;
       overflow-x: auto;
       -webkit-overflow-scrolling: touch;
       scrollbar-width: none;
       margin: 0 -16px 28px;
       padding: 0 16px 6px;
       gap: 8px;
     }
     .pf-filters::-webkit-scrollbar { display: none; }
     .pf-btn { flex-shrink: 0; min-height: 44px; padding: 10px 16px; font-size: 0.76rem; }
     .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 6px; }
  .footer-trust-logo { height: 34px; max-width: 100%; object-position: center; justify-self: center; }
     .footer-main { padding: 48px 0 32px; }
     .footer-brand p { max-width: none; }
     .stat-boxes { grid-template-columns: 1fr; }
     .stats-bar { padding: 40px 0; }
     .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px 0; }
     .stat-item { padding: 14px 12px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
     .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08) !important; }
     .stat-item:nth-child(3),
     .stat-item:nth-child(4) { border-bottom: none; }
     .stat-num { font-size: clamp(1.6rem, 6vw, 2.2rem); }
     .footer-bottom { flex-direction: column; text-align: center; }
     .final-cta { padding: 48px 0; }
     .final-cta-btns { flex-direction: column; width: 100%; }
     .final-cta-btns .btn { width: 100%; max-width: none; }
     .final-cta-note { margin-top: 16px; font-size: 0.68rem; line-height: 1.6; }
     .cta-banner { padding: 40px 0; }
     .cta-banner .btn,
     .text-center.mt-8 .btn { width: 100%; max-width: none; }
     .btn { white-space: normal; text-align: center; line-height: 1.35; }
     .btn-lg { padding: 14px 24px; }
     .partners-grid { gap: 16px; padding: 20px 16px; }
     .partner-logo { height: 28px; max-width: 100px; }
     .about-media { margin-bottom: 20px; }
     .about-img-main { max-height: 420px; }
     .about-img-overlay { padding: 20px; }
     .about-quote { font-size: 1rem; }
     .about-accent { margin-top: 14px; padding: 14px 18px; }
     .accent-num { font-size: 1.75rem; }
     .why-card-main { padding: 28px 22px; }
     .why-card-num { font-size: 2.4rem; }
     .info-card { padding: 28px 22px; }
     .svc-body { padding: 20px; }
     .testi-card { padding: 22px; }
     .faq-q, .faq-question { font-size: 0.95rem; gap: 12px; min-height: 44px; align-items: center; }
     .contact-grid { gap: 40px; }
     .contact-info .lead { margin-bottom: 28px; }
     .contact-items { gap: 20px; }
     .page-service .page-hero .svc-hero-btns { flex-direction: column; width: 100%; }
     .page-service .page-hero .svc-hero-btns .btn { width: 100%; max-width: none; }
     .svc-process-steps { gap: 10px; }
     .split-grid { gap: 32px; }
   }
   @media (max-width: 380px) {
     .process-step, .svc-process-steps .process-step { max-width: 100%; }
     .stats-grid { grid-template-columns: 1fr; }
     .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
     .stat-item:last-child { border-bottom: none !important; }
     .pf-grid, .pf-grid-row { gap: 8px; }
   }
   
