/* ── Aizon Studio — Shared Stylesheet ──────────────────── */
/* Main site styles */

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

  :root {
    --cream:   #F0EBE1;
    --cream2:  #E8E1D5;
    --navy:    #1C2B4A;
    --navy2:   #14203A;
    --gold:    #C49A2A;
    --gold-lt: #D4AA40;
    --muted:   #5A5248;
    --white:   #FFFFFF;
    --ff-display: 'Fraunces', serif;
    --ff-body:    'DM Sans', sans-serif;
    --ff-mono:    'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }
  body { background: var(--cream); color: var(--navy); font-family: var(--ff-body); font-weight: 300; overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 3rem;
    background: rgba(240,235,225,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(28,43,74,0.08);
    z-index: 200;
  }
  .nav-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; color: var(--navy); text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta { background: var(--navy) !important; color: var(--cream) !important; padding: 0.5rem 1.25rem !important; opacity: 1 !important; border-radius: 4px; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

  /* ── HAMBURGER ── */
  .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 300; }
  .hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease; width: 100%; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--navy2);
    z-index: 250;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(240,235,225,0.7);
    text-decoration: none;
    padding: 0.85rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
    letter-spacing: 0.02em;
  }
  .mobile-menu a:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mobile-cta { background: var(--gold); color: var(--white) !important; border-radius: 4px; margin-top: 1.5rem; border: none !important; padding: 1rem 2rem !important; font-size: 1rem !important; width: auto !important; }
  .mobile-menu .mobile-cta:hover { background: var(--gold-lt) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 4.5rem;
  }
  .hero-left {
    background: var(--navy2);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: 'AIZON';
    font-family: var(--ff-display);
    font-size: 18rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    position: absolute;
    bottom: -2rem; left: -2rem;
    line-height: 1;
    pointer-events: none;
  }
  .hero-tag { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
  .hero-title { font-family: var(--ff-display); font-size: clamp(3.5rem, 5.5vw, 5.5rem); font-weight: 700; line-height: 1.0; color: var(--white); opacity: 0; animation: fadeUp 0.7s 0.35s forwards; }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub { font-size: 1rem; line-height: 1.75; color: rgba(240,235,225,0.65); max-width: 380px; margin-top: 1.75rem; opacity: 0; animation: fadeUp 0.7s 0.5s forwards; }
  .hero-actions { display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem; opacity: 0; animation: fadeUp 0.7s 0.65s forwards; flex-wrap: wrap; }
  .btn { display: inline-block; padding: 0.85rem 1.75rem; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; transition: all 0.2s; border-radius: 4px; cursor: pointer; border: none; }
  .btn-gold { background: var(--gold); color: var(--white); }
  .btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
  .btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
  .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
  .btn-navy { background: var(--navy); color: var(--white); }
  .btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
  .btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); border-radius: 4px; }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }

  .hero-right {
    background: var(--cream2);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem;
    gap: 2.5rem;
  }
  .hero-stat { }
  .hero-stat-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
  .hero-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; display: block; letter-spacing: 0.05em; }
  .hero-divider { border: none; border-top: 1px solid rgba(28,43,74,0.12); }
  .hero-services-list { display: flex; flex-direction: column; gap: 0.75rem; }
  .hero-service-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 400; color: var(--navy); }
  .hero-service-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* ── GOLD RULE ── */
  .gold-rule { display: block; width: 40px; height: 3px; background: var(--gold); margin: 0 auto 1.5rem; }
  .gold-rule-left { margin: 0 0 1.5rem; }

  /* ── SECTION BASE ── */
  section { padding: 6rem 3rem; }
  .section-center { text-align: center; }
  .section-tag-mono { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .section-title { font-family: var(--ff-display); font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
  .section-sub { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 520px; margin: 0 auto; }

  /* ── MARQUEE ── */
  .marquee-wrap { background: var(--navy); padding: 0.9rem 0; overflow: hidden; }
  .marquee-track { display: flex; white-space: nowrap; animation: marquee 24s linear infinite; }
  .marquee-item { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: rgba(240,235,225,0.4); padding: 0 2rem; flex-shrink: 0; }
  .marquee-dot { color: var(--gold); opacity: 1 !important; }

  /* ── SERVICES ── */
  #services { background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(28,43,74,0.1); border: 1px solid rgba(28,43,74,0.1); margin-top: 3.5rem; }
  .service-card { background: var(--white); padding: 2rem 1.5rem; position: relative; overflow: hidden; transition: background 0.3s; cursor: default; }
  .service-card::after { content: ''; position: absolute; inset: 0; background: var(--navy); transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.77,0,0.175,1); z-index: 0; }
  .service-card:hover::after { transform: translateY(0); }
  .service-card:hover .svc-num, .service-card:hover .svc-name, .service-card:hover .svc-desc { color: rgba(240,235,225,0.9); }
  .service-card:hover .svc-name { color: var(--white); }
  .service-card > * { position: relative; z-index: 1; }
  .svc-num { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1.5rem; transition: color 0.3s; }
  .svc-icon { font-size: 1.6rem; margin-bottom: 0.85rem; display: block; }
  .svc-name { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; transition: color 0.3s; line-height: 1.2; }
  .svc-desc { font-size: 0.78rem; line-height: 1.65; color: var(--muted); transition: color 0.3s; }

  /* ── AI AUDIT ── */
  #audit { background: var(--cream); }
  .audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
  .audit-features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
  .audit-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--navy); line-height: 1.5; }
  .audit-check { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
  .audit-callout { background: var(--cream2); border-radius: 8px; padding: 1.5rem; margin-top: 1rem; }
  .audit-callout h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
  .audit-callout p { font-size: 0.82rem; line-height: 1.65; color: var(--muted); }
  .audit-card { background: var(--navy2); border-radius: 12px; overflow: hidden; }
  .audit-card-header { background: var(--navy); padding: 1rem 1.5rem; text-align: center; }
  .audit-card-header p { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,235,225,0.5); }
  .audit-card-body { padding: 2rem 1.5rem; text-align: center; }
  .audit-price { font-family: var(--ff-display); font-size: 4rem; font-weight: 700; color: var(--white); line-height: 1; }
  .audit-price sup { font-size: 1.5rem; vertical-align: super; }
  .audit-price-label { font-size: 0.78rem; color: rgba(240,235,225,0.4); margin-top: 0.35rem; letter-spacing: 0.08em; }
  .audit-btn { display: block; background: var(--gold); color: var(--white); text-align: center; padding: 1rem; font-family: var(--ff-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; border-radius: 6px; margin: 1.5rem 0 0.75rem; transition: background 0.2s; }
  .audit-btn:hover { background: var(--gold-lt); }
  .audit-note { font-size: 0.75rem; color: rgba(240,235,225,0.4); text-align: center; line-height: 1.5; }

  /* ── PUBLISHING PACKAGES ── */
  #publishing { background: var(--navy2); }
  #publishing .section-title { color: var(--white); }
  #publishing .section-sub { color: rgba(240,235,225,0.55); }
  .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
  .pkg-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 2rem 1.75rem; transition: border-color 0.3s; }
  .pkg-card:hover { border-color: rgba(196,154,42,0.4); }
  .pkg-card.featured { background: rgba(196,154,42,0.08); border-color: var(--gold); }
  .pkg-badge { display: inline-block; font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.75rem; background: var(--gold); color: var(--white); border-radius: 3px; margin-bottom: 1.25rem; }
  .pkg-name { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
  .pkg-price { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
  .pkg-price span { font-size: 1rem; font-family: var(--ff-body); font-weight: 300; color: rgba(240,235,225,0.45); }
  .pkg-sub { font-size: 0.75rem; color: rgba(240,235,225,0.4); margin: 0.35rem 0 1.5rem; letter-spacing: 0.05em; }
  .pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
  .pkg-feature { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.8rem; color: rgba(240,235,225,0.7); margin-bottom: 0.65rem; line-height: 1.45; }
  .pkg-check { color: var(--gold); flex-shrink: 0; }
  .pkg-x { color: rgba(255,255,255,0.2); flex-shrink: 0; }
  .pkg-cta { display: block; text-align: center; margin-top: 1.75rem; padding: 0.85rem; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: all 0.2s; }
  .pkg-cta:hover { background: var(--gold); border-color: var(--gold); }
  .pkg-card.featured .pkg-cta { background: var(--gold); border-color: var(--gold); }
  .pkg-card.featured .pkg-cta:hover { background: var(--gold-lt); }
  .pkg-note { text-align: center; margin-top: 1.5rem; font-size: 0.75rem; color: rgba(240,235,225,0.3); letter-spacing: 0.05em; }

  /* ── AI INSIGHTS ── */
  #insights { background: var(--cream); }
  .insights-header { text-align: center; margin-bottom: 3.5rem; }
  .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .insight-card { background: var(--white); border-radius: 10px; padding: 1.75rem; display: flex; flex-direction: column; border: 1px solid rgba(28,43,74,0.07); transition: box-shadow 0.3s, transform 0.3s; }
  .insight-card:hover { box-shadow: 0 8px 32px rgba(28,43,74,0.1); transform: translateY(-3px); }
  .insight-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .insight-tag { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--cream2); color: var(--muted); padding: 0.3rem 0.65rem; border-radius: 3px; }
  .insight-date { font-size: 0.72rem; color: var(--muted); }
  .insight-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 0.75rem; }
  .insight-excerpt { font-size: 0.82rem; line-height: 1.65; color: var(--muted); flex: 1; margin-bottom: 1.25rem; }
  .insight-btn { display: block; background: var(--gold); color: var(--white); text-align: center; padding: 0.7rem 1rem; font-size: 0.8rem; font-weight: 500; text-decoration: none; border-radius: 4px; transition: background 0.2s; }
  .insight-btn:hover { background: var(--gold-lt); }
  .insights-cta { background: var(--navy); margin-top: 4rem; padding: 3.5rem; border-radius: 12px; text-align: center; }
  .insights-cta h3 { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
  .insights-cta p { font-size: 0.9rem; color: rgba(240,235,225,0.6); margin-bottom: 1.5rem; }

  /* ── AFFILIATE TOOLS ── */
  #tools { background: var(--white); }
  .tools-category { margin-bottom: 3rem; }
  .tools-category-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
  .tools-category-title::after { content: ''; flex: 1; height: 1px; background: rgba(28,43,74,0.1); }
  .tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .tool-card { background: var(--cream); border-radius: 8px; padding: 1.5rem; border: 1px solid rgba(28,43,74,0.07); transition: border-color 0.2s; }
  .tool-card:hover { border-color: var(--gold); }
  .tool-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
  .tool-desc { font-size: 0.8rem; line-height: 1.6; color: var(--muted); margin-bottom: 1rem; }
  .tool-btn { display: block; background: var(--gold); color: var(--white); text-align: center; padding: 0.65rem 1rem; font-size: 0.78rem; font-weight: 500; text-decoration: none; border-radius: 4px; transition: background 0.2s; }
  .tool-btn:hover { background: var(--gold-lt); }

  /* ── PROCESS ── */
  #process { background: var(--cream2); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; border: 1px solid rgba(28,43,74,0.1); }
  .process-step { padding: 2.5rem 2rem; border-right: 1px solid rgba(28,43,74,0.1); }
  .process-step:last-child { border-right: none; }
  .step-num { font-family: var(--ff-display); font-size: 3.5rem; font-weight: 700; color: rgba(28,43,74,0.08); line-height: 1; margin-bottom: 1rem; }
  .step-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
  .step-desc { font-size: 0.8rem; line-height: 1.65; color: var(--muted); }

  /* ── ABOUT ── */
  .about-strip { background: var(--navy); padding: 5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-strip .section-tag-mono { color: rgba(196,154,42,0.8); }
  .about-strip .section-title { color: var(--white); }
  .about-strip p { font-size: 0.95rem; line-height: 1.8; color: rgba(240,235,225,0.65); margin-bottom: 1.25rem; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-stat-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--white); display: block; line-height: 1; }
  .about-stat-label { font-size: 0.78rem; color: rgba(240,235,225,0.45); margin-top: 0.3rem; display: block; }

  /* ── CONTACT ── */
  #contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; }
  .contact-info p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }
  .contact-detail { margin-bottom: 1rem; }
  .contact-detail strong { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
  .contact-detail a, .contact-detail span { font-size: 0.9rem; color: var(--navy); text-decoration: none; }
  .contact-detail a:hover { color: var(--gold); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--white); border: 1px solid rgba(28,43,74,0.15);
    padding: 0.75rem 1rem; font-family: var(--ff-body); font-size: 0.88rem;
    color: var(--navy); outline: none; transition: border-color 0.2s;
    border-radius: 4px; appearance: none; width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-submit { background: var(--navy); color: var(--white); border: none; padding: 1rem 2rem; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; align-self: flex-start; border-radius: 4px; }
  .form-submit:hover { background: var(--gold); }

  /* ── FOOTER ── */
  footer { background: var(--navy2); color: var(--white); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; }
  .footer-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.78rem; color: rgba(240,235,225,0.35); margin-top: 0.35rem; }
  .footer-links h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,225,0.4); margin-bottom: 1rem; }
  .footer-links a { display: block; font-size: 0.82rem; color: rgba(240,235,225,0.6); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy { font-size: 0.72rem; color: rgba(240,235,225,0.25); margin-top: 0.5rem; }

  /* ── FAQ ── */
  .faq-item { border-bottom: 1px solid rgba(28,43,74,0.08); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-family: var(--ff-body); font-size: 0.95rem; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; line-height: 1.4; }
  .faq-q:hover { color: var(--gold); }
  .faq-arrow { font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
  .faq-q.open .faq-arrow { transform: rotate(45deg); }
  .faq-a { font-size: 0.88rem; line-height: 1.8; color: var(--muted); padding: 0 0 1.25rem; display: none; }
  .faq-a.open { display: block; }

  /* ── EMAIL POPUP ── */
  .popup-overlay { position: fixed; inset: 0; background: rgba(20,32,58,0.7); z-index: 500; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
  .popup-overlay.show { display: flex; }
  .popup-box { background: var(--white); border-radius: 12px; max-width: 520px; width: 100%; overflow: hidden; position: relative; }
  .popup-top { background: var(--navy2); padding: 2rem 2rem 1.5rem; text-align: center; }
  .popup-badge { display: inline-block; font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 4px 14px; border-radius: 3px; margin-bottom: 1rem; }
  .popup-title { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.5rem; }
  .popup-sub { font-size: 0.82rem; color: rgba(240,235,225,0.6); line-height: 1.6; }
  .popup-body { padding: 1.75rem 2rem; }
  .popup-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
  .popup-feat { display: flex; gap: 8px; font-size: 0.82rem; color: var(--navy); line-height: 1.4; }
  .popup-feat-check { color: var(--gold); flex-shrink: 0; }
  .popup-form { display: flex; flex-direction: column; gap: 10px; }
  .popup-input { font-family: var(--ff-body); font-size: 0.88rem; color: var(--navy); background: var(--cream); border: 1px solid rgba(28,43,74,0.15); border-radius: 6px; padding: 0.75rem 1rem; width: 100%; outline: none; transition: border-color 0.2s; }
  .popup-input:focus { border-color: var(--gold); }
  .popup-submit { background: var(--gold); color: var(--white); border: none; border-radius: 6px; padding: 0.85rem; font-family: var(--ff-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; cursor: pointer; transition: background 0.2s; }
  .popup-submit:hover { background: var(--gold-lt); }
  .popup-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 8px; }
  .popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.4rem; color: rgba(240,235,225,0.5); cursor: pointer; line-height: 1; padding: 4px; transition: color 0.2s; }
  .popup-close:hover { color: var(--white); }
  .popup-success { text-align: center; padding: 1rem 0 0.5rem; }
  .popup-success h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
  .popup-success p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── MOBILE ── */
  @media (max-width: 960px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; }
    .hero-left, .hero-right { padding: 4rem 1.5rem; }
    .audit-grid, .contact-grid, #about .reveal { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid, .insights-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { border-bottom: 1px solid rgba(28,43,74,0.1); }
    .tools-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; }
    section { padding: 4rem 1.5rem; }
  }

