:root {
  --peach: #f9b48e;
  --peach-deep: #ef9461;
  --peach-soft: #fde6d8;
  --mint: #bfe3da;
  --mint-deep: #7cc4b3;
  --mint-soft: #e6f4f0;
  --ink: #2b2724;
  --ink-soft: #5c554f;
  --cream: #fff9f4;
  --white: #ffffff;
  --line: rgba(43, 39, 36, 0.10);
  --shadow: 0 18px 50px -20px rgba(43, 39, 36, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(43, 39, 36, 0.38);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, .btn, .eyebrow, .stat__num, .logo-text { font-family: "Poppins", sans-serif; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Logo (recolorable via mask) ---------- */
.logo-mark {
  display: inline-block;
  width: 132px;
  height: 44px;
  background-color: var(--ink);
  -webkit-mask: url("assets/cvoov-wordmark.png") no-repeat center / contain;
  mask: url("assets/cvoov-wordmark.png") no-repeat center / contain;
}
.logo-mark--peach { background-color: var(--peach); }
.logo-mark--mint { background-color: var(--mint-deep); }
.logo-mark--footer { width: 150px; height: 50px; background-color: var(--mint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--cream); box-shadow: 0 10px 24px -10px rgba(43,39,36,.6); }
.btn--primary:hover { transform: translateY(-2px); background: #1f1c19; }
.btn--peach { background: var(--peach); color: var(--ink); }
.btn--peach:hover { transform: translateY(-2px); background: var(--peach-deep); color: var(--white); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--peach-deep); margin-bottom: 16px;
}
.section--mint .eyebrow, .section--ink .eyebrow { color: var(--peach-deep); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 244, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(43,39,36,.5); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.nav__logo .logo-mark { width: 116px; height: 38px; background-color: var(--mint-deep); }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--ink-soft); position: relative; transition: color .18s ease; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--peach); transition: width .2s ease; }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 11px 22px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section--mint { background: var(--mint-soft); }
.section--peach { background: var(--peach-soft); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: var(--cream); }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__head h2 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
.section__sub { margin-top: 18px; color: var(--ink-soft); font-size: 19px; }
.section--ink .section__sub { color: rgba(255,249,244,.74); }
h2 .hl, h1 .hl {
  color: var(--peach-deep);
  background-image: linear-gradient(100deg, var(--peach-deep) 0%, var(--peach) 28%, var(--peach-deep) 56%);
  background-size: 220% 100%; background-position: 0% 50%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hlShimmer 7s ease-in-out infinite;
}
.section--ink h2 .hl {
  color: var(--peach);
  background-image: linear-gradient(100deg, var(--peach) 0%, #fff7ef 35%, var(--peach) 64%);
}
@keyframes hlShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }
.page-hero p { margin: 20px auto 0; max-width: 620px; font-size: 19px; color: var(--ink-soft); }

/* ---------- HOME hero ---------- */
.hero { padding: 70px 0 96px; position: relative; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6.2vw, 70px); line-height: 1.02; font-weight: 800; letter-spacing: -0.025em; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); margin: 24px 0 34px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 28px; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-deep); box-shadow: 0 0 0 4px rgba(124,196,179,.28); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(124,196,179,.28); } 50% { box-shadow: 0 0 0 7px rgba(124,196,179,.12); } }

.hero__visual {
  position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center;
  border-radius: 30px; background: linear-gradient(150deg, var(--mint-soft), var(--white)); border: 1px solid var(--line);
}
.orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .9; will-change: transform; transform: translateY(var(--py, 0)); }
.orb--peach { width: 210px; height: 210px; background: radial-gradient(circle at 30% 30%, var(--peach), var(--peach-deep)); top: -40px; right: 26px; }
.orb--mint { width: 160px; height: 160px; background: radial-gradient(circle at 40% 40%, var(--mint), var(--mint-deep)); bottom: -34px; left: 12px; }
.card-float {
  position: absolute; z-index: 4; background: var(--white); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--line);
  will-change: transform; transform: translateY(var(--py, 0));
}
.card-float--a { top: 40px; left: -14px; }
.card-float--b { bottom: 44px; right: -12px; }

