/* ===========================
   Minty Media Design System
   =========================== */

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

:root {
  --green: #2ecc71;
  --green-dim: #25a35a;
  --green-glow: rgba(46, 204, 113, 0.15);
  --navy: #0d0d1a;
  --navy-light: #14142b;
  --navy-mid: #1a1a2e;
  --slate: #2a2a45;
  --text: #e8e8f0;
  --text-dim: #9999b3;
  --text-muted: #7e7e9e;
  --white: #f5f5fa;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

/* --- Base --- */
html { scroll-behavior: smooth; }

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Selection --- */
::selection {
  background: rgba(46, 204, 113, 0.25);
  color: var(--white);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(46, 204, 113, 0.08);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--white);
  text-decoration: none;
}
.nav-cta {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
  text-decoration: none;
}

/* --- Section Shared --- */
section {
  padding: clamp(80px, 12vw, 140px) 0;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-heading em {
  font-style: italic;
  color: var(--green);
}
.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  background: var(--navy-mid);
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 80px);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(46, 204, 113, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .section-label {
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--green);
}
.page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.page-hero p a {
  color: var(--green);
  font-weight: 500;
}

/* --- System Cards --- */
.system-card {
  background: rgba(13, 13, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: clamp(36px, 4vw, 52px) clamp(32px, 3.5vw, 44px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(8px);
}
.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 6px 6px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.system-card:hover {
  background: rgba(13, 13, 26, 0.8);
  border-color: rgba(46, 204, 113, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.system-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}
.system-card:hover .card-icon {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
  transform: scale(1.05);
}
.system-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.system-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}
.card-detail {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}
.card-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 3px;
}

/* --- Comparison Table --- */
.compare-table {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.compare-header {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-header.col-ige {
  color: var(--green);
  background: rgba(46, 204, 113, 0.06);
}
.compare-header.col-template {
  color: var(--text-muted);
}
.compare-row {
  display: contents;
}
.compare-cell {
  padding: 18px 28px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
}
.compare-cell.label-cell {
  font-weight: 400;
  color: var(--text-dim);
}
.compare-cell.ige-cell {
  color: var(--white);
  font-weight: 400;
  background: rgba(46, 204, 113, 0.03);
  border-left: 1px solid rgba(46, 204, 113, 0.08);
}
.compare-cell.template-cell {
  color: var(--text-muted);
}
.compare-check {
  color: var(--green);
  margin-right: 10px;
  font-size: 1rem;
}
.compare-x {
  color: #e74c3c;
  margin-right: 10px;
  font-size: 1rem;
  opacity: 0.7;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--navy-mid);
  text-align: center;
  padding: clamp(120px, 16vw, 220px) 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at center bottom, rgba(46, 204, 113, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cta-content .section-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
}
.cta-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 48px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--green);
  padding: 20px 52px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(46, 204, 113, 0.35);
  text-decoration: none;
}
.cta-button:hover::after { opacity: 1; }
.cta-button svg { width: 18px; height: 18px; transition: transform 0.3s; position: relative; z-index: 1; }
.cta-button span { position: relative; z-index: 1; }
.cta-button:hover svg { transform: translateX(4px); }
.cta-sub {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.cta-sub a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 204, 113, 0.3);
  transition: border-color 0.2s;
}
.cta-sub a:hover { border-color: var(--green); text-decoration: none; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--green);
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.25);
  text-decoration: none;
}
.btn-primary:hover::after { opacity: 1; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
  background: var(--navy);
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-left a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-left a:hover { color: var(--green); text-decoration: none; }
.footer-links .footer-heading {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); text-decoration: none; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--green); text-decoration: none; }

/* Stripped footer (insurance landing page) */
.footer-stripped .footer-content {
  grid-template-columns: 1fr auto;
}
.footer-stripped .footer-links { display: none; }

/* --- Form Styles --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group label .req { color: #e74c3c; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239999b3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--navy-mid);
  color: var(--text);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-dim);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-group { margin-top: 24px; }
.consent-label span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-label span strong {
  color: var(--text-dim);
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.25);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note a { color: var(--text-dim); }
.form-note a:hover { color: var(--green); }

/* --- Calendar Embed --- */
.calendar-embed {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  min-height: 600px;
}
.calendar-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

/* --- Video Wrapper --- */
.video-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--navy-light);
}
.video-wrap video {
  width: 100%;
  display: block;
}

/* --- Sidebar --- */
.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.sidebar-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.6;
}
.sidebar-card p:last-child { margin-bottom: 0; }

.expect-list { list-style: none; padding: 0; }
.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.5;
}
.expect-list li:last-child { margin-bottom: 0; }
.expect-check {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  filter: grayscale(0.2);
}
.contact-item-text {
  font-size: 0.92rem;
  color: var(--text-dim);
}
.contact-item-text strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.contact-item-text a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--green); text-decoration: none; }

.sidebar-card.prefer-card {
  background: rgba(46, 204, 113, 0.05);
  border-color: rgba(46, 204, 113, 0.15);
}
.prefer-card h3 { color: var(--green); }

