:root {
  --ink: #0c1f1a;
  --ink-soft: #46544f;
  --ink-faint: #8a958f;
  --emerald: #10b981;
  --emerald-deep: #059669;
  --tint: #ecfdf5;
  --tint-2: #d1fae5;
  --line: rgba(12,31,26,0.08);
  --card-shadow: 0 8px 30px rgba(12,31,26,0.06);
  --font-disp: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --maxw: 1180px;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-press: .12s;
  --dur-state: .2s;
  --dur-hover: .28s;
  --dur-reveal: .62s;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink);
  background: #fff; -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── scroll-reveal (gated on .js so content is never hidden without JS) ── */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-reveal) var(--ease-out-quint),
              transform var(--dur-reveal) var(--ease-out-quint);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

/* hero is above-the-fold → deterministic CSS load entrance (not IntersectionObserver) */
html.js .hero-copy > *,
html.js .hero-visual { opacity: 0; animation: heroIn var(--dur-reveal) var(--ease-out-quint) both; }
html.js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
html.js .hero-copy > *:nth-child(2) { animation-delay: .12s; }
html.js .hero-copy > *:nth-child(3) { animation-delay: .19s; }
html.js .hero-copy > *:nth-child(4) { animation-delay: .26s; }
html.js .hero-copy > *:nth-child(5) { animation-delay: .33s; }
html.js .hero-visual { animation-name: heroInVisual; animation-delay: .18s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes heroInVisual { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }

/* ── Promo-Bar (Aktion, läuft per Datum automatisch aus) ── */
.promo-bar { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(90deg,#059669,#10b981); color: #fff; padding: 9px 46px 9px 18px; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; text-align: center; animation: promoIn .5s var(--ease-out-quint) both; }
.promo-bar__link { display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; justify-content: center; color: #fff; }
.promo-bar__tag { font-size: 15px; }
.promo-bar__cta { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; transition: opacity .15s var(--ease-out-quint); }
.promo-bar__link:hover .promo-bar__cta { opacity: .82; }
.promo-bar__close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border: none; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; font-size: 17px; line-height: 1; cursor: pointer; transition: background .15s var(--ease-out-quint); }
.promo-bar__close:hover { background: rgba(255,255,255,.34); }
@keyframes promoIn { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
  .promo-bar { padding: 8px 40px; font-size: 12.5px; gap: 0; line-height: 1.35; }
  .promo-bar__tag { display: none; }
  .promo-bar__link { flex-direction: column; gap: 2px; }
  .promo-bar__cta { font-size: 13px; }
  .promo-bar__close { right: 10px; width: 22px; height: 22px; font-size: 16px; }
}

/* ── type ── */
.display { font-family: var(--font-disp); font-weight: 700; font-size: clamp(34px, 5.4vw, 60px); line-height: 1.02; letter-spacing: -1.8px; margin: 0 0 18px; text-wrap: balance; }
.h2 { font-family: var(--font-disp); font-weight: 700; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.08; letter-spacing: -1px; margin: 0 0 12px; text-wrap: balance; }
.lede { font-size: clamp(15px, 1.5vw, 18px); color: var(--ink-soft); font-weight: 500; margin: 0; text-wrap: pretty; }
.eyebrow { display: inline-block; font-weight: 800; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--emerald-deep); margin-bottom: 14px; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 14px; padding: 12px 20px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  transition: transform var(--dur-press) var(--ease-out-quint), box-shadow var(--dur-press) var(--ease-out-quint), background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(180deg,#10b981,#059669); color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(16,185,129,0.4); }
.btn-soft { background: var(--tint); color: var(--emerald-deep); }
.btn-soft:hover { background: var(--tint-2); }
.btn-outline { background: #fff; color: var(--emerald-deep); border: 1.5px solid var(--emerald); }
.btn-outline:hover { background: var(--tint); }
.btn-ghost { background: rgba(12,31,26,0.04); color: var(--ink); }
.btn-ghost:hover { background: rgba(12,31,26,0.08); }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 12px; }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 15px; }
.btn-block { width: 100%; }

/* ── nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-disp); font-weight: 700; font-size: 18px; letter-spacing: -0.4px; white-space: nowrap; }
.brand-dim { color: var(--ink-faint); font-weight: 600; }
.logo {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(150deg,#10b981,#059669);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(16,185,129,0.35);
}
.logo span { font-family: var(--font-disp); font-weight: 700; font-size: 13px; color: #fff; }
.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color var(--dur-state) var(--ease-out-quint); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.switch { display: inline-flex; background: rgba(12,31,26,0.05); border-radius: 11px; padding: 3px; gap: 2px; }
.switch button {
  border: none; background: none; cursor: pointer; padding: 6px 11px;
  border-radius: 8px; font-family: var(--font-body); font-weight: 700; font-size: 13px;
  color: var(--ink-soft); transition: background var(--dur-state) var(--ease-out-quint), color var(--dur-state) var(--ease-out-quint), box-shadow var(--dur-state) var(--ease-out-quint);
}
.switch button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(12,31,26,0.12); }

.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 22px; height: 2.2px; background: var(--ink); border-radius: 2px; transition: var(--dur-state) var(--ease-out-quint); }

/* ── hero ── */
.hero { background: linear-gradient(180deg,#f0fdf9 0%, #ffffff 62%); padding-top: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: clamp(40px, 6vw, 80px); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 28px 0 0; }
.hero-trust li { position: relative; font-weight: 600; font-size: 14px; color: var(--ink-soft); padding-left: 22px; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--tint-2); box-shadow: inset 0 0 0 2px var(--emerald); }

/* browser mock */
.browser { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 30px 60px rgba(12,31,26,0.14); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #f6f8f7; border-bottom: 1px solid var(--line); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #dfe5e2; }
.browser-url { margin-left: 12px; font-family: var(--font-disp); font-size: 13px; color: var(--ink-faint); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 4px 12px; }
.ph {
  background-color: #f4f7f6;
  background-image: repeating-linear-gradient(135deg, rgba(16,185,129,0.07) 0 12px, transparent 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.ph-label { font-family: var(--font-disp); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-faint); }
.ph-hero { height: 300px; }
.shot-hero { overflow: hidden; }
.shot-hero img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* logos strip */
.logos { border-top: 1px solid var(--line); padding: 26px 0; }
.logos-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.logos-cap { font-size: 13px; font-weight: 600; color: var(--ink-faint); }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #3a463f; background: #f1f5f3; border: 1px solid #e0e7e3; border-radius: 999px; padding: 8px 14px; }
.trust-badge::before { content: "\2713"; color: #1a9d6b; font-weight: 700; }

/* ── bands ── */
.band { padding: clamp(56px, 8vw, 100px) 0; }
.band-tint { background: linear-gradient(180deg,#f0fdf9, #ffffff); }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head .lede { margin-top: 12px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* features */
.feature { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px 24px; box-shadow: var(--card-shadow); }
.feat-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--tint); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--emerald-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-family: var(--font-disp); font-weight: 600; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.3px; }
.feature p { margin: 0; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }

/* plans */
.plans { align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 30px 26px; box-shadow: var(--card-shadow); position: relative; display: flex; flex-direction: column; }
.plan-feat { border: 1.5px solid var(--emerald); box-shadow: 0 22px 50px rgba(16,185,129,0.18); background: linear-gradient(180deg,var(--tint) 0%, #fff 26%); }
.badge { position: absolute; top: -13px; left: 26px; background: var(--emerald-deep); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; box-shadow: 0 6px 16px rgba(5,150,105,0.4); }
.plan-name { font-family: var(--font-disp); font-weight: 600; font-size: 21px; margin: 0 0 4px; letter-spacing: -0.4px; }
.plan-tag { font-size: 13px; font-weight: 600; color: var(--ink-faint); margin: 0 0 18px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; min-height: 48px; }
.price { font-family: var(--font-disp); font-weight: 700; font-size: 40px; letter-spacing: -1.5px; }
.price-custom { font-family: var(--font-disp); font-weight: 700; font-size: 30px; letter-spacing: -1px; color: var(--emerald-deep); }
.from { font-family: var(--font-disp); font-weight: 700; font-size: 15px; color: var(--ink-faint); align-self: baseline; }
.per { font-size: 13px; color: var(--ink-faint); font-weight: 700; }
.plan-desc { font-size: 14px; color: var(--ink-soft); font-weight: 500; margin: 0 0 20px; }
.ticks { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ticks li { position: relative; padding-left: 28px; font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%; background: var(--tint-2); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 6px; width: 6px; height: 9px; border: solid var(--emerald-deep); border-width: 0 2px 2px 0; transform: rotate(42deg); }
.plan .btn { margin-top: auto; }
.price-foot { text-align: center; font-size: 13px; color: var(--ink-faint); font-weight: 500; margin: 30px auto 0; max-width: 560px; }

/* Setup-Hinweis unter dem Monatspreis */
.setup-note { margin: -8px 0 18px; font-size: 13px; font-weight: 600; color: var(--ink-faint); }
.setup-note .price { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0; color: var(--ink-soft); }

/* Einwilligungen — jetzt im Checkout-Modal, erscheinen unmittelbar vor Vertragsschluss. */
.consents { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 20px; }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 11.5px; line-height: 1.45; font-weight: 500; color: var(--ink-faint); cursor: pointer; }
.consent input { width: 15px; height: 15px; margin-top: 1px; flex: none; accent-color: var(--emerald); cursor: pointer; }
.consent a { color: var(--emerald-deep); font-weight: 600; text-decoration: underline; }
.consent.invalid { color: #dc2626; }
.consent.invalid a { color: #dc2626; }
.consent.invalid input { accent-color: #dc2626; outline: 2px solid #dc2626; outline-offset: 1px; border-radius: 3px; }
.consent.shake { animation: consentShake .42s var(--ease-out-quint); }
@keyframes consentShake { 0%, 100% { transform: translateX(0); } 15% { transform: translateX(-7px); } 35% { transform: translateX(6px); } 55% { transform: translateX(-4px); } 75% { transform: translateX(3px); } }

/* ── Checkout-Modal — Consent erscheint kontextuell beim Buchen ── */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(15, 23, 32, .55); backdrop-filter: blur(4px); animation: modalFade var(--dur-state) var(--ease-out-quint); }
.modal-overlay[hidden] { display: none; }
.modal-overlay.closing { animation: modalFadeOut .15s var(--ease-out-quint) forwards; }
.modal-overlay.closing .modal-card { animation: modalSink .15s var(--ease-out-quint) forwards; }
.modal-card { position: relative; width: 100%; max-width: 460px; background: #fff; border-radius: 18px; padding: clamp(24px, 4vw, 34px); box-shadow: 0 24px 60px rgba(15, 23, 32, .25); animation: modalRise var(--dur-state) var(--ease-out-quint); }
.modal-close { position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; border: 0; background: transparent; font-size: 26px; line-height: 1; color: var(--ink-faint); cursor: pointer; border-radius: 8px; transition: background var(--dur-state) var(--ease-out-quint), color var(--dur-state) var(--ease-out-quint); }
.modal-close:hover { background: var(--surface, #f3f5f7); color: var(--ink); }
.modal-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--emerald-deep); margin: 0 0 6px; }
.modal-title { font-size: clamp(20px, 3vw, 24px); margin: 0 0 16px; color: var(--ink); }
.modal-summary { border: 1px solid var(--line, #e6e9ec); border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; }
.modal-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--ink-faint); }
.modal-row + .modal-row { margin-top: 8px; }
.modal-row strong { font-size: 15px; color: var(--ink); font-weight: 700; }
.modal-card .consent { font-size: 12px; }
.modal-confirm { width: 100%; justify-content: center; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes modalSink { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(10px) scale(.985); } }

/* hosting — included grid */
.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.inc { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--card-shadow); }
.inc-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inc-ic svg { width: 22px; height: 22px; fill: none; stroke: var(--emerald-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inc-tx h3 { font-family: var(--font-disp); font-weight: 600; font-size: 16px; margin: 0 0 5px; letter-spacing: -0.2px; }
.inc-tx p { margin: 0; font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }

/* process */
.steps { gap: 20px; }
.step { padding: 4px; }
.step-n { font-family: var(--font-disp); font-weight: 700; font-size: 15px; color: var(--emerald); display: inline-block; background: var(--tint); border-radius: 10px; padding: 6px 11px; margin-bottom: 16px; }
.step h3 { font-family: var(--font-disp); font-weight: 600; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.3px; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }

/* portfolio */
.work-card { margin: 0; }
.work-card .ph-work { height: 220px; border-radius: 18px; border: 1px solid var(--line); }
.work-card figcaption { margin-top: 12px; font-weight: 700; font-size: 15px; }

/* ── projects page ── */
.page-hero { background: linear-gradient(180deg,#f0fdf9 0%, #ffffff 72%); padding: clamp(54px, 8vw, 92px) 0 clamp(8px, 2vw, 24px); text-align: center; }
.page-hero .section-head { margin-bottom: 0; }
.page-hero .display { margin-bottom: 16px; }

.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.proj-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--card-shadow); transition: transform var(--dur-hover) var(--ease-out-quint), box-shadow var(--dur-hover) var(--ease-out-quint), border-color var(--dur-hover) var(--ease-out-quint); }
.proj-card:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(12,31,26,0.14); border-color: var(--tint-2); }
.proj-frame { position: relative; }
.proj-shot { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.proj-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform var(--dur-hover) var(--ease-out-quint); }
.proj-card:hover .proj-shot img { transform: scale(1.03); }
.proj-shot.ph { background-color: #f4f7f6; }
.proj-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px; background: linear-gradient(180deg, transparent 55%, rgba(12,31,26,0.28)); opacity: 0; transition: opacity var(--dur-hover) var(--ease-out-quint); }
.proj-card:hover .proj-overlay { opacity: 1; }
.proj-overlay span { background: rgba(255,255,255,0.95); color: var(--emerald-deep); font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(12,31,26,0.18); }
.proj-body { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 22px 24px 24px; }
.proj-body h3 { font-family: var(--font-disp); font-weight: 600; font-size: 20px; letter-spacing: -0.4px; margin: 0 0 5px; }
.proj-tag { font-size: 13px; font-weight: 600; color: var(--ink-faint); }
.proj-view { flex-shrink: 0; align-self: center; font-weight: 800; font-size: 13.5px; color: var(--emerald-deep); white-space: nowrap; }
.proj-cta { text-align: center; }
.proj-cta .h2 { max-width: 600px; margin-left: auto; margin-right: auto; }
.proj-cta .lede { max-width: 520px; margin: 12px auto 28px; }

.work-cta { margin-top: 28px; }
.back-link { display: flex; align-items: center; gap: 7px; width: max-content; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--emerald-deep); transition: gap .15s ease; }
.back-link:hover { gap: 11px; }
.page-hero .back-link { margin: 0 0 22px; }

@media (max-width: 760px) {
  .proj-grid { grid-template-columns: 1fr; }
}

/* quotes */
.quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px 26px; box-shadow: var(--card-shadow); }
.quote p { font-size: 16px; font-weight: 600; line-height: 1.5; margin: 0 0 20px; letter-spacing: -0.2px; }
.quote footer { display: flex; align-items: center; gap: 12px; }
.ph-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--tint-2); flex-shrink: 0; }
.quote cite { font-style: normal; font-size: 13px; font-weight: 700; color: var(--ink-faint); }

/* start / dark */
.band-dark { background: radial-gradient(120% 120% at 0% 0%, #0f342a 0%, #0c1f1a 60%); color: #fff; }
.start-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.on-dark { color: #fff; }
.on-dark-soft { color: rgba(255,255,255,0.72); }
.eyebrow-on-dark { color: #6ee7b7; }
.start-points { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 18px; }
.start-points li { position: relative; padding-left: 24px; font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.85); }
.start-points li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; background: rgba(16,185,129,0.25); box-shadow: inset 0 0 0 2px #34d399; }

.reqform { background: #fff; color: var(--ink); border-radius: 24px; padding: 30px; box-shadow: 0 30px 70px rgba(0,0,0,0.3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reqform label { display: block; margin-bottom: 16px; }
.reqform label > span { display: block; font-size: 13px; font-weight: 800; margin-bottom: 7px; letter-spacing: 0.2px; }
.reqform input, .reqform textarea, .reqform select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 13px; background: #fff;
  padding: 13px 14px; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink);
  outline: none; transition: border-color var(--dur-state) var(--ease-out-quint), box-shadow var(--dur-state) var(--ease-out-quint);
}
.reqform textarea { resize: vertical; line-height: 1.45; }
.reqform input::placeholder, .reqform textarea::placeholder { color: var(--ink-faint); }
.reqform input:focus, .reqform textarea:focus, .reqform select:focus { border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(16,185,129,0.12); }
.budget { position: relative; display: flex; align-items: center; }
.budget .cur { position: absolute; left: 14px; font-family: var(--font-disp); font-weight: 700; font-size: 18px; }
.budget input { padding-left: 32px; font-family: var(--font-disp); font-weight: 700; }
.budget .usd { position: absolute; right: 14px; font-size: 12px; font-weight: 700; color: var(--ink-faint); }
.form-note { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; text-align: center; margin: 14px 0 0; }

/* faq */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 22px; box-shadow: 0 4px 16px rgba(12,31,26,0.04); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-disp); font-weight: 600; font-size: 17px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; letter-spacing: -0.3px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 400; color: var(--emerald-deep); transition: transform var(--dur-state) var(--ease-out-quint); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.faq details[open] p { animation: faqReveal var(--dur-hover) var(--ease-out-quint); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* footer */
.footer { background: #0c1f1a; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { font-family: var(--font-disp); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; }
.footer-cols a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 9px; transition: color var(--dur-state) var(--ease-out-quint); }
.footer-cols a:hover { color: #34d399; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.7); transition: color var(--dur-state) var(--ease-out-quint); }
.footer-legal a:hover { color: #fff; }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 14px; font-weight: 700; font-size: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.3); z-index: 200; opacity: 0; transition: transform .35s var(--ease-out-quint), opacity .35s var(--ease-out-quint); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── responsive ── */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .ph-hero { height: 240px; }
  .start-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 940px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 28px 18px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: transform var(--dur-hover) var(--ease-out-quint), opacity var(--dur-hover) var(--ease-out-quint), visibility 0s linear var(--dur-hover); box-shadow: 0 20px 40px rgba(12,31,26,0.1); margin-left: 0; }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; transition: transform var(--dur-hover) var(--ease-out-quint), opacity var(--dur-hover) var(--ease-out-quint), visibility 0s; }
  .nav-links a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  .burger { display: flex; }
}
@media (max-width: 760px) {
  .nav .btn-sm { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .plan-feat { order: -1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-trust { gap: 14px; }
  .hero-visual { display: none; }
}
@media (max-width: 440px) {
  .wrap { padding: 0 18px; }
  .brand-dim { display: none; }
  .reqform { padding: 22px 18px; }
  .switch button { padding: 6px 9px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
