@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --bg-2:      #f8f7f5;
  --bg-3:      #f1f0ee;
  --border:    #e3e2e0;
  --border-l:  #eeedeb;
  --text:      #0d0d0c;
  --text-sec:  #5c5a58;
  --text-dim:  #9a9896;
  --accent:    #2e8f60;
  --accent-bg: #edf6f1;
  --accent-dk: #1d6b47;
  --serif:     'Instrument Serif', Georgia, serif;
  --sans:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:     1200px;
  --px:        clamp(24px, 5vw, 72px);
  --r:         6px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; filter: url(#grain-filter); }

h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent-bg);
  color: var(--accent-dk);
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.nav-inner {
  max-width: var(--max-w); margin:0 auto;
  padding:0 var(--px); height:60px;
  display:flex; justify-content:space-between; align-items:center;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration:none; letter-spacing:-0.3px;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo span { color: var(--accent); }
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  color: var(--text-dim); text-decoration:none;
  font-size: 14px; font-weight:400; transition:color 0.15s;
  letter-spacing: -0.1px;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--text) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--r);
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: opacity 0.15s !important;
  letter-spacing: 0 !important;
}
.nav-cta:hover { opacity:0.75 !important; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-dark {
  display: inline-block; background: var(--text); color: #fff;
  padding: 11px 22px; font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: var(--r);
  border: none; cursor:pointer; font-family: var(--sans);
  letter-spacing: -0.1px;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-dark:hover { opacity:0.78; transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block; color: var(--text);
  padding: 11px 22px; font-size: 14px; font-weight: 400;
  text-decoration: none; border: none;
  border-radius: var(--r); font-family: var(--sans);
  transition: transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-ghost:hover { transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }

.btn-outline-w {
  display: inline-block; padding: 10px 20px;
  border: none; border-radius: var(--r);
  color: var(--text); font-size: 13px; font-weight: 500;
  text-decoration: none; font-family: var(--sans);
  transition: transform 0.2s cubic-bezier(0.25, 0, 0, 1);
}
.btn-outline-w:hover { transform: translateY(-1px); }
.btn-outline-w:active { transform: translateY(0); }

/* ── SECTION UTILITIES ───────────────────────────────── */
.full-dark  { background: var(--bg-2); }
.full-black { background: var(--bg-3); }
.full-cream { background: var(--bg-2); }
.full-warm  { background: var(--bg-2); }
.full-white { background: var(--bg); }

.section-inner {
  max-width: var(--max-w); margin:0 auto; padding: 88px var(--px);
}
.section-label {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0;
  color: var(--text-dim); margin-bottom: 14px; font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: 0; max-width: 640px; color: var(--text);
}
.section-sub {
  font-size: 15px; line-height: 1.7; max-width: 520px;
  margin-top: 16px; font-weight: 400; color: var(--text-sec);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero-green {
  padding: 136px var(--px) 112px;
  background: var(--bg);
}
.hero-green-inner {
  max-width: var(--max-w); margin:0 auto;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0;
  color: var(--text-dim); margin-bottom: 24px; font-weight: 400;
  display: block;
}
.hero-green h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.05; letter-spacing: -0.5px;
  color: var(--text); max-width: 860px;
  margin-bottom: 24px;
}
.hero-green h1 em {
  font-style: italic; color: var(--accent);
}
.hero-green-sub {
  font-family: var(--sans);
  font-size: 16px; color: var(--text-sec);
  line-height: 1.65; max-width: 560px; font-weight: 400;
}
.hero-stats {
  display: flex; gap:0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat-pill {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid var(--border-l);
}
.hero-stat-pill:last-child {
  border-right: none; margin-right:0; padding-right:0;
}
.hero-stat-label {
  display: block; font-size: 11px; letter-spacing: 0; color: var(--text-dim);
  margin-bottom: 4px; font-weight: 500;
}
.hero-stat-pill strong {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--text);
  letter-spacing: -0.3px;
}
.hero-actions-green {
  display: flex; gap: 10px; margin-top: 40px;
}

/* ── LOGO BAR ─────────────────────────────────────────── */
.logo-bar {
  padding: 22px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.logo-bar-label {
  display: none;
}
.logo-bar-row {
  overflow: hidden;
  white-space: nowrap;
}
.logo-bar-track {
  display: inline-flex; align-items: center; gap: 80px;
  animation: logo-scroll 28s linear infinite;
}
.logo-bar-track:hover { animation-play-state: paused; }
.logo-bar-row .lb {
  opacity: 0.28; transition: opacity 0.2s;
  line-height: 1; white-space: nowrap; display: flex; align-items: center;
}
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lb-femstedt {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 17px; font-weight: 400;
  color: var(--text); letter-spacing: 0.01em;
}
.lb-nem {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text);
}
.lb-farnaz {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--text); letter-spacing: 0.01em;
}
.lb-farnaz strong { font-weight: 700; }
.lb-endogyn {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 13.5px; font-weight: 300; letter-spacing: 0.09em; color: var(--text);
}
.lb-eidra {
  font-family: 'DM Sans', 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text);
}
.lb-hedda {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 400; color: var(--text);
  gap: 5px; align-items: baseline;
}
.lb-hedda em {
  font-family: 'DM Sans', 'Outfit', sans-serif; font-style: normal;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; align-self: center;
}


/* ── SPLIT ────────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.split.reversed .split-img  { order: 2; }
.split.reversed .split-content { order: 1; }

.split-img { overflow:hidden; position:relative; }
.split-img img { width:100%; height:100%; object-fit:cover; }

.split-content {
  padding: 72px 64px;
  display: flex; flex-direction:column; justify-content:center;
  background: var(--bg-2);
}
.split-content .section-label { color: var(--accent); }
.split-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2; letter-spacing: 0;
  margin-bottom: 18px; color: var(--text);
}
.split-content p {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.75;
  color: var(--text-sec); max-width: 420px; margin-bottom: 14px;
}
.split-stats {
  display: flex; gap: 40px; margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.split-stat strong {
  display: block; font-family: var(--sans);
  font-size: 15px; font-weight: 600; color: var(--text);
  margin-bottom: 3px; letter-spacing: -0.2px;
}
.split-stat span {
  font-size: 12px; color: var(--text-dim);
}

/* ── ACCORDION ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-header {
  padding: 18px 0;
  display: flex; justify-content:space-between; align-items:center;
  cursor: pointer; user-select:none;
}
.accordion-header h3 {
  font-family: var(--sans);
  font-size: 14px; font-weight: 500; color: var(--text-sec);
  letter-spacing: -0.1px;
  transition: color 0.2s;
}
.accordion-item.active .accordion-header h3 { color: var(--text); }
.accordion-toggle {
  width: 20px; height:20px; display:flex; align-items:center;
  justify-content:center; color: var(--text-dim);
  font-size: 16px; transition: transform 0.25s; flex-shrink:0;
  font-family: var(--sans);
}
.accordion-body { max-height:0; overflow:hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 0 20px; }
.accordion-body p {
  font-size: 14px; line-height: 1.65;
  color: var(--text-sec); max-width: 400px;
}
.accordion-item.active .accordion-toggle { transform: rotate(45deg); }
.accordion-item.active .accordion-body { max-height: 300px; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px;
}
.step {
  padding: 28px 28px 28px 0;
}
.step:not(:first-child) { padding-left: 28px; padding-right: 28px; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--sans);
  font-size: 11px; color: var(--text-dim); margin-bottom: 18px;
  font-weight: 500; letter-spacing: 0.1em;
}
.step h3 {
  font-family: var(--sans);
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.step-accent {
  font-size: 13px; color: var(--accent); font-weight: 500;
  margin-bottom: 8px; line-height: 1.4;
}
.step p { font-size: 13px; line-height: 1.65; color: var(--text-sec); }

/* ── PARADIGM PILLARS ─────────────────────────────────── */
.pillars-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 52px;
}
.pillar {
  border-top: 1px solid var(--border);
  padding: 28px 28px 28px 0;
}
.pillar:last-child { padding-right: 0; }
.pillar-title {
  font-family: var(--sans);
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.pillar-text { font-size: 13px; line-height: 1.65; color: var(--text-sec); margin: 0; }

/* ── CLINIC CARDS ─────────────────────────────────────── */
#clinics .section-inner { padding-top: 64px; padding-bottom: 64px; }
.clinics-header {
  display: flex; justify-content:space-between;
  align-items: flex-end; margin-bottom: 24px;
}
.clinics-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.5px; color: var(--text);
}
.clinics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.clinic-card {
  border-radius: var(--r);
  overflow: hidden; background: var(--bg);
  transition: transform 0.25s cubic-bezier(0.25, 0, 0, 1),
              box-shadow 0.25s cubic-bezier(0.25, 0, 0, 1);
}
.clinic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.clinic-card-img {
  height: 188px; overflow: hidden;
}
.clinic-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.4s;
}
.clinic-card:hover .clinic-card-img img { transform: scale(1.04); }
.clinic-card-body { padding: 20px; }
.clinic-tag {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 5px; font-weight: 400;
}
.clinic-card-body h3 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 400; margin-bottom: 3px;
  color: var(--text);
}
.clinic-doctor { font-size: 13px; color: var(--text-sec); margin-bottom: 8px; }
.clinic-desc {
  font-size: 13px; line-height: 1.5; color: var(--text-dim);
}
.clinic-footer { margin-top: 14px; }
.badge {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; padding: 2px 7px; border-radius: 3px; display: inline-block;
}
.badge-live   { background: var(--accent-bg); color: var(--accent-dk); }
.badge-pilot  { background: #fef8ec; color: #8a6a0a; }
.badge-soon   { background: var(--bg-3); color: var(--text-dim); }

/* ── QUOTE ────────────────────────────────────────────── */
.quote-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.quote-img { border-radius: var(--r); overflow: hidden; height: 420px; }
.quote-img img { width:100%; height:100%; object-fit:cover; }
.quote-content blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4; margin-bottom: 28px;
  color: var(--text); letter-spacing: -0.3px;
}
.cite-name { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text); }
.cite-role { font-family: var(--sans); font-size: 13px; color: var(--text-sec); margin-top: 2px; }

