/* =========================================================
   TaxMaster Software — Luxury Design System
   Palette: Royal Blue · Silver · White
   ========================================================= */

:root {
  /* Royal blues */
  --royal-900: #060f33;
  --royal-800: #0a1a52;
  --royal-700: #102a78;
  --royal-600: #1739a0;
  --royal-500: #1e40af;
  --royal-400: #3b5bd9;
  --royal-300: #6f8af0;

  /* Silver / metallic */
  --silver-900: #5b6473;
  --silver-700: #8a93a6;
  --silver-500: #b9c0cc;
  --silver-300: #d8dde6;
  --silver-100: #eef1f6;
  --silver-gradient: linear-gradient(135deg, #f4f6fa 0%, #d8dde6 45%, #b9c0cc 55%, #eef1f6 100%);
  --silver-shine: linear-gradient(120deg, #c8cedb 0%, #ffffff 25%, #aeb6c6 50%, #ffffff 75%, #c8cedb 100%);

  /* Surfaces */
  --white: #ffffff;
  --off-white: #f7f9fc;
  --ink: #0c1530;
  --muted: #5b6478;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(10, 26, 82, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 26, 82, 0.12);
  --shadow-lg: 0 30px 70px rgba(6, 15, 51, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;

  /* Metallic accents for tiers */
  --gold: #c9a24a;
  --gold-deep: #a47e2a;
  --gold-gradient: linear-gradient(135deg, #e7cd88 0%, #c9a24a 40%, #f3e3b1 55%, #a47e2a 100%);
  --platinum: #aeb6c6;
  --platinum-gradient: linear-gradient(135deg, #eef1f6 0%, #c8cedb 45%, #ffffff 55%, #aeb6c6 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.section--tight { padding: 70px 0; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--royal-500);
  background: var(--silver-100);
  border: 1px solid var(--silver-300);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--royal-500); }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; position: relative; }
.section-head h2::after {
  content: ''; display: block; width: 64px; height: 2px; margin: 22px auto 0;
  background: var(--gold-gradient);
}
.section-head p { color: var(--muted); font-size: 1.12rem; }

/* Gold flourish for kicker (exclusive feel) */
.kicker::before { background: var(--gold) !important; }
.kicker { color: var(--royal-700); }

.text-gradient {
  background: linear-gradient(120deg, var(--royal-400), var(--royal-700));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; padding: 15px 32px; border-radius: 100px;
  cursor: pointer; border: none; transition: all .28s cubic-bezier(.2,.7,.3,1);
  position: relative; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--royal-500), var(--royal-700));
  color: #fff; box-shadow: 0 12px 28px rgba(23, 57, 160, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(23, 57, 160, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn-silver {
  background: var(--silver-gradient); color: var(--royal-800);
  border: 1px solid var(--silver-500); box-shadow: var(--shadow-sm);
}
.btn-silver:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 40px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease; padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85); backdrop-filter: blur(18px);
  box-shadow: 0 6px 30px rgba(10,26,82,.08); padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--white); transition: color .3s; }
.scrolled .brand { color: var(--royal-800); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--royal-500), var(--royal-800));
  color: #fff; font-weight: 800; font-family: var(--font-body); font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(23,57,160,.4); border: 1px solid rgba(255,255,255,.25);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.9); font-weight: 500; font-size: .98rem; transition: color .25s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-6px; left:0; width:0; height:2px; background: var(--royal-400); transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.scrolled .nav-links a { color: var(--silver-900); }