/* ── Web App Panel Styles ───────────────────────────── */

.wa-tab { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500; padding: 0.55rem 1.25rem; border: 1px solid rgba(28,43,74,0.18); border-radius: 20px; background: var(--white); color: var(--muted); cursor: pointer; transition: all 0.2s; }
    .wa-tab:hover { border-color: var(--gold); color: var(--navy); }
    .wa-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .wa-panel { display: none; margin-top: 2rem; border: 1px solid rgba(28,43,74,0.08); border-radius: 12px; padding: 2.5rem; background: var(--cream); }
    .wa-panel.active { display: block; }
    .wa-panel-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
    .wa-panel-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; border-bottom: 1px solid rgba(28,43,74,0.08); padding-bottom: 1.25rem; }

    /* Shared webapp styles — all scoped within .wa-panel */
    .wa-panel input[type=text], .wa-panel input[type=email], .wa-panel input[type=date],
    .wa-panel select, .wa-panel textarea {
      font-family: var(--ff-body); font-size: 0.85rem; color: var(--navy);
      background: var(--white); border: 1px solid rgba(28,43,74,0.15);
      border-radius: 6px; padding: 0.7rem 0.9rem; width: 100%; outline: none;
      appearance: none; transition: border-color 0.2s;
    }
    .wa-panel input:focus, .wa-panel select:focus, .wa-panel textarea:focus { border-color: var(--gold); }
    .wa-panel textarea { height: 80px; resize: vertical; }
    .wa-panel label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
    .wa-grp { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
    .wa-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .wa-btn { font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500; padding: 0.75rem 1.5rem; background: var(--navy); color: var(--white); border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
    .wa-btn:hover { background: var(--gold); }
    .wa-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .wa-divider { border: none; border-top: 1px solid rgba(28,43,74,0.08); margin: 1.25rem 0; }
    .wa-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
    .wa-chip { padding: 6px 13px; border: 1px solid rgba(28,43,74,0.15); border-radius: 16px; font-size: 0.78rem; color: var(--muted); cursor: pointer; transition: all 0.2s; background: var(--white); font-family: var(--ff-body); }
    .wa-chip:hover { border-color: var(--gold); color: var(--navy); }
    .wa-chip.on { background: var(--gold); border-color: var(--gold); color: var(--white); }
    .wa-result-box { background: var(--white); border: 1px solid rgba(28,43,74,0.1); border-radius: 8px; padding: 1.25rem; margin-top: 1.25rem; }
    .wa-result-box h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
    .wa-result-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; display: block; }
    .wa-feat { display: flex; gap: 8px; font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; line-height: 1.4; }
    .wa-feat-check { color: var(--gold); flex-shrink: 0; }
    .wa-restart { font-size: 0.75rem; color: var(--muted); cursor: pointer; background: none; border: none; text-decoration: underline; font-family: var(--ff-body); margin-top: 0.75rem; }
    .wa-cta-link { font-size: 0.8rem; color: var(--gold); font-weight: 500; text-decoration: none; }
    .wa-cta-link:hover { text-decoration: underline; }
    .wa-progress-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
    .wa-bar-bg { flex: 1; height: 3px; background: rgba(28,43,74,0.1); border-radius: 2px; }
    .wa-bar-fill { height: 3px; background: var(--gold); border-radius: 2px; transition: width 0.4s; }
    .wa-q { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 1.25rem; line-height: 1.4; font-family: var(--ff-body); }
    .wa-opt { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border: 1px solid rgba(28,43,74,0.12); border-radius: 8px; cursor: pointer; transition: all 0.2s; background: var(--white); margin-bottom: 8px; }
    .wa-opt:hover { border-color: var(--gold); }
    .wa-opt.sel { border-color: var(--gold); background: #FDF6E7; }
    .wa-opt-letter { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(28,43,74,0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: var(--muted); flex-shrink: 0; transition: all 0.2s; }
    .wa-opt.sel .wa-opt-letter { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .wa-opt-text { font-size: 0.85rem; color: var(--navy); line-height: 1.5; padding-top: 1px; }
    .wa-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
    .wa-nav-btn { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500; padding: 8px 18px; border: 1px solid rgba(28,43,74,0.2); border-radius: 6px; background: var(--white); color: var(--navy); cursor: pointer; transition: all 0.2s; }
    .wa-nav-btn:hover { background: var(--cream2); }
    .wa-nav-btn.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .wa-nav-btn.primary:hover { background: var(--gold); border-color: var(--gold); }
    .wa-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .wa-price { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
    .wa-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .wa-mini-card { border: 1px solid rgba(28,43,74,0.1); border-radius: 8px; padding: 1rem; background: var(--white); }
    .wa-mini-card.best { border-color: var(--gold); border-width: 2px; }
    .wa-mini-card-name { font-size: 0.78rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
    .wa-mini-card-price { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
    .wa-mini-card-note { font-size: 0.7rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }
    .wa-badge { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; background: #FDF6E7; color: #7A5C0A; border-radius: 4px; margin-bottom: 6px; }
    .wa-tool-card { border: 1px solid rgba(28,43,74,0.1); border-radius: 8px; padding: 1rem 1.25rem; background: var(--white); margin-bottom: 10px; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .wa-tool-name { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
    .wa-tool-tag { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
    .wa-tool-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin-top: 4px; }
    .wa-tool-link { font-size: 0.75rem; font-weight: 500; color: var(--gold); border: 1px solid var(--gold); padding: 5px 12px; border-radius: 4px; text-decoration: none; transition: all 0.2s; white-space: nowrap; align-self: flex-start; }
    .wa-tool-link:hover { background: var(--gold); color: var(--white); }
    .wa-title-card { border: 1px solid rgba(28,43,74,0.1); border-radius: 8px; padding: 1rem 1.25rem; background: var(--white); margin-bottom: 8px; }
    .wa-title-main { font-size: 0.95rem; font-weight: 500; color: var(--navy); line-height: 1.3; }
    .wa-title-sub { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 3px; }
    .wa-title-style { font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-top: 5px; }
    .wa-timeline-item { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(28,43,74,0.07); }
    .wa-timeline-item:last-child { border-bottom: none; }
    .wa-timeline-date { font-size: 0.7rem; font-weight: 500; color: var(--muted); min-width: 90px; padding-top: 2px; }
    .wa-timeline-task { font-size: 0.82rem; color: var(--navy); line-height: 1.5; }
    .wa-timeline-note { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
    .wa-phase-title { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin: 1rem 0 6px; }
    .wa-sum { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; text-align: center; background: var(--cream2); border-radius: 8px; padding: 1rem; margin-bottom: 1.25rem; }
    .wa-sum-num { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
    .wa-sum-label { font-size: 0.68rem; color: var(--muted); }
    @media(max-width:700px){ .wa-row2{grid-template-columns:1fr;} .wa-card-grid{grid-template-columns:1fr;} .wa-sum{grid-template-columns:1fr 1fr;} }