/* ── POSITIONING STATEMENT ───────────────────────────── */
.positioning-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 128px var(--px);
}
.positioning-inner h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15; letter-spacing: -0.5px;
  max-width: 720px; color: var(--text);
}
.positioning-inner p {
  font-family: var(--sans);
  margin-top: 24px; font-size: 16px;
  color: var(--text-sec); max-width: 480px; line-height: 1.65;
}

/* ── CTA GRID ─────────────────────────────────────────── */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-card {
  border-radius: var(--r); padding: 52px 44px;
  border: none;
}
.cta-card-teal { background: var(--bg-2); }
.cta-card-warm { background: var(--bg-3); }
.cta-card .section-label { margin-bottom: 20px; }
.cta-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.15; margin-bottom: 14px;
  letter-spacing: -0.3px; color: var(--text);
}
.cta-card h3 span { color: var(--text-dim); }
.cta-card p {
  font-family: var(--sans);
  font-size: 14px; color: var(--text-sec); line-height: 1.65;
  margin-bottom: 28px; max-width: 360px;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  padding: 56px var(--px) 36px;
  background: var(--bg);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 16px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0; color: var(--text-dim); margin-bottom: 14px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-sec);
  text-decoration: none; margin-bottom: 9px; transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid var(--border-l);
  padding-top: 20px;
  font-size: 12px; color: var(--text-dim);
}

