/* ============================================
   voip.army — shared stylesheet
   Single source of truth for site design.
   ============================================ */

:root {
  --cream: #faf6ec;
  --cream-2: #f3ecd8;
  --cream-3: #ede4cc;
  --white: #ffffff;
  --ink: #1a1410;
  --ink-2: #4a423a;
  --ink-3: #7a716a;
  --line: #e8ddc6;
  --line-soft: #f0e8d2;
  --green: #0d6b52;
  --green-deep: #084736;
  --green-soft: #d8ebe2;
  --coral: #ee5a2f;
  --coral-deep: #c44218;
  --coral-soft: #fde4d8;
  --gold: #d99a2b;
  --gold-soft: #f8e5b8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(44px, 6vw, 76px); }
h2 { font-size: clamp(34px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }
h4 { font-size: 20px; font-weight: 600; }
em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-deep); }

/* ===== PROMO BAR ===== */
.promo {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
}
.promo a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
.promo .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #6ee7b7;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 8px #6ee7b7;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
/* Nav/footer brand: two PNG assets (tower icon + wordmark) shown side by
   side via flex. Using the raw source images guarantees the rendered
   lockup matches the brand exactly — no font drift, no path tracing loss. */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo .logo-icon {
  display: block;
  height: 100%;
  width: auto;
}
.logo .logo-text {
  display: block;
  height: 62%;
  width: auto;
}
.nav-links { display: flex; gap: 32px; list-style: none; font-size: 14.5px; font-weight: 500; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--green); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 2px 0 var(--coral-deep);
}
.btn-primary:hover { background: var(--coral-deep); color: var(--white); transform: translateY(1px); box-shadow: 0 1px 0 var(--coral-deep); }
.btn-secondary { background: var(--green); color: var(--cream); box-shadow: 0 2px 0 #0a553f; }
.btn-secondary:hover { background: #0a553f; color: var(--cream); transform: translateY(1px); box-shadow: 0 1px 0 #0a553f; }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: var(--cream-2); color: var(--ink); }
.btn-outline { color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-green {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 2px 0 var(--green-deep);
}
.btn-green:hover { background: var(--green-deep); color: var(--cream); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* ===== PILLS ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pill.star::before { content: '★'; color: var(--gold); }
.pill.coral { background: var(--coral-soft); color: var(--coral-deep); }
.pill.gold { background: var(--gold-soft); color: var(--gold); }

/* ===== PAGE HEADER (used on subsidiary pages) ===== */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.page-header h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  max-width: 860px;
  margin: 0 auto 22px;
}
.page-header h1 .accent {
  font-style: italic;
  color: var(--green);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-header p {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.page-header .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION HEAD ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--ink-2); line-height: 1.55; }

/* ===== HERO (homepage) ===== */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent {
  font-style: italic;
  color: var(--green);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-sub { font-size: 19px; color: var(--ink-2); margin-bottom: 32px; max-width: 560px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }
.hero-trust { display: flex; gap: 20px; align-items: center; color: var(--ink-3); font-size: 13.5px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 7px; }
.hero-trust .check {
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
}

/* ===== PHONE MOCKUP ===== */
.hero-visual { position: relative; height: 540px; }
.phone-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -25px rgba(60,40,10,0.18);
  overflow: hidden;
}
.phone-card.main {
  width: 300px;
  height: 480px;
  top: 30px;
  right: 20px;
  z-index: 2;
  border-radius: 38px;
  border: 10px solid var(--ink);
  background: var(--ink);
}
/* Dynamic-Island-style pill at top of the phone */
.phone-card.main::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
/* Subtle home-indicator bar inside the screen, near the bottom */
.phone-card.main::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: var(--ink-2);
  opacity: 0.35;
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}
.phone-screen { background: linear-gradient(180deg, var(--cream-2), var(--cream)); height: 100%; padding: 44px 18px 26px; display: flex; flex-direction: column; border-radius: 28px; }
.phone-status { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: var(--ink-2); margin-bottom: 14px; padding: 0 6px; }
.phone-status > :nth-child(2) { display: none; } /* clock would collide with the dynamic island */
.phone-status .sig::before { content: '●●●●'; letter-spacing: 1px; margin-right: 4px; }
.phone-app-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.phone-app-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }
.phone-call { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-bottom: 8px; display: flex; gap: 11px; align-items: center; }
.phone-call.active { background: var(--green-soft); border-color: var(--green); }
.avatar { width: 36px; height: 36px; background: var(--cream-3); border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--ink); font-size: 14px; flex-shrink: 0; }
.phone-call.active .avatar { background: var(--green); color: white; }
.call-info { flex: 1; min-width: 0; }
.call-name { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.call-meta { font-size: 11.5px; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.call-icon { width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: grid; place-items: center; color: white; flex-shrink: 0; }
.call-icon svg { width: 13px; height: 13px; }
.phone-call.active .ring-dot { display: inline-block; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; margin-right: 4px; animation: pulse 1s infinite; }
.phone-card.side { width: 220px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px; z-index: 1; box-shadow: 0 20px 40px -20px rgba(60,40,10,0.14); }
/* Both supporting cards live on the LEFT of the phone so it doesn't cover them. */
.phone-card.side.top { top: 10px; left: 0; transform: rotate(-3deg); }
.phone-card.side.bottom { bottom: 20px; left: 24px; right: auto; transform: rotate(2deg); }
.side-label { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.side-stat { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.side-stat .small { font-size: 16px; color: var(--green); }
.side-desc { font-size: 13px; color: var(--ink-2); }

/* ===== LOGOS ===== */
.logos { padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.logos-label { text-align: center; font-size: 13px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 28px; }
.logo-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; column-gap: 44px; row-gap: 20px; font-family: 'Fraunces', serif; font-style: italic; color: var(--ink-3); opacity: 0.85; }
.brand { font-size: 18px; font-weight: 500; transition: opacity 0.2s, color 0.2s; white-space: nowrap; }
.brand:hover { opacity: 1; color: var(--ink); }
.brand .b-sans { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; letter-spacing: -0.02em; }
@media (max-width: 900px) {
  .logo-row { column-gap: 32px; row-gap: 18px; }
  .brand { font-size: 16px; }
}

/* ===== PILLARS / CARDS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 36px 30px; transition: transform 0.25s, box-shadow 0.25s; }
.pillar-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(60,40,10,0.18); }
.pillar-icon { width: 56px; height: 56px; background: var(--green-soft); border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; color: var(--green); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }

/* ===== STEPS / HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 20px; }
.step { position: relative; }
.step-num { font-family: 'Fraunces', serif; font-size: 60px; font-weight: 400; color: var(--green); line-height: 1; margin-bottom: 18px; font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.step h4 { font-family: 'Fraunces', serif; font-size: 24px; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }

/* ===== FEATURE GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 30px; }
.feature { background: var(--cream); padding: 34px 28px; transition: background 0.2s; }
.feature:hover { background: var(--white); }
.feature-icon { width: 44px; height: 44px; background: var(--coral-soft); color: var(--coral-deep); border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { font-family: 'Fraunces', serif; font-size: 20px; margin-bottom: 8px; color: var(--ink); font-weight: 600; }
.feature p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.feature-icon.green { background: var(--green-soft); color: var(--green); }
.feature-icon.gold { background: var(--gold-soft); color: var(--gold); }

/* ===== INDUSTRY GRID ===== */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; transition: all 0.2s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.industry:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 12px 30px -18px rgba(13,107,82,0.3); }
.industry-icon { width: 40px; height: 40px; background: var(--green-soft); color: var(--green); border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; }
.industry-icon svg { width: 20px; height: 20px; }
.industry h5 { font-family: 'Fraunces', serif; font-size: 17px; margin-bottom: 6px; font-weight: 600; color: var(--ink); }
.industry p { color: var(--ink-3); font-size: 13px; }

/* ===== SAVINGS / SPLIT LAYOUT ===== */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.savings-points { list-style: none; }
.savings-points li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; }
.savings-points li:last-child { border-bottom: none; }
.savings-points .check { width: 22px; height: 22px; background: var(--green); color: white; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.savings-points .check svg { width: 11px; height: 11px; }
.savings-points strong { display: block; color: var(--ink); margin-bottom: 2px; font-size: 16px; }
.savings-points span { color: var(--ink-2); }

/* ===== COMPARE CARD ===== */
.compare { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 36px 32px; box-shadow: 0 30px 60px -30px rgba(60,40,10,0.15); }
.compare-title { text-align: center; font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 4px; }
.compare-sub { text-align: center; color: var(--ink-3); font-size: 13.5px; margin-bottom: 28px; }
.compare-row { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: none; }
.compare-row.highlight { background: var(--green-soft); margin: 0 -32px; padding: 18px 32px; }
.compare-label { font-size: 15px; color: var(--ink-2); }
.compare-label strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; font-family: 'Fraunces', serif; font-size: 17px; }
.compare-row.highlight .compare-label strong { color: var(--green-deep); }
.compare-price { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; color: var(--ink); }
.compare-row.highlight .compare-price { color: var(--green-deep); }
.compare-price .strike { color: var(--ink-3); text-decoration: line-through; font-size: 16px; margin-right: 6px; font-weight: 400; }
.compare-footnote { margin-top: 24px; padding-top: 18px; border-top: 2px solid var(--ink); display: flex; justify-content: space-between; align-items: center; }
.compare-footnote-label { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; }
.compare-savings { background: var(--coral); color: white; padding: 6px 16px; border-radius: 999px; font-weight: 700; font-size: 16px; }

/* ===== TESTIMONIALS ===== */
.test-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 14px; color: var(--ink-2); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; display: flex; flex-direction: column; }
.test-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 16px; }
.test-quote { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.5; color: var(--ink); margin-bottom: 24px; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 600; color: white; font-size: 16px; flex-shrink: 0; }
.test-avatar.a { background: linear-gradient(135deg, #d99a2b, #b67a18); }
.test-avatar.b { background: linear-gradient(135deg, #0d6b52, #084736); }
.test-avatar.c { background: linear-gradient(135deg, #c44218, #8b2e10); }
.test-avatar.d { background: linear-gradient(135deg, #5a4a8a, #3a2a6a); }
.test-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.test-role { font-size: 13px; color: var(--ink-3); }

/* ===== PRICING ===== */
.price-toggle { display: inline-flex; background: var(--cream-2); padding: 4px; border-radius: 999px; margin-top: 24px; border: 1px solid var(--line); }
.price-toggle button { background: transparent; border: none; padding: 9px 22px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 999px; color: var(--ink-2); }
.price-toggle button.active { background: var(--ink); color: var(--cream); }
.price-toggle .save-tag { background: var(--gold-soft); color: var(--gold); padding: 1px 6px; border-radius: 4px; font-size: 10.5px; margin-left: 6px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 36px 30px; display: flex; flex-direction: column; position: relative; }
.plan.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: scale(1.02); box-shadow: 0 30px 60px -25px rgba(26,20,16,0.4); }
.plan.featured h3, .plan.featured .plan-price { color: var(--cream); }
.plan.featured .plan-period, .plan.featured .plan-features li, .plan.featured .plan-desc { color: var(--cream-2); }
.plan.featured .plan-features svg { background: var(--gold); color: var(--ink); }
.badge { position: absolute; top: -12px; right: 24px; background: var(--gold); color: var(--ink); padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.plan-name { font-size: 14px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.plan.featured .plan-name { color: var(--gold); }
.plan h3 { font-size: 26px; margin-bottom: 14px; font-weight: 600; }
.plan-desc { color: var(--ink-2); font-size: 14.5px; margin-bottom: 22px; line-height: 1.5; }
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-currency { font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink-2); }
.plan.featured .plan-currency { color: var(--cream-2); }
.plan-price { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 600; line-height: 1; color: var(--ink); }
.plan-period { font-size: 14px; color: var(--ink-3); margin-bottom: 28px; }
.plan .btn { width: 100%; justify-content: center; margin-bottom: 24px; }
.plan-features { list-style: none; margin-top: auto; }
.plan-features li { padding: 9px 0; font-size: 14.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; }
.plan-features svg { width: 18px; height: 18px; flex-shrink: 0; background: var(--green); color: white; border-radius: 50%; padding: 4px; margin-top: 1px; }
.price-foot { text-align: center; color: var(--ink-3); font-size: 14.5px; }
.price-foot strong { color: var(--ink); font-weight: 600; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.faq-head h2 { margin-bottom: 20px; }
.faq-head p { color: var(--ink-2); font-size: 16px; margin-bottom: 28px; line-height: 1.6; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: none; text-align: left; padding: 22px 0; font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q::after { content: '+'; font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 300; color: var(--ink-2); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 22px; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 100px 0; text-align: center; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 30% 0%, rgba(238,90,47,0.12), transparent 60%), radial-gradient(ellipse 60% 80% at 80% 100%, rgba(13,107,82,0.18), transparent 60%); pointer-events: none; }
.cta-final h2 { color: var(--cream); margin-bottom: 22px; font-size: clamp(38px, 5vw, 64px); position: relative; }
.cta-final h2 em { color: var(--gold); }
.cta-final p { color: var(--cream-2); font-size: 18.5px; max-width: 540px; margin: 0 auto 36px; position: relative; }
.cta-final-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final-trust { position: relative; margin-top: 32px; display: flex; gap: 24px; justify-content: center; color: var(--cream-2); font-size: 13.5px; flex-wrap: wrap; opacity: 0.85; }
.cta-final-trust .item { display: flex; gap: 6px; align-items: center; }
.cta-final .btn-outline { border-color: var(--cream); color: var(--cream); }
.cta-final .btn-outline:hover { background: var(--cream); color: var(--ink); }

/* ===== FOOTER ===== */
footer { padding: 60px 0 36px; background: var(--cream); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--ink-2); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; color: var(--ink-3); font-size: 13px; flex-wrap: wrap; gap: 14px; }

/* ===== FORMS ===== */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; padding: 12px 14px; background: var(--white); border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink); transition: border-color 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--ink-3); }

/* ===== TABLES (for pricing/feature comparison) ===== */
.compare-table { width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare-table thead th { background: var(--cream-2); font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.compare-table thead th.featured-col { background: var(--ink); color: var(--cream); position: relative; }
.compare-table tbody td:not(:first-child) { text-align: center; }
.compare-table .check-y { color: var(--green); font-weight: 700; }
.compare-table .check-n { color: var(--ink-3); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--cream-2); }

/* ===== PHONE PRODUCT CARDS ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.product:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(60,40,10,0.18); }
.product-img { background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%); border-radius: 12px; height: 220px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-family: 'Fraunces', serif; font-size: 14px; color: var(--ink-3); font-style: italic; padding: 18px; overflow: hidden; text-align: center; }
.product-img img { display: block; max-width: 100%; max-height: 100%; width: auto !important; height: auto !important; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 14px 18px rgba(26,20,16,0.14)); }
.product-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.product-tag { font-size: 12px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.product-desc { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
.product-price { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.product-price .amount { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600; }
.product-price .amount small { font-size: 13px; color: var(--ink-3); font-weight: 400; }
.product-price .amount-rent { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.product-price .amount-rent strong { color: var(--green); font-weight: 700; }

/* ===== PROSE (article-style content) ===== */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 17px; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; }
.prose h2 { margin-top: 50px; margin-bottom: 18px; font-size: clamp(28px, 3.5vw, 38px); }
.prose h3 { margin-top: 36px; margin-bottom: 12px; font-size: 22px; }
.prose ul, .prose ol { margin-left: 24px; margin-bottom: 20px; color: var(--ink-2); }
.prose li { margin-bottom: 10px; line-height: 1.7; font-size: 16.5px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ===== STAT GRID ===== */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-value { font-family: 'Fraunces', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-value.coral { color: var(--coral); }
.stat-value.gold { color: var(--gold); }
.stat-label { color: var(--ink-2); font-size: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 460px; margin-top: 30px; }
  .pillar-grid, .how-grid, .features-grid, .test-grid, .price-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .plan.featured { transform: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .pillar-grid, .how-grid, .features-grid, .test-grid, .price-grid, .industry-grid, .footer-top, .product-grid { grid-template-columns: 1fr; }
  /* On small screens the side cards just leak partial text from behind the
     phone — hide them and center the phone so the hero stays clean.        */
  .hero-visual { height: 480px; }
  .phone-card.side { display: none; }
  .phone-card.main { right: 50%; transform: translateX(50%); }
}
