/* ===== Tokens ===== */
:root {
  --bg: #131417;
  --bg-alt: #1B1C20;
  --surface: #1E2024;
  --surface-2: #26282D;
  --gold: #F2C10F;
  --gold-soft: rgba(242, 193, 15, 0.14);
  --amber: #E8A317;
  --cream: #F2F3F5;
  --muted: #9BA0A8;
  --line: rgba(255, 255, 255, 0.10);
  --line-gold: rgba(242, 193, 15, 0.38);
  --line-soft: rgba(255, 255, 255, 0.07);
  --radius: 14px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-gold: 0 10px 32px rgba(242, 193, 15, 0.16);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --mx: 50%;
  --my: 30%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--cream); margin: 0 0 .5em; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--bg);
  padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 40px); }
.section-title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
#kontakt .section-title { font-size: clamp(24px, 2.6vw, 32px); }
.section-lead { font-size: 17px; max-width: 620px; }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  font-family: var(--font-body);
}
.btn .ico { width: 18px; height: 18px; fill: currentColor; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--amber)); color: #15161A; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(242,193,15,0.26); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--amber); }
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .55s var(--ease);
}
.btn:hover::before { left: 130%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(19, 20, 23, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.35); background: rgba(19, 20, 23, 0.94); }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  z-index: 300; transition: width .1s linear;
}
.header-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.mark-hex { fill: var(--bg); stroke: var(--gold); stroke-width: 2.5; animation: hexPulse 3.2s ease-in-out infinite; transform-origin: 32px 32px; }
.mark-hex-inner { fill: none; stroke: var(--line-gold); stroke-width: 1; stroke-dasharray: 4 3; animation: spin 14s linear infinite; transform-origin: 32px 32px; }
@keyframes hexPulse {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(242,193,15,0)); }
  50% { filter: drop-shadow(0 0 3px rgba(242,193,15,.7)); }
}
.mark-bee { animation: beeFly 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes beeFly {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  22%  { transform: translate(7px, -5px) rotate(10deg); }
  50%  { transform: translate(11px, 1px) rotate(-6deg); }
  74%  { transform: translate(4px, 6px) rotate(8deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}
.bee-body { fill: var(--gold); }
.bee-stripe { fill: #1A1B1F; }
.bee-head { fill: #1A1B1F; }
.bee-wing { fill: rgba(255,255,255,.85); transform-box: fill-box; transform-origin: center; animation: wingFlap .18s ease-in-out infinite alternate; }
.bee-wing-r { animation-delay: .02s; }
@keyframes wingFlap {
  from { transform: scaleY(1); }
  to { transform: scaleY(.4); }
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-size: 15px; color: var(--muted); transition: color .15s; }
.main-nav a:hover { color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: none; border: 1px solid var(--line); border-radius: 8px; }
.nav-toggle span { display: block; height: 2px; width: 18px; margin: 0 auto; background: var(--cream); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px; border-top: 1px solid var(--line-soft); }
.mobile-nav a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }
.mobile-nav.open { display: flex; }

/* ===== Honeycomb background pattern (animated, shared across sections) ===== */
@keyframes combDrift {
  from { background-position: 0 0; }
  to { background-position: 220px 190px; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.comb-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cg fill='none' stroke='%23F2C10F' stroke-opacity='0.16' stroke-width='1.4'%3E%3Cpolygon points='30,2 60,20 60,56 30,74 0,56 0,20'/%3E%3Cpolygon points='90,2 120,20 120,56 90,74 60,56 60,20'/%3E%3Cpolygon points='30,56 60,74 60,110 30,128 0,110 0,74'/%3E%3Cpolygon points='90,56 120,74 120,110 90,128 60,110 60,74'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 190px;
  animation: combDrift 34s linear infinite;
}
.comb-bg--fade-bottom { mask-image: linear-gradient(to bottom, black, transparent 92%); -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%); }
.comb-bg--fade-top { mask-image: linear-gradient(to top, black, transparent 92%); -webkit-mask-image: linear-gradient(to top, black, transparent 92%); opacity: .7; }
.comb-bg--fade-edges { mask-image: radial-gradient(ellipse 62% 75% at 50% 50%, black 35%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse 62% 75% at 50% 50%, black 35%, transparent 85%); opacity: .55; }

/* cursor-follow spotlight glow */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(480px circle at var(--mx) var(--my), rgba(242,183,5,.16), transparent 70%);
  transition: background .1s linear;
}

/* ambient floating glow blobs */
.hero-blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .55; }
.hero-blob-a { width: 340px; height: 340px; background: radial-gradient(circle, rgba(242,183,5,.35), transparent 70%); top: -80px; right: 6%; animation: floatBlob 12s ease-in-out infinite; }
.hero-blob-b { width: 260px; height: 260px; background: radial-gradient(circle, rgba(201,122,12,.28), transparent 70%); bottom: -60px; left: 8%; animation: floatBlob 14s ease-in-out infinite reverse; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 22px) scale(1.08); }
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 88px 0 96px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 54px); }
.accent { color: var(--amber); position: relative; }
.accent::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 4px; height: .32em; z-index: -1;
  background: var(--gold-soft); border-radius: 4px;
}
.hero-lead { font-size: 18px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hex-cluster { position: relative; width: 100%; max-width: 380px; margin: 0 auto; aspect-ratio: 1; }
.hex { position: absolute; width: 34%; aspect-ratio: 1; background: var(--surface); border: 1px solid var(--line-gold); clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); animation: floatHex 6s ease-in-out infinite; }
.hex svg { width: 40%; height: 40%; fill: var(--amber); }
.hex.h1 { top: 4%; left: 30%; width: 40%; background: linear-gradient(150deg, var(--surface-2), var(--surface)); animation-delay: 0s; }
.hex.h2 { top: 30%; left: 2%; animation-delay: .6s; }
.hex.h3 { top: 30%; left: 58%; animation-delay: 1.2s; }
.hex.h4 { top: 56%; left: 30%; width: 40%; animation-delay: 1.8s; }
.hex.h5 { top: 82%; left: 30%; width: 40%; opacity: .9; animation-delay: 2.4s; }
@keyframes floatHex {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Ticker strip ===== */
.ticker {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: var(--bg-alt); padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 16px; width: max-content; white-space: nowrap;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); animation: tickerScroll 26s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 16px; }
.ticker-track .dot { color: var(--gold); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-contact { background: var(--bg-alt); overflow: hidden; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.comb-grid .reveal:nth-child(1) { transition-delay: .02s; }
.comb-grid .reveal:nth-child(2) { transition-delay: .08s; }
.comb-grid .reveal:nth-child(3) { transition-delay: .14s; }
.comb-grid .reveal:nth-child(4) { transition-delay: .20s; }
.comb-grid .reveal:nth-child(5) { transition-delay: .08s; }
.comb-grid .reveal:nth-child(6) { transition-delay: .14s; }
.comb-grid .reveal:nth-child(7) { transition-delay: .20s; }
.process .reveal:nth-child(1) { transition-delay: 0s; }
.process .reveal:nth-child(2) { transition-delay: .08s; }
.process .reveal:nth-child(3) { transition-delay: .16s; }
.process .reveal:nth-child(4) { transition-delay: .24s; }

/* ===== Comb service grid (signature element) ===== */
.comb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.comb-cell { position: relative; }
.comb-cell:nth-child(2), .comb-cell:nth-child(4), .comb-cell:nth-child(6) { transform: translateY(38px); }
.comb-cell-wide { grid-column: span 2; transform: translateY(0) !important; }
.cell-inner {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  clip-path: polygon(12% 4%, 88% 4%, 100% 50%, 88% 96%, 12% 96%, 0% 50%);
  padding: 46px 30px;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.comb-cell-wide .cell-inner { clip-path: none; border-radius: var(--radius); padding: 34px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.cell-inner:hover { border-color: var(--gold); background: var(--surface-2); transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-gold); }
.cell-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--gold-soft); border-radius: 10px; margin-bottom: 18px; transition: transform .25s var(--ease), background .25s var(--ease); animation: iconBreathe 4.5s ease-in-out infinite; }
.cell-inner:hover .cell-icon { transform: rotate(-8deg) scale(1.1); background: var(--gold); }
.cell-inner:hover .cell-icon svg { fill: #15161A; }
.cell-icon svg { width: 22px; height: 22px; fill: var(--gold); transition: fill .25s var(--ease); }
.comb-cell h3 { font-size: 19px; margin-bottom: 10px; }
.comb-cell p { font-size: 14.5px; margin: 0; }
@keyframes iconBreathe {
  0%, 100% { box-shadow: 0 0 0 rgba(242,193,15,0); }
  50% { box-shadow: 0 0 16px rgba(242,193,15,.35); }
}
.comb-cell:nth-child(1) .cell-icon { animation-delay: 0s; }
.comb-cell:nth-child(2) .cell-icon { animation-delay: .5s; }
.comb-cell:nth-child(3) .cell-icon { animation-delay: 1s; }
.comb-cell:nth-child(4) .cell-icon { animation-delay: 1.5s; }
.comb-cell:nth-child(5) .cell-icon { animation-delay: 2s; }
.comb-cell:nth-child(6) .cell-icon { animation-delay: 2.5s; }
.comb-cell:nth-child(7) .cell-icon { animation-delay: 3s; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: var(--cream); font-size: 15.5px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; background: var(--gold-soft); border: 1px solid var(--gold); clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%); }
.honey-frame { max-width: 320px; margin: 0 auto; position: relative; }
.honey-frame::before {
  content: ""; position: absolute; inset: -14px; border: 1px dashed var(--line-gold);
  border-radius: 50%; animation: spin 20s linear infinite;
}
.honey-frame::after {
  content: ""; position: absolute; inset: -5px; border: 1px solid var(--line);
  border-radius: 50%; animation: spin 26s linear infinite reverse;
}
.honey-frame svg { position: relative; z-index: 1; }
.frame-outer { fill: none; stroke: var(--line); stroke-width: 2; }
.frame-inner { fill: var(--surface); stroke: var(--gold); stroke-width: 1.5; opacity: .8; }
.frame-core { fill: var(--gold-soft); stroke: var(--gold); stroke-width: 1.5; animation: hexPulse 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* ===== Process ===== */
.process { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 18px; left: 6%; right: 6%; height: 2px; display: block;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
  opacity: .55; animation: dashFlow 1.4s linear infinite;
}
@keyframes dashFlow { to { background-position: 26px 0; } }
.process-step { position: relative; padding-top: 6px; }
.step-num { display: inline-block; font-family: var(--font-mono); font-size: 14px; color: var(--bg); background: var(--gold); width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 38px; margin-bottom: 18px; position: relative; z-index: 1; animation: iconBreathe 4.5s ease-in-out infinite; }
.process-step:nth-child(1) .step-num { animation-delay: 0s; }
.process-step:nth-child(2) .step-num { animation-delay: .35s; }
.process-step:nth-child(3) .step-num { animation-delay: .7s; }
.process-step:nth-child(4) .step-num { animation-delay: 1.05s; }
.process-step h3 { font-size: 18px; }
.process-step p { font-size: 14.5px; }

/* ===== Contact ===== */
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color .18s, transform .18s;
}
.contact-method:hover { border-color: var(--gold); transform: translateX(4px); }
.cm-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; }
.cm-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-method strong { color: var(--cream); font-size: 15px; }
.contact-method span span { font-size: 14px; color: var(--muted); }
.contact-whatsapp { border-color: rgba(37,211,102,0.25); }
.contact-whatsapp .cm-icon { background: rgba(37,211,102,0.14); }
.contact-whatsapp .cm-icon svg { fill: #25D366; }

.contact-form-wrap { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-split > div { margin-bottom: 0; }
.contact-form label { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; background: var(--bg-alt); border: 1px solid var(--line-soft);
  border-radius: 10px; color: var(--cream); font-family: var(--font-body); font-size: 15px;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 14px; font-size: 14px; min-height: 20px; }
.form-status.ok { color: #7ED957; }
.form-status.err { color: #FF7A6B; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line-soft); padding-top: 48px; background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: center; padding-bottom: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { margin: 2px 0 0; font-size: 13.5px; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { color: var(--muted); font-size: 14.5px; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-size: 14.5px; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 18px 24px; text-align: center; }
.footer-bottom p { margin: 0; font-size: 13px; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  animation: pulseWa 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 32px rgba(0,0,0,.45); animation-play-state: paused; }
.wa-float svg { width: 28px; height: 28px; fill: #0B1F12; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 160;
  max-width: 560px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; min-width: 200px; }
.cookie-banner[hidden] { display: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .comb-grid { grid-template-columns: repeat(2, 1fr); }
  .comb-cell:nth-child(2n) { transform: translateY(0); }
  .comb-cell-wide { grid-column: span 2; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process::before { display: none; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-inner .btn-small { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .form-row-split { grid-template-columns: 1fr; }
  .comb-grid { grid-template-columns: 1fr; }
  .comb-cell-wide { grid-column: span 1; }
  .cell-inner { clip-path: none !important; border-radius: var(--radius); padding: 30px; }
  .process { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
