/* =========================================================
   Shrimad India Commercial Intelligence — style.css
   Premium dark corporate theme. Charcoal / deep navy / muted gold.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0e1116;            /* deep charcoal */
  --bg-1: #11151c;          /* base */
  --bg-2: #141923;          /* card */
  --bg-3: #1a202b;          /* elevated */
  --line: #1f2530;          /* hairline */
  --line-2: #2a313e;
  --text: #e8e6df;          /* warm ivory */
  --muted: #98a0aa;         /* pewter */
  --muted-2: #6c727d;
  --accent: #b4bac3;        /* pale pewter — replaces gold */
  --accent-2: #d3d6dc;
  --accent-soft: rgba(180, 186, 195, 0.10);
  --danger: #c98480;
  --ok: #93b8a0;
  --warn: #c9b88a;

  /* Legacy aliases (kept so existing rules using --gold keep working) */
  --gold: var(--accent);
  --gold-2: var(--accent-2);
  --gold-soft: var(--accent-soft);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 8px 20px -8px rgba(0,0,0,0.4);
  --maxw: 1200px;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: #111; }

/* Subtle scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0f1a; }
::-webkit-scrollbar-thumb { background: #1f2a44; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2c3a5a; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); line-height: 1.06; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; }
h5 { font-family: var(--sans); font-size: .95rem; margin: 0; letter-spacing: .02em; }
h6 { font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }

p { margin: 0 0 1rem; color: var(--muted); }

.gold { color: var(--text); font-style: italic; font-weight: 500; }
em { font-style: italic; color: var(--text); font-weight: 500; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(180,186,195,.10);
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .03em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--text);
  color: #11151c;
  border-color: var(--text);
}
.btn-gold:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(232,230,223,.25);
}
.btn-ghost {
  color: var(--text);
  border-color: var(--line-2);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
}
.btn.full { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(7, 9, 14, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(7, 9, 14, 0.92);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-mark { color: var(--muted); display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav a {
  font-size: .88rem;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--text);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width .25s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

.nav-cta { padding: 10px 18px; font-size: .85rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  position: relative;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  margin: 6px auto;
  width: 22px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  background: rgba(7,9,14,.98);
  border-top: 1px solid var(--line);
}
.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 18px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-drawer a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.mobile-drawer a.btn { border: 0; margin-top: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 70% 5%, rgba(40, 48, 60, 0.35), transparent 60%),
    radial-gradient(900px 600px at 5% 95%, rgba(180, 186, 195, 0.04), transparent 60%),
    var(--bg);
  padding: 140px 0 80px;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  opacity: .35;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 70%, transparent, rgba(14,17,22,.88) 90%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero-title {
  margin: 18px 0 22px;
  font-weight: 600;
}
.hero-sub {
  max-width: 720px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.trust-row {
  list-style: none;
  margin: 0; padding: 22px 0 0;
  display: flex; flex-wrap: wrap;
  gap: 26px 36px;
  border-top: 1px solid var(--line);
}
.trust-row li {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-row .tick {
  color: var(--muted);
  font-size: .65rem;
  transform: translateY(-1px);
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(80px, 9vw, 130px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { margin-bottom: 18px; }
.lede {
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Problem ---------- */
.problem { background: linear-gradient(180deg, #0e1116 0%, #14181f 100%); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.risk-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.risk-item h4 {
  font-family: var(--sans);
  font-size: .98rem;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: var(--text);
}
.risk-item p { font-size: .88rem; margin: 0; }
.risk-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: var(--bg-3);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)) ,
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 0% 0%, rgba(180,186,195,0.05), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.srv-no {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .25em;
  display: inline-block;
  margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.service-card p { font-size: .9rem; margin: 0; }

/* ---------- Why Us ---------- */
.whyus { background: #0c0f15; }
.compare {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 20px;
  align-items: stretch;
}
.compare-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.compare-col.generic { opacity: .85; }
.compare-col.ours { border-color: var(--line-2); }
.compare-col h4 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.compare-col.ours h4 { color: var(--text); }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .94rem;
  color: var(--text);
}
.compare-col li:last-child { border-bottom: 0; }
.compare-col.generic li::before {
  content: '—  ';
  color: var(--muted-2);
}
.compare-col.ours li::before {
  content: '◆  ';
  color: var(--muted);
  font-size: .7rem;
}
.compare-divider {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .1em;
  position: relative;
}
.compare-divider span {
  width: 46px; height: 46px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
}

/* ---------- How it works ---------- */
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  counter-reset: step;
}
.how-steps li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.how-steps li:hover { border-color: var(--line-2); transform: translateY(-2px); }
.step-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.how-steps h4 {
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.how-steps p { font-size: .88rem; margin: 0; }

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.industry-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
  display: flex; align-items: center;
  position: relative;
}
.industry-card::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 0 4px rgba(180,186,195,.08);
}
.industry-card:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.industry-card h5 { color: var(--text); font-weight: 500; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, #0e1116 0%, #14181f 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}
.price-card.highlight {
  border-color: var(--line-2);
  background:
    radial-gradient(450px 200px at 0% 0%, rgba(180,186,195,0.05), transparent 60%),
    var(--bg-2);
}
.badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--text);
  color: #11151c;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.price-card header { margin-bottom: 18px; }