.scrolled .nav-links a:hover { color: var(--royal-600); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.scrolled .nav-toggle span { background: var(--royal-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(59,91,217,.55), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(16,42,120,.6), transparent 55%),
    linear-gradient(160deg, var(--royal-900) 0%, var(--royal-800) 45%, var(--royal-700) 100%);
  color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  pointer-events:none;
}
.hero-orb { position:absolute; border-radius:50%; filter: blur(70px); opacity:.5; pointer-events:none; }
.hero-orb.one { width:380px; height:380px; background: var(--royal-400); top:-60px; right:8%; }
.hero-orb.two { width:300px; height:300px; background:#8aa0ff; bottom:-40px; left:10%; opacity:.35; }
.hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items:center; position:relative; z-index:2; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); margin-bottom: 24px; }
.hero h1 .shine {
  background: var(--silver-shine); background-size: 200% auto;
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 40px; }
.hero-stats { display:flex; gap:40px; flex-wrap:wrap; }
.hero-stats .stat strong { display:block; font-family: var(--font-display); font-size: 2rem; color:#fff; }
.hero-stats .stat span { font-size:.86rem; color: rgba(255,255,255,.65); letter-spacing:.03em; }

/* Hero visual card */
.hero-visual { position: relative; }
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.25); border-radius: 24px; padding: 30px;
  backdrop-filter: blur(20px); box-shadow: var(--shadow-lg);
}
.glass-card .gc-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.gc-dot { width:11px; height:11px; border-radius:50%; }
.gc-dots { display:flex; gap:7px; }
.gc-badge { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.7); }
.gc-row { display:flex; align-items:center; justify-content:space-between; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.gc-row:last-child { border-bottom:none; }
.gc-row .lbl { color: rgba(255,255,255,.7); font-size:.92rem; }
.gc-row .val { font-weight:600; color:#fff; }
.gc-pill { background: linear-gradient(135deg, var(--royal-400), var(--royal-600)); padding:5px 14px; border-radius:100px; font-size:.82rem; font-weight:600; }

/* Hero product boxes — side by side, both visible */
.hero-boxes { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 24px 0; }
.hero-boxes .hb { width: 47%; height: auto; filter: drop-shadow(0 26px 44px rgba(0,0,0,.45)); }
.hero-boxes .hb.gold { --r: -6deg; transform: rotate(-6deg); animation: floaty 5s ease-in-out infinite; }
.hero-boxes .hb.platinum { --r: 6deg; transform: rotate(6deg); margin-top: -14px; animation: floaty 5.5s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--r)); } 50% { transform: translateY(-14px) rotate(var(--r)); } }

/* Trust bar */
.trust-bar { background: var(--royal-900); color: rgba(255,255,255,.55); padding: 26px 0; }
.trust-inner { display:flex; align-items:center; justify-content:center; gap:50px; flex-wrap:wrap; font-size:.9rem; letter-spacing:.05em; }
.trust-inner b { color:#fff; font-weight:600; }

/* ---------- Feature cards ---------- */
.grid { display:grid; gap:28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background:#fff; border:1px solid var(--silver-300); border-radius: var(--radius);
  padding: 36px 30px; transition: all .3s; position:relative; overflow:hidden;
}
.feature::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background: linear-gradient(90deg, var(--royal-500), var(--royal-300)); transform: scaleX(0); transform-origin:left; transition: transform .35s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--silver-500); }
.feature:hover::before { transform: scaleX(1); }
.feature-icon {
  width:58px; height:58px; border-radius:15px; display:grid; place-items:center; margin-bottom:22px;
  background: linear-gradient(135deg, var(--silver-100), var(--silver-300));
  border:1px solid var(--silver-300); color: var(--royal-600); font-size:1.5rem;
}
.feature h3 { font-size:1.3rem; margin-bottom:12px; }
.feature p { color: var(--muted); font-size:.98rem; }

/* Section backgrounds */
.bg-soft { background: var(--off-white); }
.bg-silver { background: var(--silver-gradient); }
.bg-royal {
  background: linear-gradient(160deg, var(--royal-900), var(--royal-700));
  color:#fff;
}
.bg-royal .section-head p { color: rgba(255,255,255,.75); }

/* ---------- Pricing ---------- */
.price-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 34px; max-width: 920px; margin: 0 auto; align-items: stretch; }
.price-card {
  background:#fff; border:1px solid var(--silver-300); border-radius: 22px; padding: 44px 38px;
  position:relative; display:flex; flex-direction:column; transition: all .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--royal-500);
  background: linear-gradient(180deg, #fff, var(--off-white));
  box-shadow: var(--shadow-md);
}
.price-badge {
  position:absolute; top:-15px; left:50%; transform:translateX(-50%);
  background: linear-gradient(135deg, var(--royal-500), var(--royal-700)); color:#fff;
  font-size:.74rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  padding:8px 20px; border-radius:100px; box-shadow: 0 8px 20px rgba(23,57,160,.4);
}
.price-name { font-size:1.6rem; margin-bottom:8px; }
.price-tag { display:flex; align-items:baseline; gap:6px; margin: 18px 0 6px; }
.price-tag .amount { font-family: var(--font-display); font-size:3rem; font-weight:700; color: var(--royal-700); }
.price-tag .per { color: var(--muted); font-size:.95rem; }
.price-desc { color: var(--muted); font-size:.96rem; margin-bottom: 26px; padding-bottom: 26px; border-bottom:1px solid var(--silver-300); }
.price-features { list-style:none; margin-bottom: 32px; flex:1; }
.price-features li { display:flex; gap:12px; align-items:flex-start; padding:10px 0; font-size:.97rem; }
.price-features li svg { flex-shrink:0; margin-top:3px; color: var(--royal-500); }
.price-card .btn { width:100%; }

