:root {
  --navy: #0F2A52;
  --navy-2: #173a6b;
  --ice: #7FC8E8;
  --ice-soft: #cfe7f4;
  --paper: #F4F7FB;
  --accent: #FFD84D;
  --ink: #0a1830;
  --line: rgba(15, 42, 82, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site { width: 100%; overflow-x: hidden; }

h1, h2, h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 600;
}

/* ─── NAV ─────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: rgba(244, 247, 251, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.nav-cta .arrow { transition: transform 0.2s ease; }
.nav-cta:hover .arrow { transform: translateX(3px); }

/* ─── HERO ─────────────────────────── */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  padding: 72px 56px 32px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
}
.hero[data-layout="centered"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: 60px;
}
.hero[data-layout="centered"] .hero-meta { justify-content: center; }
.hero[data-layout="centered"] .hero-actions { justify-content: center; }
.hero[data-layout="centered"] .hero-visual { display: none; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 4px rgba(127, 200, 232, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127, 200, 232, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(127, 200, 232, 0); }
}

.hero-title {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  color: var(--navy);
  font-weight: 600;
}
.hero-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--ice) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(10, 24, 48, 0.7);
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
  transition: border-color 0.2s ease;
}
.btn-ghost:hover { border-color: var(--navy); }

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.meta-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 12px;
  color: rgba(10, 24, 48, 0.55);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, var(--ice) 0%, var(--ice-soft) 35%, transparent 70%),
    var(--paper);
  border-radius: 50%;
  width: 110%;
  left: -5%;
  height: 100%;
  filter: blur(2px);
  opacity: 0.55;
}
.hero-product {
  position: relative;
  height: 100%;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(15, 42, 82, 0.18));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-freddo-peek {
  position: absolute;
  bottom: -10px;
  right: 10px;
  height: 130px;
  z-index: 3;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 16px rgba(15, 42, 82, 0.2));
}
.hero-stamp {
  position: absolute;
  top: 30px;
  left: 0;
  width: 130px;
  height: 130px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transform: rotate(-12deg);
  box-shadow: 0 12px 30px rgba(15, 42, 82, 0.18);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(348deg); } }
.stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-family: "Space Grotesk", sans-serif;
}
.stamp-big {
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* marquee */
.marquee {
  background: var(--navy);
  color: white;
  overflow: hidden;
  padding: 22px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee var(--speed) linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-item:nth-child(even) .marquee-text { color: var(--ice); font-style: italic; font-weight: 300; }
.marquee-dot { color: var(--ice); font-size: 18px; }
@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

/* ─── BRAND PRODUCT ─────────────────────────── */
.brand-product {
  padding: 120px 56px 100px;
  max-width: 1480px;
  margin: 0 auto;
}
.bp-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: end;
}
.bp-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 24, 48, 0.5);
}
.bp-eyebrow-light { color: rgba(255, 255, 255, 0.55); }
.bp-title {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  color: var(--navy);
}

.bp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.bp-card {
  background: white;
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.bp-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--ice-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.bp-card-tag-light {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.bp-card-parent {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}
.bp-logo-acquamex {
  width: 220px;
  margin-bottom: 28px;
}
.bp-text {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 24, 48, 0.72);
  max-width: 360px;
  margin: 0 0 auto;
}
.bp-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.bp-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
}
.bp-stat-lbl {
  font-size: 12px;
  color: rgba(10, 24, 48, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bp-card-product {
  grid-column: 2;
  grid-row: 1;
  background: var(--navy);
  color: white;
}
.bp-card-product .bp-card-tag {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.bp-logo-hielo {
  width: 110px;
  margin-bottom: 18px;
}
.bp-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.bp-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bp-product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-pm-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bp-pm-row span { color: rgba(255, 255, 255, 0.55); }
.bp-pm-row strong { color: var(--ice); font-weight: 500; }

.bp-card-freddo {
  grid-column: 2;
  grid-row: 2;
  background: var(--ice);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 36px;
}
.bp-freddo {
  height: 160px;
  width: auto;
  flex-shrink: 0;
  transform: translateY(8px);
}
.bp-freddo-text {
  flex: 1;
}
.bp-freddo-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
}
.bp-freddo-role {
  margin-top: 6px;
  font-size: 14px;
  color: var(--navy);
  opacity: 0.75;
  font-style: italic;
}

/* ─── PROCESS ─────────────────────────── */
.process {
  background: var(--navy);
  color: white;
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 200, 232, 0.18), transparent 70%);
  pointer-events: none;
}
.process-header {
  max-width: 1480px;
  margin: 0 auto 80px;
}
.process-title {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  color: white;
  max-width: 900px;
}
.process-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--ice);
}

