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

  :root {
    --navy: #0D1952;
    --navy-mid: #162266;
    --navy-light: #1E2D7A;
    --gold: #1E7FFF;
    --gold-light: #5AA3FF;
    --gold-dim: #1565C0;
    --cream: #F4F7FF;
    --cream-dark: #E3ECFF;
    --white: #FFFFFF;
    --text-dark: #0D1952;
    --text-mid: #2C3E6B;
    --text-muted: #5A6E9A;
    --border: rgba(13,25,82,0.12);
    --border-gold: rgba(30,127,255,0.3);
    --success: #2A7A4E;
    --warning: #8B5E0A;
    --danger: #8B2424;
    --info: #0D1952;
    --r: 6px;
    --r-lg: 12px;
    --shadow: 0 2px 20px rgba(13,25,82,0.10);
    --shadow-lg: 0 8px 40px rgba(13,25,82,0.18);
  }

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); font-size: 15px; line-height: 1.65; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
img, svg { max-width: 100%; height: auto; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy); border-bottom: 1px solid rgba(30,127,255,0.2);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem; height: 64px;
  }
  .logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
  .logo-shield {
    width: 34px; height: 34px; background: var(--gold);
    clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
    display: flex; align-items: center; justify-content: center; position: relative;
  }
  .logo-shield::after {
    content: 'G'; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
    color: var(--navy); position: absolute;
  }
  .logo-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); letter-spacing: 0.5px; }
  .logo-name span { color: #1E7FFF; }
  .nav-links { display: flex; gap: 2.5rem; }
  .nav-links a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.7); text-decoration: none; cursor: pointer; letter-spacing: 0.3px; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-right { display: flex; gap: 10px; align-items: center; }

  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.2s;
    border-radius: 1px;
  }

  .btn-ghost { background: transparent; border: 1px solid rgba(30,127,255,0.5); color: var(--gold); font-size: 13px; padding: 12px 18px; min-height: 44px; border-radius: var(--r); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
  .btn-ghost:hover { background: rgba(30,127,255,0.1); }
  .btn-gold { background: var(--gold); border: none; color: #fff; font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: var(--r); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
  .btn-gold:hover { background: var(--gold-light); }

  /* ── PAGES ── */
  .page { display: none; animation: fadeIn 0.25s ease; }
  .page.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  /* ── HOME ── */
  .hero {
    background: var(--navy);
    padding: 7rem 3rem 6rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,127,255,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner { max-width: 760px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(30,127,255,0.12); border: 1px solid var(--border-gold);
    color: #1E7FFF; font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 2rem;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1E7FFF; display: block; }
  .hero h1 { font-size: 54px; color: var(--white); margin-bottom: 1.5rem; font-weight: 500; }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.75; }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-hero { background: var(--gold); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: var(--r); border: none; cursor: pointer; transition: all 0.2s; }
  .btn-hero:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-hero-outline { background: transparent; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 12px 28px; border-radius: var(--r); border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; }
  .btn-hero-outline:hover { border-color: rgba(255,255,255,0.5); }

  .stats-strip {
    background: var(--navy-mid); border-top: 1px solid rgba(30,127,255,0.15);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item { padding: 2rem; text-align: center; border-right: 1px solid rgba(30,127,255,0.1); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.3px; }

  .section { padding: 5rem 3rem; }
  .section-alt { background: var(--white); }
  .section-dark { background: var(--navy); }
  .section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #1E7FFF; margin-bottom: 10px; }
  .section-title { font-size: 34px; color: var(--text-dark); margin-bottom: 1rem; }
  .section-title.light { color: var(--white); }
  .section-sub { font-size: 15px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
  .section-sub.light { color: rgba(255,255,255,0.6); }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
  .svc-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 2rem; transition: all 0.25s;
    position: relative; overflow: hidden;
  }
  .svc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: #1E7FFF; transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-icon { width: 48px; height: 48px; border-radius: var(--r); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
  .svc-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-dark); }
  .svc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 13px; font-weight: 500; color: #1565C0; cursor: pointer; text-decoration: none; }
  .svc-link:hover { color: #1E7FFF; }

  .process-section { max-width: 720px; }
  .process-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
  .process-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; position: relative; }
  .process-step:not(:last-child)::before {
    content: ''; position: absolute; left: 29px; top: 44px; bottom: 0;
    width: 1px; background: rgba(30,127,255,0.3);
  }
  .step-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); border: 2px solid #1E7FFF;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 16px; color: #1E7FFF; flex-shrink: 0;
  }
  .step-content h4 { font-size: 16px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
  .step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

  /* Testimonial */
  .testimonial-block {
    background: var(--navy); border-radius: var(--r-lg);
    padding: 3rem; margin-top: 4rem;
    border: 1px solid rgba(30,127,255,0.2);
    display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
  }
  .quote-mark { font-family: 'Playfair Display', serif; font-size: 80px; color: #1E7FFF; line-height: 0.7; padding-top: 0.5rem; }
  .testimonial-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); font-style: italic; line-height: 1.6; margin-bottom: 1rem; }
  .testimonial-attr { font-size: 13px; color: rgba(255,255,255,0.5); }
  .testimonial-attr strong { color: #5AA3FF; font-weight: 500; }

  /* CTA band */
  .cta-band {
    background: #1E7FFF; padding: 4rem 3rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  }
  .cta-band h2 { font-size: 30px; color: #fff; max-width: 480px; }
  .btn-navy { background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: var(--r); border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
  .btn-navy:hover { background: var(--navy-mid); }

  /* ── SERVICES PAGE ── */
  .page-hero {
    background: var(--navy); padding: 5rem 3rem 4rem;
  }
  .page-hero h1 { font-size: 44px; color: var(--white); margin-bottom: 1rem; }
  .page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.75; }

  .service-detail { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
  .service-detail:last-of-type { border-bottom: none; }
  .service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .service-detail-inner.flip { direction: rtl; }
  .service-detail-inner.flip > * { direction: ltr; }
  .sd-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
  .sd-title { font-size: 32px; color: var(--text-dark); margin-bottom: 1rem; }
  .sd-body { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
  .sd-steps { display: flex; flex-direction: column; gap: 12px; }
  .sd-step { display: flex; gap: 12px; align-items: flex-start; }
  .sd-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .sd-step-text h5 { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
  .sd-step-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .sd-visual {
    background: var(--navy); border-radius: var(--r-lg);
    padding: 2.5rem; border: 1px solid rgba(30,127,255,0.2);
  }
  .sd-visual-title { font-size: 13px; font-weight: 500; color: var(--gold); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
  .sd-stat { margin-bottom: 1.5rem; }
  .sd-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
  .sd-bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; }
  .sd-bar-fill { height: 100%; border-radius: 3px; background: var(--gold); }
  .sd-stat-val { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-top: 4px; }

  /* ── PRICING PAGE ── */
  .pricing-intro { padding: 5rem 3rem 0; text-align: center; }
  .pricing-intro .section-title { margin: 0 auto 1rem; }
  .pricing-intro .section-sub { margin: 0 auto 3rem; text-align: center; }
  .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 3rem 3rem 5rem; }
  .plan {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow 0.25s;
  }
  .plan:hover { box-shadow: var(--shadow-lg); }
  .plan.highlighted { border: 2px solid #1E7FFF; }
  .plan-header { padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border); }
  .plan-header.dark { background: var(--navy); }
  .plan-tag { display: inline-block; background: #1E7FFF; color: #fff; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 10px; margin-bottom: 10px; }
  .plan-name { font-size: 22px; color: var(--text-dark); margin-bottom: 6px; }
  .plan-name.light { color: var(--white); }
  .plan-price-row { display: flex; align-items: baseline; gap: 4px; margin: 12px 0 6px; }
  .plan-dollar { font-size: 20px; color: var(--text-muted); font-weight: 300; }
  .plan-amount { font-family: 'Playfair Display', serif; font-size: 44px; color: var(--text-dark); }
  .plan-amount.light { color: var(--white); }
  .plan-period { font-size: 13px; color: var(--text-muted); }
  .plan-period.light { color: rgba(255,255,255,0.5); }
  .plan-validity { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-style: italic; }
  .plan-validity.light { color: rgba(255,255,255,0.45); }
  .plan-body { padding: 1.5rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
  .plan-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
  .plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
  .feat-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(42,122,78,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
  .plan-cta { margin-top: 2rem; }
  .btn-plan { width: 100%; padding: 12px; border-radius: var(--r); border: 1.5px solid var(--navy); background: transparent; color: var(--navy); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
  .btn-plan:hover { background: var(--navy); color: var(--white); }
  .btn-plan.gold { background: #1E7FFF; border-color: #1E7FFF; color: #fff; }
  .btn-plan.gold:hover { background: #5AA3FF; border-color: #5AA3FF; }

  .custom-band {
    background: var(--navy-mid); margin: 0 3rem 5rem;
    border-radius: var(--r-lg); padding: 3rem;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
    border: 1px solid rgba(30,127,255,0.25);
  }
  .custom-band h3 { font-size: 26px; color: var(--white); margin-bottom: 8px; }
  .custom-band p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 480px; }

  .compare-table { margin: 0 3rem 5rem; }
  .compare-table h3 { font-size: 26px; margin-bottom: 1.5rem; }
  table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
  th { padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); background: var(--cream); border-bottom: 1px solid var(--border); }
  td { padding: 14px 20px; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--border); vertical-align: middle; }
  tr:last-child td { border-bottom: none; }
  .check-yes { color: var(--success); font-size: 16px; }
  .check-no { color: rgba(0,0,0,0.2); font-size: 16px; }
  .td-plan { font-weight: 500; color: var(--text-dark); font-size: 14px; }

  /* ── CONTACT PAGE ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
  .contact-left { background: var(--navy); padding: 5rem 3rem; }
  .contact-left h2 { font-size: 36px; color: var(--white); margin-bottom: 1rem; }
  .contact-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 2.5rem; }
  .contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
  .contact-icon { width: 36px; height: 36px; border-radius: var(--r); background: rgba(30,127,255,0.15); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-family: 'DM Sans', sans-serif; margin-bottom: 2px; }
  .contact-detail p { font-size: 14px; color: rgba(255,255,255,0.7); }
  .contact-right { background: var(--cream); padding: 5rem 3rem; }
  .contact-right h3 { font-size: 26px; margin-bottom: 0.5rem; }
  .contact-right p.sub { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
  .form-group { margin-bottom: 1.25rem; }
  label { display: block; font-size: 12px; font-weight: 500; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
  input[type=text], input[type=email], select, textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border);
    border-radius: var(--r); background: var(--white); color: var(--text-dark);
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    transition: border-color 0.2s; outline: none;
  }
  input[type=text]:focus, input[type=email]:focus, select:focus, textarea:focus { border-color: var(--gold); }
  textarea { resize: vertical; min-height: 120px; }
  select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7E91' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-submit { background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; padding: 13px 28px; border-radius: var(--r); border: none; cursor: pointer; width: 100%; margin-top: 0.5rem; transition: background 0.2s; }
  .form-submit:hover { background: var(--navy-mid); }
  .form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }

  /* ── DASHBOARD ── */
  .dash-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 64px); }
  .dash-sidebar { background: var(--navy); padding: 1.5rem 0; border-right: 1px solid rgba(30,127,255,0.12); }
  .sidebar-section { margin-bottom: 2rem; }
  .sidebar-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); font-weight: 500; padding: 0 1.25rem; margin-bottom: 6px; }
  .sidebar-link {
    display: flex; align-items: center; gap: 10px; padding: 9px 1.25rem;
    font-size: 13px; color: rgba(255,255,255,0.6); cursor: pointer;
    transition: all 0.15s; border-left: 2px solid transparent;
  }
  .sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
  .sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(30,127,255,0.08); }
  .sidebar-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.7; }
  .sidebar-link.active svg { opacity: 1; }
  .dash-main { background: var(--cream); overflow-y: auto; }
  .dash-topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
  .dash-topbar h2 { font-size: 20px; color: var(--text-dark); }
  .dash-topbar p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
  .dash-content { padding: 1.5rem 2rem; }
  .metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 1.5rem; }
  .metric-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; }
  .metric-card .m-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
  .metric-card .m-val { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--text-dark); }
  .metric-card .m-val.gold { color: var(--gold-dim); }
  .metric-card .m-val.green { color: var(--success); }
  .metric-card .m-val.red { color: var(--danger); }
  .metric-card .m-delta { font-size: 11px; margin-top: 4px; }
  .metric-card .m-delta.up { color: var(--success); }
  .metric-card .m-delta.warn { color: var(--warning); }
  .two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; margin-bottom: 14px; }
  .dash-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
  .dc-head { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
  .dc-head h3 { font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; color: var(--text-dark); }
  .dc-head-actions { display: flex; gap: 8px; }
  .small-btn { font-size: 11px; padding: 5px 12px; border-radius: var(--r); border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s; }
  .small-btn:hover { border-color: var(--navy); color: var(--navy); }
  .small-btn.gold { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 500; }
  .sub-table { width: 100%; border-collapse: collapse; }
  .sub-table th { padding: 9px 1.25rem; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); background: var(--cream); text-align: left; border-bottom: 1px solid var(--border); }
  .sub-table td { padding: 11px 1.25rem; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--border); vertical-align: middle; }
  .sub-table tr:last-child td { border-bottom: none; }
  .sub-table tr:hover td { background: rgba(235,242,255,0.7); }
  .client-name { font-weight: 500; color: var(--text-dark); font-size: 13px; }
  .client-email { font-size: 11px; color: var(--text-muted); }
  .badge { display: inline-block; font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 10px; letter-spacing: 0.3px; }
  .badge-active { background: rgba(42,122,78,0.1); color: #1A6038; }
  .badge-trial { background: rgba(30,127,255,0.1); color: #1565C0; }
  .badge-paused { background: rgba(107,126,145,0.12); color: var(--text-muted); }
  .badge-cancelled { background: rgba(139,36,36,0.1); color: var(--danger); }
  .alert-row { display: flex; gap: 12px; padding: 12px 1.25rem; border-bottom: 1px solid var(--border); align-items: flex-start; }
  .alert-row:last-child { border-bottom: none; }
  .alert-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
  .dot-red { background: #E24B4A; }
  .dot-amber { background: #EF9F27; }
  .dot-blue { background: #378ADD; }
  .alert-title-d { font-size: 13px; font-weight: 500; color: var(--text-dark); }
  .alert-sub-d { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .revenue-bars { padding: 1.25rem; }
  .rev-row { margin-bottom: 1.25rem; }
  .rev-label-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
  .rev-label-row span:first-child { color: var(--text-muted); }
  .rev-label-row span:last-child { color: var(--text-dark); font-weight: 500; }
  .rev-track { height: 8px; background: var(--cream); border-radius: 4px; }
  .rev-fill { height: 100%; border-radius: 4px; }
  .rev-total { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
  .rev-total-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
  .rev-total-val { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--text-dark); }
  .rev-growth { font-size: 12px; color: var(--success); margin-top: 2px; }
  .ip-table { width: 100%; border-collapse: collapse; }
  .ip-table th { padding: 9px 1.25rem; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); background: var(--cream); text-align: left; border-bottom: 1px solid var(--border); }
  .ip-table td { padding: 11px 1.25rem; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--border); vertical-align: middle; }
  .ip-table tr:last-child td { border-bottom: none; }
  .badge-tm { background: rgba(26,74,122,0.1); color: var(--info); }
  .badge-patent { background: rgba(139,94,10,0.1); color: var(--warning); }
  .badge-copy { background: rgba(42,122,78,0.1); color: var(--success); }

  /* ── FOOTER ── */
  footer { background: var(--navy); border-top: 1px solid rgba(30,127,255,0.15); padding: 4rem 3rem 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-about p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 1rem; max-width: 260px; }
  .footer-col h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; cursor: pointer; transition: color 0.2s; }
  .footer-col a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); max-width: 400px; text-align: right; line-height: 1.5; }

/* ── ACCESSIBILITY & MULTI-PAGE ── */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--gold); color: #fff;
  padding: 8px 16px; z-index: 9999; border-radius: 0 0 var(--r) 0; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav-links a { cursor: pointer; }
.nav-links a.active { color: var(--gold); }
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-card-link:hover .svc-card { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-link:hover .svc-card::before { transform: scaleX(1); }

/* ── PRINT ── */
@media print {
  nav, footer, .cta-band, .btn-hero, .btn-hero-outline { display: none !important; }
  .hero { padding: 2rem 0; }
  body { font-size: 12pt; color: #000; }
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.25rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(30,127,255,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    min-height: 44px;
  }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero h1 { font-size: 36px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .service-detail { padding: 3rem 1.25rem; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.flip { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .dash-second-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .compare-table { margin: 0 1.25rem 3rem; }
  .custom-band { margin: 0 1.25rem 3rem; grid-template-columns: 1fr; }
  .testimonial-block { grid-template-columns: 1fr; }
  .cta-band { padding: 2.5rem 1.25rem; }
  .plans-grid { padding: 2rem 1.25rem 3rem; }
  .pricing-intro { padding: 3rem 1.25rem 0; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .stat-num { font-size: 28px; }
  .section-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .metric-grid { grid-template-columns: 1fr; }
}