/* ---------- Testimonials ---------- */
.quote-card { background:#fff; border:1px solid var(--silver-300); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color:#e8b923; margin-bottom:14px; letter-spacing:2px; }
.quote-card p { font-size:1.04rem; color: var(--ink); margin-bottom: 22px; font-style: italic; }
.quote-author { display:flex; align-items:center; gap:13px; }
.quote-author .avatar { width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg, var(--royal-400), var(--royal-700)); color:#fff; display:grid; place-items:center; font-weight:700; }
.quote-author .who strong { display:block; font-size:.96rem; }
.quote-author .who span { font-size:.84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(59,91,217,.5), transparent 60%),
    linear-gradient(135deg, var(--royal-800), var(--royal-600));
  border-radius: 28px; padding: 64px 50px; text-align:center; color:#fff; position:relative; overflow:hidden;
}
.cta-band h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom:16px; }
.cta-band p { color: rgba(255,255,255,.8); font-size:1.12rem; max-width:560px; margin:0 auto 32px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--silver-300); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.field { margin-bottom: 20px; }
.field label { display:block; font-size:.88rem; font-weight:600; margin-bottom:8px; color: var(--silver-900); }
.field input, .field select, .field textarea {
  width:100%; padding:14px 16px; border:1px solid var(--silver-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size:1rem; background: var(--off-white); transition: all .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--royal-400); background:#fff; box-shadow: 0 0 0 4px rgba(59,91,217,.12);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(59,91,217,.5), transparent 60%),
    linear-gradient(160deg, var(--royal-900), var(--royal-700));
  color:#fff; padding: 170px 0 90px; text-align:center; position:relative; overflow:hidden;
}
.page-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom:16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size:1.15rem; max-width:620px; margin:0 auto; }