/* --- Legal Pages --- */
.legal-header {
  background: var(--navy-mid);
  padding: clamp(100px, 14vw, 140px) 0 clamp(40px, 6vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px clamp(24px, 5vw, 64px);
}
.legal-body h2 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--white);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-body ul {
  margin: 0 0 14px 24px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-body ul li { margin-bottom: 6px; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--green); }

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 40px 36px;
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.pricing-card.featured {
  border: 2px solid rgba(46, 204, 113, 0.4);
  position: relative;
  background: rgba(46, 204, 113, 0.03);
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.pricing-card .price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
}
.pricing-card .price span {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card .setup {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 8px 0 28px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin-bottom: 28px;
}
.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card ul li.no-check::before { content: none; }
.pricing-card ul li.no-check {
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(46, 204, 113, 0.15);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

/* --- Included Checklist --- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}
.included-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.included-item .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- FAQ (details/summary) --- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item summary {
  padding: 24px 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item .faq-answer {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* --- Upsell / Add-on Cards --- */
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.upsell-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 28px 24px;
}
.upsell-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.upsell-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.6;
}
.upsell-card .upsell-price {
  font-weight: 600;
  color: var(--green);
  font-size: 0.9rem;
}

/* --- Stat Rows --- */
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stat-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
}
.stat-value.bad {
  color: #e74c3c;
}

/* --- Proof Bar --- */
.proof {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0;
  background: var(--navy-light);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proof-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.proof-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.proof-number {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-number span {
  color: var(--green);
}
.proof-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* --- Steps / How It Works --- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step { text-align: center; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* --- ROI Cards --- */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.roi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}
.roi-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.roi-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Stats Grid (insurance page) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
}
.stat-card .stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Feature Cards (insurance page) --- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 32px 28px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.6;
}
.feature-card ul {
  list-style: none;
  padding: 0;
}
.feature-card ul li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.feature-card ul li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* --- Case Study Cards --- */
.case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: clamp(32px, 4vw, 48px);
  transition: border-color 0.3s;
}
.case-card:hover {
  border-color: rgba(46, 204, 113, 0.15);
}
.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 4px 12px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 3px;
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.case-url {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.case-url:hover { text-decoration: none; opacity: 0.8; }
.case-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.case-results h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.case-results ul {
  list-style: none;
  padding: 0;
}
.case-results ul li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-results ul li:last-child { border-bottom: none; }
.case-results ul li::before {
  content: '\2192';
  color: var(--green);
  font-weight: 700;
}

/* --- More Coming Note --- */
.more-coming {
  background: rgba(46, 204, 113, 0.04);
  border: 1px solid rgba(46, 204, 113, 0.12);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
}
.more-coming h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.more-coming p {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* --- Table (insurance comparison, alternate) --- */
.ins-compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.ins-compare-table thead th {
  padding: 20px 24px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ins-compare-table thead th:first-child {
  width: 34%;
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
.ins-compare-table thead th:nth-child(2) {
  background: rgba(231, 76, 60, 0.05);
  color: #e74c3c;
}
.ins-compare-table thead th:nth-child(3) {
  background: rgba(46, 204, 113, 0.05);
  color: var(--green);
}
.ins-compare-table tbody th,
.ins-compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
  vertical-align: top;
}
.ins-compare-table tbody th {
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.ins-compare-table td:nth-child(2) {
  color: var(--text-muted);
}
.ins-compare-table td:nth-child(3) {
  color: var(--text);
  font-weight: 400;
}
.ins-compare-table tr:last-child td,
.ins-compare-table tr:last-child th { border-bottom: none; }
.x-mark { color: #e74c3c; font-weight: 700; margin-right: 6px; }
.check-mark { color: var(--green); font-weight: 700; margin-right: 6px; }

/* --- Scarcity / Guarantee --- */
.scarcity-section {
  text-align: center;
}
.scarcity-section .highlight {
  color: var(--green);
  font-weight: 600;
}
.guarantee-section {
  background: rgba(46, 204, 113, 0.04);
  border-top: 1px solid rgba(46, 204, 113, 0.1);
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
  text-align: center;
}

/* --- Mobile: 900px --- */
@media (max-width: 900px) {
  .compare-table {
    grid-template-columns: 1fr;
  }
  .compare-header.col-feature { display: none; }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .compare-cell.label-cell {
    grid-column: 1 / -1;
    padding-bottom: 4px;
    border-bottom: none;
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--white);
  }
  .compare-cell.ige-cell,
  .compare-cell.template-cell {
    font-size: 0.85rem;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .upsell-grid { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-stripped .footer-content { grid-template-columns: 1fr; }
  .ins-compare-table { font-size: 0.85rem; }
  .ins-compare-table thead th,
  .ins-compare-table td,
  .ins-compare-table tbody th { padding: 12px 14px; }
}

/* --- Mobile: 600px --- */
@media (max-width: 600px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-item:not(:last-child)::after { display: none; }
  .proof-item { padding: 0; text-align: left; }
  .nav-logo span { display: none; }
  .nav-link { font-size: 0.82rem; }
  .nav-links { gap: 16px; }
  .page-hero h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
