/* ─── RESET & BASE ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --navy:       #0A0F0A;
      --navy-mid:   #111811;
      --navy-light: #182018;
      --steel:      #1E2E1E;
      --amber:      #2EAA4A;
      --amber-light:#3DC45F;
      --amber-glow: rgba(46,170,74,0.15);
      --white:      #FFFFFF;
      --off-white:  #F2F5F2;
      --muted:      #7A9A7A;
      --text:       #C8D8C8;
      --border:     rgba(255,255,255,0.08);
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
      --font-serif:   'Playfair Display', serif;
    }

    body {
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--text);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ─── PAGE SYSTEM ──────────────────────────────── */
    .page { display: none; }
    .page.active { display: block; }

    /* ─── NAVBAR ───────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(8,12,8,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
    }
    .nav-logo img {
      height: 44px;
      width: 44px;
      object-fit: contain;
      
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text .brand-main {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      color: var(--white);
      text-transform: uppercase;
    }
    .nav-logo-text .brand-sub {
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.14em;
      color: var(--amber);
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .nav-links a {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      padding: 0.5rem 0.85rem;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--white);
      background: var(--amber-glow);
    }
    .nav-cta {
      background: var(--amber) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.1rem !important;
      border-radius: 4px;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--amber-light) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ─── SECTION UTILS ────────────────────────────── */
    .section { padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 1.25rem;
    }
    .section-body {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      max-width: 620px;
      line-height: 1.75;
    }

    /* ─── BUTTONS ──────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 1.75rem;
      border-radius: 4px;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }
    .btn-primary {
      background: var(--amber);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover {
      border-color: var(--amber);
      color: var(--amber);
    }

    /* ─── DIVIDER ──────────────────────────────────── */
    .amber-rule {
      display: block;
      width: 48px;
      height: 3px;
      background: var(--amber);
      margin: 0 0 1.5rem;
    }

    /* ─── FOOTER ───────────────────────────────────── */
    footer {
      background: #040604;
      border-top: 1px solid var(--border);
      padding: 3.5rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      margin-top: 1rem;
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
    }
    .footer-col ul li {
      margin-bottom: 0.5rem;
    }
    .footer-col ul li a {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }
    .footer-bottom-links a {
      font-size: 0.8rem;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: var(--amber); }

    /* ─── PAGE: HOME ───────────────────────────────── */
    .hero-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1.75rem;
    }
    @media (max-width: 640px) {
      .hero-stats-row { grid-template-columns: 1fr; }
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 5rem 2rem;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: transparent;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 59px,
          rgba(255,255,255,0.018) 60px
        ),
        repeating-linear-gradient(
          90deg,
          transparent,
          transparent 59px,
          rgba(255,255,255,0.018) 60px
        );
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -120px;
      right: -80px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(46,170,74,0.12) 0%, transparent 65%);
      border-radius: 50%;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--amber);
    }
    .hero-headline {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.75rem;
    }
    .hero-headline em {
      font-style: normal;
      color: var(--amber);
    }
    .hero-sub {
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 2.25rem;
      max-width: 480px;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
    }
    .hero-right img {
      width: min(420px, 90vw);
      height: min(420px, 90vw);
      object-fit: contain;
      filter: drop-shadow(0 0 32px rgba(46,170,74,0.35)) drop-shadow(0 0 80px rgba(46,170,74,0.15));
    }
    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-left: 3px solid var(--amber);
      padding: 1.5rem 1.75rem;
      border-radius: 6px;
      backdrop-filter: blur(6px);
    }
    .stat-card .stat-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--white);
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .stat-card .stat-label {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--muted);
      margin-top: 0.25rem;
      letter-spacing: 0.04em;
    }

    /* Services */
    .services-section { background: var(--navy-mid); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-top: 3.5rem;
    }
    .service-card {
      background: var(--navy-mid);
      padding: 2.25rem 2rem;
      transition: background 0.3s;
      position: relative;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 3px;
      background: var(--amber);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { background: var(--navy-light); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      font-size: 1.75rem;
      margin-bottom: 1rem;
      display: block;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.65rem;
    }
    .service-card p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
    }


    /* ─── STOCK IMAGES ─────────────────────────────── */
    .hero-photo-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }
    .hero-photo-strip img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 6px;
      border: 1px solid var(--border);
      opacity: 0.75;
      filter: saturate(0.5);
      transition: opacity 0.3s, filter 0.3s;
    }
    .hero-photo-strip img:hover {
      opacity: 0.95;
      filter: saturate(0.9);
    }
    .section-photo {
      width: 100%;
      height: 340px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: block;
    }
    .about-photo {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 8px;
      filter: saturate(0.7);
      border: 1px solid var(--border);
    }
    @media (max-width: 900px) {
      .hero-photo-strip { grid-template-columns: 1fr; }
    }

    /* Real People Section */
    .real-people-section { background: var(--navy-light); }
    .real-people-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .real-people-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .rp-badge {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-top: 3px solid var(--amber);
      border-radius: 7px;
      padding: 1.5rem 1.25rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .rp-badge:hover {
      background: var(--navy);
      border-top-color: var(--amber-light);
    }
    .rp-badge-icon {
      font-size: 1.5rem;
      margin-bottom: 0.65rem;
    }
    .rp-badge h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .rp-badge p {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.65;
    }

    /* Why Us */
    .why-section { background: var(--navy); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 3rem;
      max-width: 700px;
    }
    .why-points { display: flex; flex-direction: column; gap: 2rem; }
    .why-point {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }
    .why-point-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: var(--amber-glow);
      border: 1px solid rgba(232,119,34,0.3);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-top: 2px;
    }
    .why-point h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .why-point p {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
    }
    .why-visual {
      position: relative;
      padding: 2.5rem;
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 10px;
    }
    .why-visual-badge {
      position: absolute;
      top: -14px;
      left: 2rem;
      background: var(--amber);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.3rem 0.9rem;
      border-radius: 3px;
    }
    .why-list-heading {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.5rem;
      margin-top: 0.75rem;
    }
    .trade-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .trade-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: rgba(255,255,255,0.03);
      border-radius: 5px;
      border: 1px solid var(--border);
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--text);
      transition: background 0.2s, border-color 0.2s;
    }
    .trade-item:hover {
      background: var(--amber-glow);
      border-color: rgba(232,119,34,0.3);
      color: var(--white);
    }
    .trade-item::before {
      content: '✓';
      color: var(--amber);
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* Reviews Section */
    .reviews-section { background: var(--navy-mid); }
    .reviews-widget-wrap {
      margin-top: 2.5rem;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--navy);
      position: relative;
      min-height: 420px;
    }
    .reviews-widget-wrap iframe {
      border-radius: 10px;
    }
    .reviews-fallback {
      display: none;
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem;
    }
    .reviews-fallback-inner {
      max-width: 440px;
    }
    .reviews-fallback p {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--text);
    }
    .reviews-widget-wrap.blocked iframe { display: none; }
    .reviews-widget-wrap.blocked .reviews-fallback { display: flex; }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, #2EAA4A 0%, #1A6B2E 100%);
      padding: 4.5rem 2rem;
      text-align: center;
    }
    .cta-banner .section-title { color: var(--white); }
    .cta-banner .section-body { color: rgba(255,255,255,0.85); margin: 0 auto 2rem; }
    .cta-banner .btn {
      background: var(--white);
      color: var(--amber);
    }
    .cta-banner .btn:hover { background: var(--off-white); }

    /* ─── PAGE: BOOKING ────────────────────────────── */
    .page-hero {
      background: linear-gradient(135deg, #050805 0%, #0A0F0A 100%);
      padding: 5rem 2rem 4rem;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      top: -80px; right: -60px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(46,170,74,0.1) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .page-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.0;
      margin-bottom: 1rem;
    }
    .page-hero p {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      max-width: 560px;
      line-height: 1.75;
    }

    .embed-section { padding: 4rem 2rem; }
    .embed-container {
      max-width: 860px;
      margin: 0 auto;
    }
    .crm-booking-wrap {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--navy-mid);
    }
    .crm-booking-wrap.blocked iframe { display: none; }
    .crm-booking-wrap.blocked .crm-booking-fallback { display: flex; }
    .crm-booking-fallback {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5rem 3rem;
      text-align: center;
    }
    .crm-booking-fallback h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 0.5rem;
    }
    .crm-booking-fallback p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.2);
    }
      background: var(--navy-mid);
      border: 2px dashed rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 5rem 3rem;
      text-align: center;
    }
    .embed-placeholder .ep-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      opacity: 0.4;
    }
    .embed-placeholder h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 0.5rem;
    }
    .embed-placeholder p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.2);
    }

    /* ─── PAGE: CONTACT ────────────────────────────── */
    .contact-layout {
      padding: 4rem 2rem;
    }
    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-info h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.75rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .contact-info p {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      margin-bottom: 1.25rem;
    }
    .contact-detail-icon {
      width: 36px;
      height: 36px;
      background: var(--amber-glow);
      border: 1px solid rgba(232,119,34,0.3);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .contact-detail-text .label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber);
    }
    .contact-detail-text .value {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text);
    }
    .contact-form-area {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2.5rem;
    }
    .contact-form-area h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.35rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .crm-form-wrap {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      background: var(--navy-light);
    }
    .crm-form-fallback {
      display: none;
      padding: 3rem;
      text-align: center;
    }
    .crm-form-fallback p {
      font-size: 0.92rem;
      color: var(--text);
    }
    .crm-form-wrap.blocked iframe { display: none; }
    .crm-form-wrap.blocked .crm-form-fallback { display: block; }

    .contact-form-area > p {
      font-size: 0.88rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }
    .contact-policy-links {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem 0 3rem;
      display: flex;
      gap: 1.5rem;
      font-size: 0.82rem;
      color: var(--muted);
    }
    .contact-policy-links a {
      color: var(--amber);
      font-weight: 500;
      cursor: pointer;
      transition: color 0.2s;
    }
    .contact-policy-links a:hover { color: var(--amber-light); text-decoration: underline; }

    /* ─── PAGE: LEGAL ──────────────────────────────── */
    .legal-section {
      padding: 4rem 2rem;
    }
    .legal-inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .legal-meta {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
    }
    .legal-inner h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin: 2.5rem 0 0.75rem;
    }
    .legal-inner h2:first-of-type { margin-top: 0; }
    .legal-inner p {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .legal-inner ul {
      list-style: disc;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
    .legal-inner ul li {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 0.4rem;
    }

    /* ─── PAGE: PRICING & PROCESS ──────────────────── */
    .pp-hero { padding-bottom: 4rem; }

    /* Factors grid */
    .pp-factors-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .pp-factor {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.25rem;
      transition: border-color 0.2s;
    }
    .pp-factor:hover { border-color: var(--amber); }
    .pp-factor-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
    .pp-factor strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .pp-factor p {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.65;
      margin: 0;
    }

    /* Price cards */
    .pp-price-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .pp-price-card {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem;
      position: relative;
    }
    .pp-price-card--featured {
      border-color: var(--amber);
      background: rgba(46,170,74,0.05);
    }
    .pp-price-badge {
      display: inline-block;
      background: var(--amber);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 3px;
      margin-bottom: 0.75rem;
    }
    .pp-price-label {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.2rem;
    }
    .pp-price-range {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.25rem;
    }
    .pp-price-desc p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 0.85rem;
    }
    .pp-price-desc ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .pp-price-desc ul li {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text);
      padding-left: 1.1rem;
      position: relative;
      line-height: 1.6;
    }
    .pp-price-desc ul li::before {
      content: '→';
      color: var(--amber);
      position: absolute;
      left: 0;
      font-size: 0.8rem;
    }
    .pp-price-desc strong { color: var(--white); font-weight: 600; }
    .pp-price-note {
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      background: rgba(46,170,74,0.07);
      border: 1px solid rgba(46,170,74,0.25);
      border-radius: 7px;
      padding: 1.1rem 1.4rem;
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.7;
    }
    .pp-price-note span { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .pp-price-note p { margin: 0; }

    /* Steps */
    .pp-steps { display: flex; flex-direction: column; gap: 0; }
    .pp-step {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      padding: 2rem 0;
      border-bottom: 1px solid var(--border);
    }
    .pp-step:last-child { border-bottom: none; }
    .pp-step-num {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 3rem;
      color: var(--amber);
      opacity: 0.35;
      line-height: 1;
      flex-shrink: 0;
      width: 60px;
      text-align: center;
      padding-top: 4px;
    }
    .pp-step-content h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .pp-step-content p {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 0.85rem;
    }
    .pp-step-benefit {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--amber);
      background: rgba(46,170,74,0.1);
      border-radius: 4px;
      padding: 0.35rem 0.85rem;
    }

    /* Trust row */
    .pp-trust-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
      margin-top: 2rem;
    }
    .pp-trust-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text);
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.75rem 1rem;
    }
    .pp-trust-item span { color: var(--amber); font-weight: 700; flex-shrink: 0; }

    /* Fit cards */
    .pp-fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .pp-fit-card {
      border-radius: 10px;
      padding: 2rem;
      border: 1px solid var(--border);
    }
    .pp-fit-card--yes { background: rgba(46,170,74,0.06); border-color: rgba(46,170,74,0.3); }
    .pp-fit-card--no  { background: rgba(255,255,255,0.03); }
    .pp-fit-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.25rem;
      line-height: 1.3;
    }
    .pp-fit-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .pp-fit-card ul li {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.65;
      padding-left: 1.1rem;
      position: relative;
    }
    .pp-fit-card--yes ul li::before { content: '✓'; color: var(--amber); position: absolute; left: 0; font-weight: 700; }
    .pp-fit-card--no  ul li::before { content: '✕'; color: var(--muted);  position: absolute; left: 0; font-weight: 700; }

    @media (max-width: 760px) {
      .pp-factors-grid { grid-template-columns: 1fr; }
      .pp-price-grid   { grid-template-columns: 1fr; }
      .pp-trust-row    { grid-template-columns: 1fr; }
      .pp-fit-grid     { grid-template-columns: 1fr; }
      .pp-step         { gap: 1.25rem; }
      .pp-step-num     { font-size: 2rem; width: 40px; }
    }

    /* ─── PAGE: QUOTE (old — kept for CSS safety) ──── */
    .quote-placeholder-section {
      padding: 6rem 2rem;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-right { display: grid; grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .real-people-inner { grid-template-columns: 1fr; gap: 3rem; }
      .why-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      /* Logo first on tablet/mobile */
      .hero-right { order: -1; }
      .hero-left  { order: 0; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        gap: 0.25rem;
      }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-right { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    /* ─── ANIMATIONS ───────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.6s ease forwards; }
    .fade-up-2 { animation: fadeUp 0.6s 0.15s ease forwards; opacity: 0; }
    .fade-up-3 { animation: fadeUp 0.6s 0.3s ease forwards; opacity: 0; }
    .fade-up-4 { animation: fadeUp 0.6s 0.45s ease forwards; opacity: 0; }

.resources-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      margin-top: 3rem;
    }
    .article-card {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    .article-card:hover {
      transform: translateY(-4px);
      border-color: var(--amber);
    }
    .article-card-tag {
      background: var(--amber);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.35rem 0.85rem;
      display: inline-block;
      align-self: flex-start;
      margin: 1.25rem 1.25rem 0;
      border-radius: 3px;
    }
    .article-card-body {
      padding: 1rem 1.25rem 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .article-card-body h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.65rem;
    }
    .article-card-body p {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.25rem;
    }
    .article-card-meta {
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .article-card-meta span { color: var(--amber); }
    .article-read-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--amber);
      transition: gap 0.2s;
    }
    .article-card:hover .article-read-link { gap: 0.65rem; }

    /* Article pages */
    .article-page-inner {
      max-width: 760px;
      margin: 0 auto;
      padding: 4rem 2rem 5rem;
    }
    .article-disclaimer {
      background: rgba(46,170,74,0.07);
      border: 1px solid rgba(46,170,74,0.25);
      border-left: 4px solid var(--amber);
      border-radius: 7px;
      padding: 1rem 1.25rem;
      margin-bottom: 2.5rem;
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.7;
    }
    .article-disclaimer strong { color: var(--white); }
    .article-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      margin-bottom: 2rem;
      transition: color 0.2s;
    }
    .article-back:hover { color: var(--amber); }
    .article-tag {
      background: var(--amber);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.35rem 0.85rem;
      border-radius: 3px;
      display: inline-block;
      margin-bottom: 1.25rem;
    }
    .article-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 1rem;
    }
    .article-byline {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }
    .article-byline strong { color: var(--amber); }
    .article-body h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin: 2.5rem 0 0.75rem;
    }
    .article-body p {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 1.25rem;
    }
    .article-body ul {
      list-style: none;
      margin: 0 0 1.5rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .article-body ul li {
      display: flex;
      gap: 0.75rem;
      font-size: 1rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.75;
    }
    .article-body ul li::before {
      content: '→';
      color: var(--amber);
      flex-shrink: 0;
      font-weight: 600;
    }
    .article-cta-box {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-left: 4px solid var(--amber);
      border-radius: 6px;
      padding: 2rem;
      margin-top: 3rem;
    }
    .article-cta-box h4 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .article-cta-box p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      margin-bottom: 1.25rem;
      line-height: 1.7;
    }
    @media (max-width: 900px) {
      .resources-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .resources-grid { grid-template-columns: 1fr; }
    }