.price-card h3 { margin-bottom: 14px; font-size: 1.2rem; }
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price .cur {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .15em;
}
.price .amt {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.price .per {
  font-size: .85rem;
  color: var(--muted);
  margin-left: 4px;
}
.price-tag {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.price-card li {
  font-size: .9rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: '✓';
  color: var(--muted);
  font-size: .9rem;
  flex: none;
}
.pricing-foot {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: .85rem;
}

/* ---------- Sample report ---------- */
.report-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.report-meta {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.report-name {
  font-size: 1.5rem;
  margin: 6px 0 4px;
}
.report-sub { color: var(--muted); font-size: .88rem; }
.risk-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rs-ring {
  width: 84px; height: 84px;
  border-radius: 50%;
  background:
    conic-gradient(var(--muted) calc(72% * 1%), rgba(255,255,255,0.06) 0);
  display: grid;
  place-items: center;
  position: relative;
}
.rs-ring::after {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--bg-2);
}
.rs-ring span {
  position: relative;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
}
.rs-meta strong { display: block; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.rs-tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.tag-high { color: var(--text); border-color: var(--line-2); background: rgba(180,186,195,.06); }

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.report-block { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.report-block.wide { grid-column: span 2; }
.report-block h5 {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.kv { list-style: none; padding: 0; margin: 0; }
.kv li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
}
.kv li:last-child { border-bottom: 0; }
.kv b { font-weight: 500; font-size: .85rem; }
.kv b.ok { color: var(--ok); }
.kv b.warn { color: var(--warn); }
.flags { list-style: none; padding: 0; margin: 0; }
.flags li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: .9rem;
  color: var(--text);
  border-bottom: 1px dashed var(--line);
}
.flags li:last-child { border-bottom: 0; }
.flags li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--muted);
  font-size: .7rem;
}

/* ---------- Case insights ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.case-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.case-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.case-no {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.case-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.case-card p { font-size: .9rem; margin: 0; }

/* ---------- Confidentiality ---------- */
.confidentiality { background: #0c0f15; }
.conf-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.conf-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.conf-list li {
  padding: 10px 0;
  color: var(--text);
  font-size: .92rem;
  border-bottom: 1px dashed var(--line);
}
.conf-list li::before { content: '◆  '; color: var(--muted); font-size: .7rem; }

.conf-seal { display: flex; justify-content: center; }
.seal {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(closest-side, rgba(180,186,195,.05), transparent 70%);
  color: var(--text);
  text-align: center;
}
.seal::before {
  content: '';
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
}
.seal-top, .seal-bot {
  position: absolute;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.seal-top { top: 30px; }
.seal-bot { bottom: 30px; }
.seal-mid {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  position: relative;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--text); }
.faq-item p {
  padding: 0 4px 22px;
  margin: 0;
  font-size: .94rem;
  color: var(--muted);
  max-width: 760px;
}

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #0e1116 0%, #14181f 100%); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin: 12px 0 14px; }
.contact-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  align-items: center;
}
.ci-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a:hover { color: var(--text); }

.contact-form,
.modal-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-form .row,
.modal-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label,
.modal-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form label.full,
.modal-form label.full { display: block; margin-bottom: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.modal-form input {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modal-form input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(232,230,223,.08);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin: 14px 0 0;
  font-size: .85rem;
  color: var(--muted);
  min-height: 1.2em;
}
.form-note.success { color: var(--ok); }
.form-note.error { color: var(--danger); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0d12;
  border-top: 1px solid var(--line);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 6px 0; }
.foot-col a { color: var(--muted); font-size: .9rem; }
.foot-col a:hover { color: var(--text); }
.brand-col .brand { margin-bottom: 14px; }
.foot-tag { font-size: .9rem; color: var(--muted); max-width: 340px; }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: .82rem;
}
.foot-bottom .muted { color: var(--muted-2); }

/* ---------- Floating buttons ---------- */
.float-wa, .float-mail {
  position: fixed;
  right: 22px;
  z-index: 40;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.6);
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.float-wa { bottom: 22px; background: #1d6f3e; color: #e8e6df; border-color: #1d6f3e; }
.float-mail { bottom: 22px; }
.float-wa:hover, .float-mail:hover { transform: translateY(-3px); border-color: var(--text); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(2, 4, 8, .72);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--bg-3); color: var(--text); }
.modal-head { margin-bottom: 18px; }
.modal-head h3 { font-size: 1.4rem; margin: 8px 0 8px; }
.modal-lede { color: var(--muted); font-size: .92rem; margin: 0; }

.modal-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin: 18px 0 22px;
}
.mp-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.modal-plan strong { font-family: var(--serif); font-size: 1.2rem; color: var(--text); font-weight: 600; }
.mp-amount { text-align: right; }
.mp-amount .cur { color: var(--muted); font-size: .85rem; letter-spacing: .15em; }

.modal-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-size: .8rem;
  color: var(--muted);
}
.modal-note .lock { color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-cta { display: none; }
  .compare { grid-template-columns: 1fr; }
  .compare-divider { display: none; }
  .conf-wrap { grid-template-columns: 1fr; }
  .conf-seal { order: -1; margin-bottom: 10px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 130px 0 60px; min-height: auto; }
  .trust-row { gap: 12px 24px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .report-grid { grid-template-columns: 1fr; }
  .report-block.wide { grid-column: span 1; }
  .contact-form .row,
  .modal-form .row { grid-template-columns: 1fr; }
  .conf-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 40px; }
  .mobile-drawer.open { display: block; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 480px) {
  .price .amt { font-size: 2.2rem; }
  .modal-card { padding: 24px; }
}
