/* ============================================================
   DressCoder — styles
   Brand: navy #2E2A4F · pink #F5567C · coral #FF8562
   Font:  Roboto
   ============================================================ */

:root {
  --navy: #2E2A4F;
  --navy-deep: #221F3D;
  --ink: #211E38;
  --muted: #5D5A72;
  --pink: #F5567C;
  --coral: #FF8562;
  --grad: linear-gradient(120deg, #F5567C 0%, #FF8562 100%);
  --bg: #ffffff;
  --bg-soft: #F7F5FB;
  --line: rgba(46, 42, 79, 0.10);
  --radius: 20px;
  --shadow: 0 20px 50px -12px rgba(46, 42, 79, 0.14);
  --shadow-soft: 0 8px 24px -8px rgba(46, 42, 79, 0.12);
  --container: 1160px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Typography helpers ---------- */

h1, h2, h3 { color: var(--ink); letter-spacing: -0.015em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 19px;
  font-weight: 300;
  color: var(--muted);
  max-width: 720px;
}

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.mini-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 30px 0 16px;
  padding-left: 14px;
  position: relative;
}
.mini-title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}

.pill {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(245, 86, 124, 0.10);
}
.pill-dark {
  color: #FFB9C9;
  background: rgba(245, 86, 124, 0.18);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(245, 86, 124, 0.55);
}
.btn-grad:hover { box-shadow: 0 14px 30px -8px rgba(245, 86, 124, 0.65); }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-lg { font-size: 18px; padding: 16px 34px; }

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -12px rgba(46, 42, 79, 0.18);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.brand-mark { width: 40px; height: auto; }
.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav > a:not(.btn) {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.nav > a:not(.btn):hover,
.nav > a:not(.btn).active { color: var(--pink); }
.nav-cta { font-size: 14.5px; padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: calc(var(--header-h) + 84px) 0 110px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(245, 86, 124, 0.30), transparent 62%),
    radial-gradient(820px 520px at 8% 115%, rgba(255, 133, 98, 0.22), transparent 62%),
    linear-gradient(160deg, #37315F 0%, #221F3D 58%, #1B1930 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 3.9rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 26px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 52px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 86, 124, 0.65);
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
}
.hero-card-num {
  font-size: 15px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.hero-card-body { flex: 1; }
.hero-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 6px;
}
.hero-card-body p {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
}
.hero-card-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 22px -6px rgba(245, 86, 124, 0.6);
  transition: transform 0.25s ease;
}
.hero-card-arrow svg { width: 20px; height: 20px; }
.hero-card:hover .hero-card-arrow { transform: translateX(4px); }

/* ============================================================
   SECTIONS — common
   ============================================================ */

.section { padding: 104px 0; }
.section-tint { background: var(--bg-soft); }

.section-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.sec-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 30px -8px rgba(245, 86, 124, 0.55);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}
.section-head .lead { margin: 0 auto; }

.section-head.light h2 { color: #fff; }
.section-head.light .lead { color: rgba(255, 255, 255, 0.7); }

/* ---------- Sub-cards (1a / 1b) ---------- */

.sub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.sub-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.sub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 86, 124, 0.5);
  text-decoration: none;
}
.sub-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 18px -6px rgba(245, 86, 124, 0.55);
}
.sub-body { flex: 1; }
.sub-body h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.sub-body p { font-size: 14.5px; color: var(--muted); }
.sub-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  border: 1.5px solid rgba(255, 133, 98, 0.5);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.sub-arrow svg { width: 18px; height: 18px; }
.sub-card:hover .sub-arrow {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateX(4px);
}

/* ---------- Video ---------- */

.video-block { max-width: 940px; margin: 0 auto 72px; }
.video-caption {
  font-size: 15.5px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}
.video-caption strong { color: var(--ink); }
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background:
    radial-gradient(500px 260px at 80% 20%, rgba(245, 86, 124, 0.35), transparent 65%),
    radial-gradient(420px 240px at 15% 90%, rgba(255, 133, 98, 0.28), transparent 65%),
    linear-gradient(160deg, #332E5C 0%, #1E1B38 75%);
}
.video-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-poster:hover img { transform: scale(1.02); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 18px 44px -8px rgba(245, 86, 124, 0.7);
  transition: transform 0.25s ease;
}
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-poster:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Feature cards (features / benefits / trusted) ---------- */

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

.feature-card {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px -8px rgba(245, 86, 124, 0.55);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 16px; }
.trusted-card { background: var(--navy); border-color: var(--navy); }
.trusted-card h3 { color: #fff; }
.trusted-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.tick-list { list-style: none; }
.tick-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.tick-list li + li { margin-top: 11px; }
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
}

/* ---------- Split (text + media) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.split-text .lead { margin-bottom: 6px; font-size: 18px; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Numbered steps ---------- */