/* Pulsing core (broadcast vibe) */
.hero-core { position: absolute; z-index: 1; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.85), rgba(255,255,255,0) 70%); }
.pulse { position: absolute; z-index: 1; left: 50%; top: 50%; width: 130px; height: 130px; margin: -65px 0 0 -65px; border-radius: 50%; border: 2px solid var(--peach); opacity: 0; animation: pulse 3.4s ease-out infinite; }
.pulse--2 { border-color: var(--mint-deep); animation-delay: 1.1s; }
.pulse--3 { border-color: var(--peach-deep); animation-delay: 2.2s; }
@keyframes pulse { 0% { transform: scale(.55); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

/* Floating platform bubbles, diamond around the pulsing core */
.bubble { position: absolute; z-index: 3; width: 54px; height: 54px; left: 50%; top: 50%; }
.bubble__inner {
  width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow); animation: bob 4.6s ease-in-out infinite; animation-delay: var(--d, 0s);
}
.bubble__inner svg { width: 58%; height: 58%; }
.bubble--fb .bubble__inner { background: #1877f2; color: #fff; }
.bubble--ig .bubble__inner { background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7); color: #fff; }
.bubble--tt .bubble__inner { background: #111; color: #fff; }
.bubble--snap .bubble__inner { background: #fffc00; color: #111; }
.b-fb   { margin: -94px 0 0 -27px; }   /* top */
.b-ig   { margin: -27px 0 0 40px; }    /* right */
.b-tt   { margin: 40px 0 0 -27px; }    /* bottom */
.b-snap { margin: -27px 0 0 -94px; }   /* left */
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.cf__label { font-size: 12px; color: var(--ink-soft); }
.cf__value { font-weight: 700; font-size: 22px; color: var(--peach-deep); font-family: "Poppins", sans-serif; }
.card-float--b .cf__value { color: var(--mint-deep); }

/* ---------- Stats band ---------- */
.stats { padding: 0 0 8px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 40px 28px; box-shadow: var(--shadow-lg);
}
.stat { text-align: center; padding: 6px 8px; }
.stat__num { display: block; font-weight: 800; font-size: clamp(30px, 4.6vw, 46px); color: var(--peach); line-height: 1; }
.stat__label { font-size: 13.5px; color: rgba(255,249,244,.74); letter-spacing: .02em; margin-top: 8px; }

/* ---------- Platforms strip ---------- */
.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.platform {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--line);
  text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.platform:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.platform__icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center; }
.platform__icon svg { width: 30px; height: 30px; }
.platform--fb .platform__icon { background: #e7f0ff; color: #1877f2; }
.platform--ig .platform__icon { background: #fde6f0; color: #d6249f; }
.platform--tt .platform__icon { background: #e9fbfa; color: #111; }
.platform--snap .platform__icon { background: #fffbe0; color: #111; }
.platform h3 { font-size: 20px; margin-bottom: 8px; }
.platform p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Chart section ---------- */
.chart-block { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.chart-block__copy h2 { font-size: clamp(28px, 3.8vw, 42px); line-height: 1.12; margin-bottom: 18px; }
.chart-block__copy p { color: var(--ink-soft); font-size: 18px; margin-bottom: 14px; }
.chart-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 32px 30px 24px; box-shadow: var(--shadow); }
.chart-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.chart-card__title { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.chart-card__big { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 30px; color: var(--peach-deep); }

/* Bar chart */
.bars { display: flex; align-items: flex-end; gap: 18px; height: 240px; padding-top: 10px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; justify-content: flex-end; }
.bar {
  width: 100%; max-width: 60px; border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--peach), var(--peach-deep));
  height: 0; transition: height 1.1s cubic-bezier(.22,1,.36,1);
}
.bar-col:nth-child(odd) .bar { background: linear-gradient(180deg, var(--mint), var(--mint-deep)); }
.bar-col__label { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.bar-col__val { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 14px; }

/* Line chart (SVG) */
.linechart { width: 100%; height: auto; }
.linechart .line-path { fill: none; stroke: var(--peach-deep); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.linechart .area-path { fill: url(#areaGrad); opacity: 0; transition: opacity 1s ease .4s; }
.linechart .dot-pt { fill: var(--white); stroke: var(--peach-deep); stroke-width: 3; opacity: 0; transition: opacity .4s ease; }
.chart-card.is-visible .area-path { opacity: 1; }
.chart-card.is-visible .dot-pt { opacity: 1; }

/* Donut ring */
.rings { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.ring { text-align: center; }
.ring svg { display: block; margin: 0 auto; }
.ring .ring-track { fill: none; stroke: var(--line); stroke-width: 12; }
.ring .ring-fill { fill: none; stroke: var(--peach-deep); stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(.22,1,.36,1); }
.ring:nth-child(even) .ring-fill { stroke: var(--mint-deep); }
.ring__label { margin-top: 10px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.ring__center { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 22px; fill: var(--ink); }

/* ---------- Differentiators ---------- */
.diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.diff {
  background: var(--white); border-radius: var(--radius); padding: 32px 30px; border: 1px solid var(--line);
  display: flex; gap: 20px; align-items: flex-start; transition: transform .25s ease, box-shadow .25s ease;
}
.diff:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.diff__num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 34px; color: var(--peach); line-height: 1; flex-shrink: 0; }
.diff h3 { font-size: 20px; margin-bottom: 8px; }
.diff p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Generic feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; margin-bottom: 20px; background: var(--mint-soft); position: relative; }
.card__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 27px; height: 27px;
  background: var(--peach-deep); -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
}
.icon-target::after { -webkit-mask-image: var(--i-target); mask-image: var(--i-target); }
.icon-strategy::after { -webkit-mask-image: var(--i-strategy); mask-image: var(--i-strategy); }
.icon-retarget::after { -webkit-mask-image: var(--i-retarget); mask-image: var(--i-retarget); }
.icon-chart::after { -webkit-mask-image: var(--i-chart); mask-image: var(--i-chart); }
.icon-spark::after { -webkit-mask-image: var(--i-spark); mask-image: var(--i-spark); }
.icon-shield::after { -webkit-mask-image: var(--i-shield); mask-image: var(--i-shield); }
:root {
  --i-target: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3C/svg%3E");
  --i-strategy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M7 14l4-4 3 3 5-6'/%3E%3C/svg%3E");
  --i-retarget: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-3-6.7'/%3E%3Cpath d='M21 4v5h-5'/%3E%3C/svg%3E");
  --i-chart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='12' width='4' height='8'/%3E%3Crect x='10' y='7' width='4' height='13'/%3E%3Crect x='17' y='3' width='4' height='17'/%3E%3C/svg%3E");
  --i-spark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v6M12 16v6M2 12h6M16 12h6M5 5l4 4M15 15l4 4M19 5l-4 4M9 15l-4 4'/%3E%3C/svg%3E");
  --i-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Process steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--line); position: relative; }
.step__num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 30px; color: var(--peach); display: block; margin-bottom: 12px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Big result band ---------- */
.result-band { text-align: center; }
.result-band .big-number { display: flex; align-items: baseline; justify-content: center; gap: clamp(8px, 1.2vw, 14px); flex-wrap: wrap; font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(56px, 13vw, 150px); line-height: 1; color: var(--peach); letter-spacing: -0.03em; }
.big-number__note { white-space: nowrap; font-size: clamp(30px, 4.6vw, 46px); color: var(--peach); letter-spacing: 0; }
.result-band p { font-size: 20px; color: rgba(255,249,244,.8); margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.08; max-width: 760px; margin: 0 auto 16px; }
.cta p { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin: 0 auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about__copy h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 18px; line-height: 1.14; }
.about__copy p { color: var(--ink-soft); margin-bottom: 14px; font-size: 17px; }
.values { list-style: none; display: grid; gap: 16px; }
.values li { background: var(--white); border-radius: 16px; padding: 20px 22px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.values strong { font-family: "Poppins", sans-serif; font-size: 17px; }
.values span { color: var(--ink-soft); font-size: 15px; }

.timeline { list-style: none; max-width: 760px; margin: 0 auto; position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 3px; background: linear-gradient(var(--peach), var(--mint-deep)); border-radius: 3px; }
.timeline li { position: relative; padding: 0 0 34px 26px; }
.timeline li::before { content: ""; position: absolute; left: -30px; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--peach-deep); box-shadow: 0 0 0 5px var(--cream); }
.timeline .t-year { font-family: "Poppins", sans-serif; font-weight: 700; color: var(--peach-deep); font-size: 15px; }
.timeline h3 { font-size: 19px; margin: 4px 0 6px; }
.timeline p { color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__copy h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.12; margin-bottom: 16px; }
.contact__copy p { color: var(--ink-soft); font-size: 17px; max-width: 460px; }
.contact__meta { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
.contact__meta li { display: flex; flex-direction: column; gap: 2px; }
.cm__k { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--peach-deep); font-weight: 600; }
.contact__meta a { font-weight: 600; }
.contact__book { margin-top: 28px; }
.contact__book-k { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--peach-deep); font-weight: 600; margin-bottom: 10px; }
.booking { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 12px; box-shadow: var(--shadow); max-width: 820px; margin: 0 auto; }
.booking iframe { display: block; border-radius: 14px; }

.form { background: var(--white); border-radius: 24px; padding: 34px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line);
  font-family: inherit; font-size: 15px; background: var(--cream); color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--peach); box-shadow: 0 0 0 4px rgba(249,180,142,.25); background: var(--white);
}
.field textarea { resize: vertical; }
.form__submit { width: 100%; margin-top: 6px; }
.form__note { margin-top: 16px; text-align: center; color: var(--mint-deep); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 60px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer__tag { color: rgba(255,249,244,.7); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: rgba(255,249,244,.82); font-size: 15px; transition: color .18s ease; }
.footer__links a:hover { color: var(--peach); }
.footer__social { display: flex; gap: 14px; justify-content: center; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,249,244,.08); color: rgba(255,249,244,.82); transition: background .18s ease, color .18s ease, transform .18s ease; }
.footer__social a:hover { background: var(--mint-deep); color: var(--ink); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__copy { font-size: 13px; color: rgba(255,249,244,.5); margin-top: 8px; }

/* ---------- Scroll animation engine ---------- */
[data-anim] {
  opacity: 0; will-change: transform, opacity; filter: blur(6px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .7s cubic-bezier(.22,1,.36,1);
}
[data-anim="up"] { transform: translateY(40px); }
[data-anim="down"] { transform: translateY(-40px); }
[data-anim="left"] { transform: translateX(-60px); }
[data-anim="right"] { transform: translateX(60px); }
[data-anim="zoom"] { transform: scale(.88); }
[data-anim="flip"] { transform: perspective(800px) rotateX(18deg); transform-origin: top; }
[data-anim="blur"] { transform: scale(1.04); }
[data-anim].is-visible { opacity: 1; transform: none; filter: none; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
  background: linear-gradient(90deg, var(--peach), var(--mint-deep));
}

/* ---------- Icon micro-interactions ---------- */
.card__icon, .platform__icon { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.platform:hover .platform__icon { transform: translateY(-4px) scale(1.07); }

/* ---------- Pointer tilt (set up by JS) ---------- */
.is-tilt { transform-style: preserve-3d; }

/* ---------- Hover-only flourishes ---------- */
@media (hover: hover) and (pointer: fine) {
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
  }
  .btn:hover::after { left: 150%; }
  .logo-mark { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
  .nav__logo:hover .logo-mark { transform: rotate(-6deg) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .bar { transition: none; }
  .hl { animation: none !important; }
  .scroll-progress { display: none; }
  .btn::after { display: none; }
  .card:hover .card__icon, .platform:hover .platform__icon { transform: none; }
  .is-tilt { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { order: 0; }
  .hero__visual { order: 1; min-height: 340px; }
  .chart-block { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .diffs { grid-template-columns: 1fr; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); padding: 18px 24px; gap: 18px; border-bottom: 1px solid var(--line); margin: 0;
  }
  .cards, .cards--4, .steps, .platforms { grid-template-columns: 1fr; }
  .card-float--a { left: 2px; } .card-float--b { right: 2px; }
}