.quote-disclaimer {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(46,170,74,0.07);
    border: 1px solid rgba(46,170,74,0.3);
    border-left: 4px solid var(--amber);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
  }
  .quote-disclaimer strong { color: var(--white); font-size: 1rem; }
  .quote-disclaimer-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
  .quote-tool { display: flex; flex-direction: column; gap: 0; }
  .quote-section {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  .quote-section-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.4rem;
  }
  .quote-section-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
  }
  .quote-account-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
  }
  .quote-account-block:last-child { margin-bottom: 0; }
  .quote-account-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }
  .quote-account-icon { font-size: 1.4rem; }
  .quote-account-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
  }
  .quote-account-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
  .quote-account-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .quote-field-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }
  .quote-counter {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--navy);
  }
  .quote-counter button {
    background: none;
    border: none;
    color: var(--amber);
    font-size: 1.1rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .quote-counter button:hover { background: var(--amber-glow); }
  .quote-counter input {
    flex: 1;
    background: none;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 0.5rem;
    height: 40px;
    -moz-appearance: textfield;
    outline: none;
  }
  .quote-counter input::-webkit-inner-spin-button,
  .quote-counter input::-webkit-outer-spin-button { -webkit-appearance: none; }
  .quote-addon {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .quote-addon.active {
    border-color: var(--amber);
    background: var(--amber-glow);
  }
  .quote-addon:last-child { margin-bottom: 0; }
  .quote-checkbox-label {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
  }
  .quote-checkbox-label input[type="checkbox"] { display: none; }
  .quote-checkbox-box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 5px;
    background: var(--navy);
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }
  .quote-checkbox-label input:checked ~ .quote-checkbox-box,
  .quote-checkbox-label.checked .quote-checkbox-box {
    background: var(--amber);
    border-color: var(--amber);
  }
  .quote-checkbox-label input:checked ~ .quote-checkbox-box::after,
  .quote-checkbox-label.checked .quote-checkbox-box::after {
    content: '✓';
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
  }
  .quote-addon-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
  }
  .quote-addon-text span {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
  }
  .quote-cleanup-months { display: none; padding-left: 2rem; }
  .quote-cleanup-months.visible { display: block; }
  .quote-result {
    background: var(--navy-light);
    border: 1px solid var(--amber);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-top: 0.5rem;
  }
  .quote-result-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .quote-result-monthly, .quote-result-cleanup { flex: 1; min-width: 180px; }
  .quote-result-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.4rem;
  }
  .quote-result-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .quote-result-price--cleanup { color: var(--amber-light); }
  .quote-result-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
  .quote-result-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }
  .quote-result-disclaimer {
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    border-left: 3px solid var(--amber);
    margin-bottom: 0;
  }
  .quote-result-disclaimer strong { color: var(--white); }
  @media (max-width: 640px) {
    .quote-account-fields { grid-template-columns: 1fr; }
    .quote-result-divider { width: 100%; height: 1px; }
  }