.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  margin-bottom: 13px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  background: #fff;
  border: 1.5px solid rgba(245, 86, 124, 0.45);
}
.steps li:last-child { margin-bottom: 0; }

/* ---------- Media cards (e-commerce features) ---------- */

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.media-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.media-card-img {
  height: 250px;
  background: var(--bg-soft);
  overflow: hidden;
}
.media-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* tall screenshot: keep the outfit in frame */
.media-card--portrait .media-card-img img { object-position: 50% 16%; }
/* show the whole image without cropping */
.media-card--fullimg .media-card-img img { object-fit: contain; }
.media-card:hover .media-card-img img { transform: scale(1.04); }
.media-card-body { padding: 26px 28px 30px; }
.media-card-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 14px; }
.media-card-body p { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.media-card-body p + p { margin-top: 12px; }

/* zoomable image: click to open in lightbox */
.img-zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.img-zoom:focus-visible { outline: 2px solid var(--coral); outline-offset: -2px; }
.img-zoom-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.img-zoom:hover .img-zoom-badge,
.img-zoom:focus-visible .img-zoom-badge { opacity: 1; transform: scale(1); }
.img-zoom-badge svg { width: 17px; height: 17px; }

/* ---------- Lightbox ---------- */
html.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: lb-fade 0.22s ease; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 31, 61, 0.88);
  backdrop-filter: blur(6px);
}
.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  animation: lb-pop 0.25s ease;
}
.lightbox-figure img {
  max-width: calc(100vw - 96px);
  max-height: calc(100vh - 112px);
  width: auto;
  height: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-pop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-figure img {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 100px);
  }
  .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

/* ---------- Virtual try-on ---------- */

.vto-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.vto-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.vto-text p { font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.vto-text p + p { margin-top: 12px; }
.vto-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vto-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   TECHNOLOGIES (dark)
   ============================================================ */

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 480px at 90% 0%, rgba(245, 86, 124, 0.22), transparent 60%),
    radial-gradient(700px 460px at 5% 100%, rgba(255, 133, 98, 0.16), transparent 60%),
    linear-gradient(160deg, #332E5C 0%, #1E1B38 70%);
}
.section-dark .split { gap: 56px; }
.section-dark .split-text .mini-title { color: #fff; }
.steps.light li { color: rgba(255, 255, 255, 0.82); }
.steps.light li::before {
  color: #FF9DB6;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 86, 124, 0.55);
}
.section-dark .split-media img { border-radius: var(--radius); }

/* ============================================================
   COMPANY
   ============================================================ */

.company-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  text-align: center;
}
.company-card h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.company-card .lead { margin: 0 auto 34px; }

.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
a.award-badge:hover {
  border-color: rgba(245, 86, 124, 0.55);
  transform: translateY(-2px);
  text-decoration: none;
}
.award-badge svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--pink);
}
.company-note {
  font-size: 15.5px;
  color: var(--muted);
}

/* ============================================================
   CONTACTS / CTA
   ============================================================ */

.section-contacts { padding-top: 40px; }

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 72px 48px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(600px 300px at 85% 110%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(500px 280px at 10% -20%, rgba(255, 255, 255, 0.14), transparent 60%),
    var(--grad);
  box-shadow: 0 24px 60px -16px rgba(245, 86, 124, 0.55);
}
.cta-card h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.cta-card p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 34px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-deep);
  padding: 26px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
}
.to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.to-top:hover { color: #fff; text-decoration: none; }
.to-top svg { width: 15px; height: 15px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

/* scoped under .js (added by main.js) so content stays visible without JS */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .section { padding: 84px 0; }
  .split { gap: 44px; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { order: 2; }
  .grid-3 { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .vto-card { grid-template-columns: 1fr; gap: 30px; padding: 32px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(46, 42, 79, 0.25);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav > a:not(.btn) {
    padding: 13px 6px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }
  .nav > a:not(.btn):last-of-type { border-bottom: 0; }
  .nav-cta { margin-top: 12px; text-align: center; padding: 14px 22px; }
}

@media (max-width: 820px) {
  .hero { padding: calc(var(--header-h) + 56px) 0 80px; }
  .hero-cards { grid-template-columns: 1fr; }
  .sub-cards { grid-template-columns: 1fr; margin-bottom: 48px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card-img { height: 230px; }
  .section-head { margin-bottom: 44px; }
  .video-block { margin-bottom: 56px; }
  .company-card { padding: 44px 26px; }
  .cta-card { padding: 56px 26px; }
  .footer-wrap { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .lead { font-size: 17px; }
  .vto-gallery { grid-template-columns: 1fr; }
  .video-play { width: 64px; height: 64px; }
  .video-play svg { width: 26px; height: 26px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
