/* ═══════════════════════════════════════
   DESIGN SYSTEM — minimal, surgical
═══════════════════════════════════════ */
:root {
  --pink: #E8008C;
  --pink-light: rgba(232,0,140,0.08);
  --pink-border: rgba(232,0,140,0.2);
  --black: #0d0d0d;
  --gray-900: #111111;
  --gray-700: #333333;
  --gray-500: #666666;
  --gray-300: #AAAAAA;
  --gray-100: #F5F5F5;
  --gray-50:  #FAFAFA;
  --white: #FFFFFF;
  --line: #E8E8E8;
  --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ─────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink);
}

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 768px) { .nav-inner { padding: 0 24px; } }

.nav-logo {
  height: 30px;
  width: auto;
}

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-link {
  font-size: 14px; font-weight: 500; color: var(--gray-500);
  padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gray-900); }

.btn-outline {
  font-size: 14px; font-weight: 500;
  padding: 9px 18px; border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--gray-700);
  background: transparent;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gray-500); color: var(--black); }

.btn-solid {
  font-size: 14px; font-weight: 600;
  padding: 10px 20px; border-radius: 6px;
  border: none;
  color: var(--white);
  background: var(--pink);
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-solid:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ───────────────────────────────── */
.hero {
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 40px;
  max-width: 640px; margin-left: auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
  opacity: 0; animation: up 0.6s var(--ease) 0.1s forwards;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 24px;
  opacity: 0; animation: up 0.6s var(--ease) 0.2s forwards;
}
.hero h1 strong { font-weight: 600; }

.hero-desc {
  font-size: 16px; font-weight: 400;
  line-height: 1.7; color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 440px;
  opacity: 0; animation: up 0.6s var(--ease) 0.3s forwards;
}

.hero-pricing {
  display: flex; gap: 0; margin-bottom: 40px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  opacity: 0; animation: up 0.6s var(--ease) 0.35s forwards;
}
.price-cell {
  flex: 1; padding: 16px 20px;
  border-right: 1px solid var(--line);
}
.price-cell:last-child { border-right: none; }
.price-cell-lbl { font-size: 11px; font-weight: 500; color: var(--gray-300); letter-spacing: 0.04em; margin-bottom: 4px; }
.price-cell-val { font-size: 22px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.price-cell-val sub { font-size: 12px; font-weight: 400; color: var(--gray-300); vertical-align: baseline; }
.price-cell.highlight { background: var(--pink-light); }
.price-cell.highlight .price-cell-lbl { color: var(--pink); }
.price-cell.highlight .price-cell-val { color: var(--pink); }

.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  opacity: 0; animation: up 0.6s var(--ease) 0.45s forwards;
}

.btn-hero {
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 6px;
  border: none; color: var(--white);
  background: var(--pink);
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-wa {
  font-size: 15px; font-weight: 500;
  padding: 13px 24px; border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--gray-700); background: var(--white);
  cursor: pointer; transition: border-color 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-wa:hover { border-color: var(--gray-400); }

.hero-trust {
  margin-top: 32px; display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: up 0.6s var(--ease) 0.55s forwards;
}
.hero-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.hero-trust-text { font-size: 13px; color: var(--gray-300); }

/* ── HERO IMAGE ─────────────────────────── */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--gray-100);
  opacity: 0; animation: slideIn 0.9s var(--ease) 0.1s forwards;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.5) 0%, transparent 50%);
}