/* Canvas sits behind everything */
  #bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
  }

  /* Page enter transition */
  .page-enter {
    animation: pageEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes pageEnter {
    from { opacity: 0; transform: translateY(18px) scale(0.99); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
  }

  /* Card tilt on hover — applied to service, rp-badge, stat cards */
  .service-card, .rp-badge, .stat-card, .article-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  /* Magnetic button pull */
  .btn {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.2s ease, border-color 0.2s ease;
  }

  /* Floating orbs */
  .orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    transition: opacity 0.4s;
  }

  /* Nav link underline sweep */
  .nav-links a {
    position: relative;
    overflow: hidden;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    width: 0; height: 1.5px;
    background: var(--amber);
    transition: width 0.25s ease, left 0.25s ease;
  }
  .nav-links a:hover::after, .nav-links a.active::after {
    width: 70%; left: 15%;
  }
  .nav-cta::after { display: none !important; }

  /* Trade-item hover slide */
  .trade-item {
    transition: background 0.2s, border-color 0.2s, transform 0.2s ease, color 0.2s;
  }
  .trade-item:hover {
    transform: translateX(6px);
  }

  /* Why-point icon pulse */
  .why-point-icon {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  }
  .why-point:hover .why-point-icon {
    transform: scale(1.18) rotate(-4deg);
    background: rgba(46,170,74,0.25);
  }

  /* Section fade-in on scroll */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

/* Multi-page rebuild support */
.page.active { display: block; }
.nav-logo { text-decoration: none; }
.hamburger {
  background: transparent;
  border: 0;
}
.article-card {
  color: inherit;
  text-decoration: none;
}
.article-back {
  display: inline-flex;
}
.nav-login {
  border: 1px solid var(--border);
  color: var(--amber-light) !important;
}
.nav-login:hover {
  border-color: var(--amber);
}
.nav-login::after {
  display: none !important;
}
.client-login-section {
  background: var(--navy);
}
.client-login-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.client-login-copy {
  max-width: 720px;
}
.client-login-copy .section-title {
  margin-bottom: 0.75rem;
}
.client-login-copy p {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
}
.client-login-button {
  white-space: nowrap;
}
#page-booking .embed-section {
  padding: 3rem 0 4rem;
}
#page-booking .embed-container {
  max-width: 1120px;
  padding: 0 1rem;
}
#page-booking .crm-booking-wrap {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
#page-booking .crm-booking-wrap iframe {
  min-height: 820px !important;
}
.resource-directory-section {
  background: var(--navy-mid);
}
.article-library-section {
  background: var(--navy);
}
.resource-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.resource-category {
  min-width: 0;
}
.resource-category--wide {
  grid-column: 1 / -1;
}
.resource-category--wide .resource-link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-category--partners .resource-link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.resource-category-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
}
.resource-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.resource-category-heading h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.resource-link-list {
  display: grid;
  gap: 0.85rem;
}
.resource-link-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  min-height: 74px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.resource-link-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--amber);
  transform: translateY(-2px);
}
.resource-company-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}
.resource-company-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9px;
}
.resource-company-icon--white-logo img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.96;
}
.resource-company-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.resource-link-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}
.resource-link-copy strong {
  color: var(--white);
  font-size: 0.98rem;
}
.resource-link-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.resource-link-note {
  color: var(--amber-light) !important;
  margin-top: 0.2rem;
}
.resource-link-note span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(46, 170, 74, 0.45);
  border-radius: 5px;
  color: var(--white);
  background: rgba(46, 170, 74, 0.16);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
  padding: 0.16rem 0.35rem;
  text-transform: uppercase;
}
.resource-link-arrow {
  color: var(--amber);
  font-size: 1.15rem;
}
.service-page-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.service-detail-grid,
.seo-faq-grid,
.related-article-links {
  display: grid;
  gap: 1rem;
}
.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}
.service-detail-card,
.seo-faq-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.35rem;
}
.service-detail-card h3,
.seo-faq-item h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
}
.service-detail-card p,
.seo-faq-item p,
.service-fit-list p {
  color: var(--text);
  line-height: 1.75;
}
.service-detail-card a,
.article-body a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.service-detail-card--wide {
  grid-column: 1 / -1;
}
.service-fit-section {
  background: var(--navy-mid);
}
.service-fit-list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin-bottom: 2rem;
}
.seo-faq-section {
  background: var(--navy-mid);
}
.seo-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}
.related-articles {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2.5rem 0;
  padding: 1.5rem 0;
}
.related-articles h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.related-article-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.related-article-link {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.related-article-link:hover {
  color: var(--amber-light);
  border-color: var(--amber);
  transform: translateY(-2px);
}
.service-card--wide {
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .service-detail-grid,
  .seo-faq-grid,
  .related-article-links {
    grid-template-columns: 1fr;
  }
  .service-card--wide {
    grid-column: auto;
  }
  .service-detail-card--wide {
    grid-column: auto;
  }
  .resource-category-grid {
    grid-template-columns: 1fr;
  }
  .resource-category--wide .resource-link-list,
  .resource-category--partners .resource-link-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
  }
  .hamburger {
    display: flex;
  }
  .client-login-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  #page-booking .embed-section {
    padding: 2rem 0 3rem;
  }
  #page-booking .embed-container {
    padding: 0;
  }
}
@media (max-width: 560px) {
  .resource-link-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .resource-link-arrow {
    display: none;
  }
  .resource-company-icon {
    width: 40px;
    height: 40px;
  }
}