/* ---------- About specifics ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom:20px; }
.split p { color: var(--muted); margin-bottom:16px; font-size:1.04rem; }
.value-list { list-style:none; margin-top:24px; }
.value-list li { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--silver-300); }
.value-list li:last-child { border-bottom:none; }
.value-list .vi { width:40px; height:40px; flex-shrink:0; border-radius:11px; background: linear-gradient(135deg, var(--royal-500), var(--royal-700)); color:#fff; display:grid; place-items:center; }
.value-list .vt strong { display:block; }
.value-list .vt span { color: var(--muted); font-size:.94rem; }

.stat-band { display:grid; grid-template-columns: repeat(4,1fr); gap:30px; text-align:center; }
.stat-band .s strong { font-family: var(--font-display); font-size: 2.8rem; color: var(--royal-600); display:block; }
.stat-band .s span { color: var(--muted); font-size:.95rem; }
.bg-royal .stat-band .s strong { color:#fff; }
.bg-royal .stat-band .s span { color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--royal-900); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap:40px; margin-bottom:48px; }
.footer-brand { display:flex; align-items:center; gap:12px; color:#fff; font-family: var(--font-display); font-size:1.3rem; font-weight:700; margin-bottom:16px; }
.site-footer p { font-size:.94rem; max-width:300px; }
.footer-col h4 { color:#fff; font-family: var(--font-body); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:11px; }
.footer-col a { font-size:.95rem; transition: color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:.86rem; }
.footer-cta input { padding:13px 15px; border-radius: var(--radius-sm); border:1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color:#fff; width:100%; margin-bottom:12px; }
.footer-cta input::placeholder { color: rgba(255,255,255,.5); }

/* ---------- Activity toast (honest social proof) ---------- */
.toast {
  position: fixed; left: 22px; bottom: 22px; z-index: 1500;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--silver-300); border-radius: 14px;
  padding: 13px 18px 13px 14px; box-shadow: var(--shadow-lg); max-width: 330px;
  transform: translateY(140%); opacity: 0; transition: all .5s cubic-bezier(.2,.7,.3,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .ti { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-size: 1.2rem; background: linear-gradient(135deg, var(--royal-500), var(--royal-700)); color: #fff; }
.toast .tt { font-size: .92rem; line-height: 1.35; color: var(--ink); }
.toast .tt b { color: var(--royal-700); }
.toast .tt span { display: block; font-size: .76rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 560px) { .toast { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* Live pulse dot */
.pulse-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #28c840; margin-right: 8px; position: relative; }
.pulse-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #28c840; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }

/* Countdown chip */
.live-strip { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; font-size:.9rem; color: rgba(255,255,255,.85); }
.live-strip .cd { font-family: var(--font-display); font-weight:700; color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: all .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity:1; transform: none; }

/* ---------- Logo in nav/footer ---------- */
.brand {
  background: #fff; padding: 9px 18px; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6,15,51,.20); border: 1px solid rgba(255,255,255,.6);
}
.scrolled .brand { box-shadow: var(--shadow-sm); border-color: var(--silver-300); }
.brand { flex-shrink: 0; }
.brand-logo { height: 26px; width: auto; display: block; }
.footer-logo { height: 40px; width: auto; display: inline-block; background:#fff; padding:10px 16px; border-radius:12px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--royal-800), var(--royal-600), var(--royal-800));
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; padding: 10px 16px; font-weight: 600;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
  transition: transform .3s ease;
}
.announce b { color: #ffd877; }
.site-header { top: 42px; }
@media (max-width: 680px) { .site-header { top: 56px; } }

/* ---------- Marquee strip ---------- */
.marquee { background: var(--royal-900); color: #fff; padding: 22px 0; overflow: hidden; white-space: nowrap; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); }
.marquee-track { display: inline-flex; gap: 50px; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; opacity: .9; display: inline-flex; align-items: center; gap: 50px; }
.marquee span::after { content: '◆'; color: var(--gold); font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Package showcase (home) ---------- */
.pkg-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: stretch; }
.pkg-card {
  position: relative; border-radius: 22px; overflow: hidden; padding: 30px 30px 38px;
  background: #fff; border: 1px solid var(--silver-300); box-shadow: var(--shadow-md);
  transition: all .35s; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; z-index:2; }
.pkg-card.gold::before { background: var(--gold-gradient); }
.pkg-card.platinum::before { background: var(--platinum-gradient); }
.pkg-tier {
  font-size: .74rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 22px;
}
.pkg-card.gold .pkg-tier { background: var(--gold-gradient); color: #4a3a10; border:1px solid var(--gold-deep); }
.pkg-card.platinum .pkg-tier { background: var(--platinum-gradient); color: var(--royal-800); border:1px solid var(--platinum); }
/* Framed full poster */
.pkg-figure {
  width: 100%; max-width: 230px; margin: 0 auto 26px; border-radius: 16px; overflow: hidden;
  background: transparent;
  position: relative;
}
.pkg-figure img { width: 100%; height: auto; display: block; transition: transform .5s; filter: drop-shadow(0 22px 38px rgba(10,26,82,.20)); }
.pkg-card:hover .pkg-figure img { transform: scale(1.03); }
.pkg-card h3 { font-size: 1.8rem; margin-bottom: 8px; }
.pkg-card .pkg-sub { color: var(--muted); font-size: .98rem; margin-bottom: 18px; }
.pkg-price { display:flex; align-items:baseline; gap:6px; justify-content:center; margin-bottom: 24px; }
.pkg-price .amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--royal-700); }
.pkg-price .per { color: var(--muted); font-size:.92rem; }
.pkg-note { font-size:.86rem; color: var(--royal-700); margin: -10px 0 22px; line-height:1.6; }
.pkg-note strong { color: var(--gold-deep); }
.pkg-note span { color: var(--muted); font-size:.82rem; }
.pkg-card .btn { width: 100%; }

/* ---------- Footprint / value columns ---------- */
.footprint { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footprint .fp {
  text-align: center; padding: 38px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
}
.footprint .fp .big { font-family: var(--font-display); font-size: 3rem; color: #fff; line-height:1; margin-bottom: 10px; }
.footprint .fp .big .accent { color: var(--gold); }
.footprint .fp h3 { font-family: var(--font-body); font-size: 1.05rem; color:#fff; margin-bottom: 10px; letter-spacing: .02em; }
.footprint .fp p { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ---------- Steps / how it works ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background:#fff; border:1px solid var(--silver-300); border-radius: var(--radius); transition: all .3s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .num { width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg,var(--royal-500),var(--royal-700)); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-weight:700; font-size:1.2rem; margin-bottom:18px; }
.step h3 { font-size:1.15rem; margin-bottom:10px; }
.step p { color:var(--muted); font-size:.94rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { background:#fff; border:1px solid var(--silver-300); border-radius: var(--radius-sm); margin-bottom:14px; overflow:hidden; }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:20px 24px; cursor:pointer; font-weight:600; font-size:1.05rem; color:var(--royal-800); }
.faq-q .ic { transition: transform .3s; color: var(--royal-500); flex-shrink:0; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .35s ease, padding .35s ease; padding:0 24px; color:var(--muted); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--royal-900); color: rgba(255,255,255,.42); font-size:.78rem; line-height:1.7; padding: 30px 0; border-top:1px solid rgba(255,255,255,.08); }

/* ---------- Founder section ---------- */
.founder { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); display: block; }
.founder-photo .fbadge {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--royal-600), var(--royal-800)); color: #fff;
  padding: 10px 22px; border-radius: 100px; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; box-shadow: var(--shadow-md); white-space: nowrap;
}
.founder h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.founder p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.founder-stats { display: flex; gap: 34px; margin: 24px 0; flex-wrap: wrap; }
.founder-stats .fs strong { font-family: var(--font-display); font-size: 2rem; color: var(--royal-600); display: block; line-height: 1; }
.founder-stats .fs span { font-size: .85rem; color: var(--muted); }
.ventures-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-900); margin-bottom: 12px; }
.ventures { display: flex; flex-wrap: wrap; gap: 10px; }
.ventures .v { font-size: .85rem; font-weight: 600; color: var(--royal-700); background: var(--silver-100); border: 1px solid var(--silver-300); padding: 8px 15px; border-radius: 100px; }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 36px; } .founder-photo { max-width: 420px; margin: 0 auto; } }

/* ---------- PTIN program cards ---------- */
.ptin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 820px; margin: 0 auto; }
.ptin-card { background: #fff; border: 1px solid var(--silver-300); border-radius: 20px; padding: 36px 32px; transition: all .3s; display: flex; flex-direction: column; }
.ptin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--royal-300); }
.ptin-card .pt-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.ptin-card .pt-split { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--royal-700); }
.ptin-card .pt-keep { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--royal-500); background: var(--silver-100); border: 1px solid var(--silver-300); padding: 5px 12px; border-radius: 100px; }
.ptin-card .pt-price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 6px; }
.ptin-card .pt-price .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--ink); }
.ptin-card .pt-price .lbl { color: var(--muted); font-size: .9rem; }
.ptin-card .pt-desc { color: var(--muted); font-size: .94rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--silver-300); }
.ptin-card ul { list-style: none; margin-bottom: 26px; flex: 1; }
.ptin-card ul li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: .95rem; }
.ptin-card ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--royal-500); }
.ptin-card .btn { width: 100%; }
@media (max-width: 680px) { .ptin-grid { grid-template-columns: 1fr; } }