.stat-pill {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 12px 18px;
}
.stat-pill-1 { bottom: 36px; left: 28px; animation: float1 4s ease infinite; }
.stat-pill-2 { top: 36px; right: 28px; animation: float2 4.5s ease infinite; }
.stat-pill-val { font-size: 20px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.stat-pill-lbl { font-size: 11px; color: var(--gray-300); margin-top: 1px; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ── ANIMATIONS ─────────────────────────── */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 1; transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
/* JS upgrades this to a gentle fade-in when supported; if JS is blocked,
   content is fully visible by default so sections can never appear empty. */
html.js-anim .reveal { opacity: 0; transform: translateY(16px); }
html.js-anim .reveal.on { opacity: 1; transform: translateY(0); }

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
@media (max-width: 768px) { .trust-bar-inner { padding: 0 24px; gap: 0; } }
.trust-item {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 24px 8px 0;
  border-right: 1px solid var(--line);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; padding-right: 0; }
.trust-icon { font-size: 18px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--black); }
.trust-text span { font-size: 12px; color: var(--gray-300); }

/* ── SECTIONS ───────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-bg { background: var(--gray-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; letter-spacing: -0.025em;
  color: var(--black); line-height: 1.1;
  margin-bottom: 14px;
}
.section-header h2 strong { font-weight: 600; }
.section-header p { font-size: 16px; color: var(--gray-500); line-height: 1.65; max-width: 480px; }

/* ── HOW IT WORKS ───────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.step { background: var(--white); padding: 40px 36px; transition: background 0.3s; }
.step:hover { background: var(--gray-50); }
.step-num { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--gray-300); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.step-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.step h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 12px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.step-tag { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--pink); font-weight: 500; }

/* ── PRICING ────────────────────────────── */
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pricing-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.pricing-card.featured { border-color: var(--pink); }
.pricing-card-head { padding: 28px 32px; border-bottom: 1px solid var(--line); }
.pricing-card-head:last-child { border-bottom: none; }
.pricing-card.featured .pricing-card-head { background: var(--pink-light); }
.pricing-card-head h3 { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.pricing-card-head p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.pricing-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink); background: var(--pink-light); border: 1px solid var(--pink-border); border-radius: 4px; padding: 3px 8px; display: inline-block; margin-bottom: 10px; }
.pricing-body { padding: 12px 32px 28px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row-label { font-size: 14px; color: var(--gray-700); }
.pricing-row-amt { font-size: 18px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.pricing-row-amt span { font-size: 12px; font-weight: 400; color: var(--gray-300); }

.first-wash-box {
  margin-top: 32px; padding: 24px 28px;
  border: 1px solid var(--pink-border); border-radius: 8px;
  background: var(--pink-light);
  display: flex; align-items: center; gap: 20px;
}
.first-wash-box .icon { font-size: 24px; flex-shrink: 0; }
.first-wash-box strong { font-size: 16px; color: var(--black); display: block; margin-bottom: 2px; }
.first-wash-box span { font-size: 13px; color: var(--gray-500); }
.pricing-cta { margin-top: 40px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pricing-sub { font-size: 13px; color: var(--gray-300); }
.pricing-sub strong { color: var(--pink); }

/* ── COVERAGE ───────────────────────────── */
.coverage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.areas { margin-top: 32px; }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 24px; }
.area-chip { font-size: 13px; color: var(--gray-700); padding: 9px 14px; border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; gap: 6px; }
.area-chip::before { content: '›'; color: var(--pink); font-weight: 700; }
.coverage-note { font-size: 13px; color: var(--gray-400); line-height: 1.6; padding-top: 20px; border-top: 1px solid var(--line); }
.coverage-img-wrap { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.coverage-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── REVIEWS ────────────────────────────── */
.reviews-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.reviews-score .big { font-size: 72px; font-weight: 300; color: var(--black); letter-spacing: -0.04em; line-height: 1; }
.reviews-score .stars { color: #F5A623; font-size: 16px; margin: 8px 0 4px; }
.reviews-score .count { font-size: 13px; color: var(--gray-300); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { padding: 24px; border: 1px solid var(--line); border-radius: 8px; transition: border-color 0.25s; }
.review-card:hover { border-color: var(--gray-300); }
.review-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 12px; font-weight: 600; color: var(--black); }
.review-source { font-size: 11px; color: var(--gray-300); margin-top: 2px; }

/* ── FAQ ────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.faq-aside p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-top: 16px; }
.faq-aside .btn-text { margin-top: 28px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--pink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 24px; text-align: left;
  font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--black);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--pink); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gray-500); transition: transform 0.3s, border-color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--pink); color: var(--pink); }
.faq-item.open .faq-btn { color: var(--pink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 22px; font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ── FINAL CTA ──────────────────────────── */
.cta-section { padding: 120px 0; border-top: 1px solid var(--line); }
.cta-inner { max-width: 660px; }
.cta-inner h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.1; color: var(--black); margin-bottom: 20px; }
.cta-inner h2 strong { font-weight: 600; }
.cta-inner p { font-size: 16px; color: var(--gray-500); line-height: 1.65; margin-bottom: 40px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-sub { margin-top: 20px; font-size: 13px; color: var(--gray-300); }
.cta-sub strong { color: var(--pink); }

/* ── FOOTER ─────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { height: 26px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--gray-400); line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-500); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--black); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom span { font-size: 12px; color: var(--gray-300); }
.footer-bottom a { font-size: 12px; color: var(--gray-300); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gray-700); }

/* ── HAMBURGER ──────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--line); border-radius: 6px;
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--gray-300); }
.nav-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV PANEL ───────────────────── */
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 12px 24px 16px;
  background: var(--white);
}
.nav-open .nav-mobile { display: flex; }
.nav-mobile-link {
  font-size: 15px; font-weight: 500; color: var(--gray-700);
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--black); }
.nav-mobile-cta {
  display: block; text-align: center;
  margin-top: 14px;
  font-size: 15px; font-weight: 600;
  padding: 13px 20px; border-radius: 6px;
  color: var(--white); background: var(--pink);
  transition: opacity 0.2s;
}
.nav-mobile-cta:hover { opacity: 0.88; }

/* ── STICKY (mobile) ────────────────────── */
.sticky-bar { display: none; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 36px 24px 48px; margin: 0; max-width: 100%; }
  .hero-right { height: 56vw; min-height: 300px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; width: 100%; }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .sticky-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--white); border-top: 1px solid var(--line); padding: 12px 16px; gap: 10px; }
  body { padding-bottom: 70px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn-hero,
  .hero-actions .btn-wa { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .hero-pricing { flex-direction: column; }
  .price-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .price-cell:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner h2 { font-size: 30px; }
  .area-grid { grid-template-columns: 1fr; }
  .nav-link { display: none; }
  .btn-outline { display: none; }
  .nav-right .btn-solid { display: none; }
  .nav-hamburger { display: flex; }
  .model-cost { align-items: flex-start; flex-wrap: wrap; }
  .model-cost .cap { font-size: 12px; line-height: 1.4; }
}

/* ── PARTNER ADDITIONS ──────────────────── */
/* hero stat cells reuse .hero-pricing / .price-cell */

/* hero-right brand panel (route-density motif) */
.hero-panel { position: relative; width: 100%; height: 100%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; }
.hero-panel svg.route { width: 78%; max-width: 440px; height: auto; }
.route-dot { fill: var(--pink); }
.route-dot.faint { fill: rgba(232,0,140,0.25); }
.route-line { stroke: var(--pink); stroke-width: 1.4; fill: none; stroke-dasharray: 4 5; opacity: 0.45; }
.route-ring { fill: none; stroke: rgba(232,0,140,0.18); stroke-width: 1; }

/* model cards — inclusion list */
.model-served { font-size: 12px; color: var(--gray-400); margin-top: 8px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.model-emirate { font-size: 11px; font-weight: 500; color: var(--gray-700); background: var(--line); border-radius: 4px; padding: 3px 9px; }
.model-cost { display: flex; align-items: baseline; gap: 8px; padding: 18px 0 6px; border-bottom: 1px solid var(--gray-100); margin-bottom: 8px; }
.model-cost .amt { font-size: 26px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.model-cost .amt.free { color: var(--pink); }
.model-cost .cap { font-size: 12px; color: var(--gray-400); }
.incl-list { list-style: none; }
.incl-list li { display: flex; gap: 11px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-700); line-height: 1.55; }
.incl-list li:last-child { border-bottom: none; }
.incl-list li::before { content: '\2713'; color: var(--pink); font-weight: 700; flex-shrink: 0; font-size: 13px; line-height: 1.55; }
.models-note { margin-top: 28px; font-size: 13px; color: var(--gray-400); line-height: 1.6; text-align: center; }

/* feature grid (business uplift) */
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.feat { background: var(--white); padding: 40px 36px; transition: background 0.3s; }
.feat:hover { background: var(--gray-50); }
.feat-ic { width: 42px; height: 42px; border-radius: 9px; background: var(--pink-light); border: 1px solid var(--pink-border); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }
.feat h3 { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.feat p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* apply section */
.apply-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.apply-left .section-header { margin-bottom: 28px; }
.apply-points { list-style: none; margin-top: 4px; }
.apply-points li { display: flex; gap: 11px; align-items: flex-start; padding: 10px 0; font-size: 14px; color: var(--gray-700); line-height: 1.55; }
.apply-points li::before { content: '\2713'; color: var(--pink); font-weight: 700; flex-shrink: 0; }
.apply-contact { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--gray-500); }
.apply-contact a { color: var(--pink); font-weight: 500; }
.apply-form { border: 1px solid var(--line); border-top: 3px solid var(--pink); border-radius: 12px; padding: 32px; background: var(--white); box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.12); }
.apply-form h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 22px; letter-spacing: -0.01em; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field select { width: 100%; font-family: var(--font); font-size: 14px; color: var(--gray-900); padding: 12px 14px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--pink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form .btn-hero { width: 100%; justify-content: center; margin-top: 6px; }
.apply-note { font-size: 12px; color: var(--gray-300); margin-top: 14px; text-align: center; line-height: 1.5; }

@media (max-width: 960px) {
  .feat-grid { grid-template-columns: 1fr; }
  .apply-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 280px; }
  .cta-section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}