.process-body {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.process-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-counter {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.counter-now {
  font-family: "Space Grotesk", sans-serif;
  font-size: 140px;
  font-weight: 600;
  line-height: 0.85;
  color: var(--ice);
  letter-spacing: -0.04em;
}
.counter-of {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.process-active-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: white;
  min-height: 38px;
}
.process-rail {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.rail-tick {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.rail-tick.on { background: var(--ice); }
.process-freddo {
  height: 200px;
  width: auto;
  margin-top: 40px;
  opacity: 0.9;
  align-self: flex-start;
}

.process-track {
  display: flex;
  flex-direction: column;
}
.step-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.4;
}
.step-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.step-row.active { opacity: 1; transform: translateX(8px); }
.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.step-row.active .step-num { color: var(--ice); }
.step-content { min-width: 0; }
.step-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
}
.step-caption {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}
.step-bar {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease, background 0.4s ease;
}
.step-row.active .step-bar { width: 120px; background: var(--ice); }

/* ─── DISTRIBUTION ─────────────────────────── */
.distribution {
  padding: 120px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
.dist-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.dist-title {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  color: var(--navy);
}
.dist-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 24, 48, 0.7);
  max-width: 380px;
  margin: 0;
}
.dist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dist-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.dist-card:hover {
  transform: translateY(-6px);
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.dist-card:hover .dist-tag { background: rgba(255, 255, 255, 0.15); color: white; }
.dist-card:hover .dist-card-desc { color: rgba(255, 255, 255, 0.7); }
.dist-card:hover .dist-card-arrow { color: var(--ice); transform: translate(4px, -4px); }
.dist-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--ice-soft);
  color: var(--navy);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}
.dist-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 28px;
  color: inherit;
}
.dist-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10, 24, 48, 0.65);
  margin-top: 10px;
  flex: 1;
}
.dist-card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 22px;
  color: var(--navy);
  transition: transform 0.25s ease, color 0.25s ease;
}

/* ─── CONTACT ─────────────────────────── */
.contact {
  background: var(--navy);
  color: white;
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: "";
  position: absolute;
  bottom: -240px;
  left: -240px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 200, 232, 0.15), transparent 70%);
  pointer-events: none;
}
.contact-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.contact-title {
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  color: white;
  margin-top: 16px;
}
.contact-channels {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.cc-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left 0.2s ease;
}
.cc-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
a.cc-row:hover { padding-left: 8px; }
.cc-key {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  align-self: center;
}
.cc-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-form {
  background: white;
  color: var(--ink);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-field span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(10, 24, 48, 0.55);
  font-weight: 500;
}
.cf-field input,
.cf-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  resize: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: white;
}
.cf-submit { margin-top: 6px; align-self: flex-start; }

/* ─── FOOTER ─────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 56px 32px;
}
.footer-top {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img {
  filter: brightness(0) invert(1);
  height: 28px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
}
.footer-cols a:hover { color: var(--ice); }
.footer-bottom {
  max-width: 1480px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 460px; }
  .bp-grid { grid-template-columns: 1fr; }
  .bp-card-parent, .bp-card-product, .bp-card-freddo { grid-column: 1; grid-row: auto; }
  .process-body { grid-template-columns: 1fr; gap: 40px; }
  .process-sticky { position: static; }
  .dist-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-header { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .bp-header { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .hero-grid, .brand-product, .process, .distribution, .contact, .footer { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 14px 20px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .step-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 28px 0; }
  .step-bar { display: none; }
  .step-num { font-size: 36px; }
  .step-title { font-size: 22px; }
  .dist-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 24px; gap: 28px; }
  .marquee-track { gap: 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