/* ---------- Contact split ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:start; }
.contact-info .ci { display:flex; gap:16px; align-items:flex-start; padding:18px 0; border-bottom:1px solid var(--silver-300); }
.contact-info .ci:last-child { border-bottom:none; }
.contact-info .ci .ic { width:46px; height:46px; border-radius:12px; flex-shrink:0; background: linear-gradient(135deg,var(--royal-500),var(--royal-700)); color:#fff; display:grid; place-items:center; }
.contact-info .ci strong { display:block; font-size:1.02rem; }
.contact-info .ci span { color:var(--muted); font-size:.95rem; }

/* ---------- Responsive ---------- */
/* Collapse nav to hamburger early so the wide logo never overlaps links */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; position: absolute; top: 62px; right: 18px; left: 18px; flex-direction: column; gap: 18px; background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .nav-links.open a { color: var(--ink); }
}

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .footprint, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2,1fr); gap:36px; }
  .hero-visual { display:none; }
  .marquee span { font-size: 1.2rem; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn { display:none; }
  .nav-toggle { display:flex; }
  .nav-links.open { display:flex; position:absolute; top:64px; right:18px; left:18px; flex-direction:column; gap:18px; background:#fff; padding:24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
  .nav-links.open a { color: var(--ink); }
  .grid-3, .grid-4, .grid-2, .price-grid, .form-row, .pkg-showcase, .footprint, .steps { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band { padding: 44px 26px; }
  .hero-stats { gap:26px; }
  .brand-logo { height: 28px; }
}