/* ── CINEMATIC SECTION ───────────────────────────────── */
.section-cinematic {
  position: relative; overflow: hidden; min-height: 80vh;
  background: #1a1a18;
  display: grid; grid-template-columns: 1fr 1fr;
}
.section-cinematic .cinematic-bg {
  position: absolute; top: 0; left: 0; width: 60%; height: 100%;
}
.section-cinematic .cinematic-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5) brightness(0.65);
}
.section-cinematic .cinematic-overlay {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(to left, #1a1a18 20%, transparent 100%);
}
.section-cinematic .cinematic-chat-bubbles {
  position: absolute; top: 50%; left: 5%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
}
.section-cinematic .cinematic-bubble {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px 18px;
  color: rgba(255,255,255,0.88); font-size: 14px; font-family: var(--sans);
  max-width: 300px;
}
.section-cinematic .cinematic-bubble-time {
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 4px; text-align: right;
}
.section-cinematic .cinematic-content {
  position: relative; z-index: 2;
  grid-column: 2; display: flex; flex-direction: column; justify-content: center;
  padding: 88px 72px 88px 48px;
}
.section-cinematic .cinematic-headline {
  font-family: var(--serif); color: #fff;
  font-size: clamp(26px, 3vw, 40px); line-height: 1.2;
  letter-spacing: -0.3px; font-weight: 400; margin: 0;
}
.section-cinematic .cinematic-accent {
  margin-top: 28px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.section-cinematic .cinematic-accent-text {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.65; max-width: 460px; margin: 0;
}
.section-cinematic .cinematic-body {
  font-size: 14px; color: rgba(255,255,255,0.45);
  max-width: 460px; margin-top: 16px; line-height: 1.65;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reversed .split-img,
  .split.reversed .split-content { order: unset; }
  .split-img { height: 340px; }
  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-split { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-cinematic { grid-template-columns: 1fr; min-height: auto; }
  .section-cinematic .cinematic-bg { position: relative; width: 100%; height: 50vh; }
  .section-cinematic .cinematic-overlay { background: linear-gradient(to top, #1a1a18 15%, transparent 80%); width: 100%; }
  .section-cinematic .cinematic-chat-bubbles { top: auto; bottom: 15%; left: 5%; transform: none; }
  .section-cinematic .cinematic-content { padding: 48px 24px; grid-column: 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat-pill { border-right: none; margin-right:0; padding-right:0; }
  .steps-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .clinics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-content { padding: 48px 24px; }
  .section-inner { padding: 64px 24px; }
  .cta-card { padding: 36px 24px; }
  .positioning-inner { padding: 72px 24px; }
}

/* ── ANIMATION ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(12px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-green-inner > * {
  animation: fadeUp 0.65s cubic-bezier(0.25, 0, 0, 1) both;
}
.hero-green-inner > :nth-child(1) { animation-delay: 0.05s; }
.hero-green-inner > :nth-child(2) { animation-delay: 0.12s; }
.hero-green-inner > :nth-child(3) { animation-delay: 0.18s; }
.hero-green-inner > :nth-child(4) { animation-delay: 0.24s; }


/* ── PLATFORM SECTION ────────────────────────────────── */
.platform-hero-img {
  width: 100%; margin-top: 48px; border-radius: var(--r);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06); display: block;
}
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--border); margin-top: 48px;
}
.platform-item {
  border-top: 1px solid var(--border);
  padding: 24px 28px 24px 0;
}
.platform-item-title {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.platform-item-text {
  font-size: 13px; color: var(--text-sec); line-height: 1.6; margin: 0;
}
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* ── BUSINESS CASE ───────────────────────────────────── */
.biz-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 48px;
}
.biz-card {
  background: var(--bg); border-radius: var(--r);
  overflow: hidden;
}
.biz-card-img img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  border-radius: var(--r) var(--r) 0 0;
  filter: saturate(0.7) brightness(0.85);
}
.biz-card-body { padding: 32px; }
.biz-card-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--text); letter-spacing: -0.2px; margin: 0;
}
.biz-benefits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 20px;
}
.biz-benefit-label {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.biz-benefit-text {
  font-size: 12px; color: var(--text-sec); line-height: 1.55; margin: 0;
}
@media (max-width: 640px) {
  .biz-grid { grid-template-columns: 1fr; }
}
