/* =========================================================
   Olways Digital — styles.css
   Brand: deep navy + electric blue, white cards
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand blues */
  --blue-700: #0b3fa8;
  --blue-600: #1668e3;
  --blue-500: #2b7cff;
  --blue-400: #4d9bff;
  --blue-300: #86bcff;

  /* Navy scale */
  --navy-950: #060e22;
  --navy-900: #0a1533;
  --navy-800: #0d1e46;
  --navy-700: #12295f;

  /* Neutrals */
  --ink: #101a2e;
  --ink-soft: #35435c;
  --muted: #6a7891;
  --line: #e5eaf3;
  --line-soft: #eef2f8;
  --surface: #ffffff;
  --bg: #ffffff;
  --tint: #f4f7fc;

  /* Effects */
  --grad-blue: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  --grad-text: linear-gradient(100deg, var(--blue-400), var(--blue-600));
  --grad-hero: radial-gradient(120% 120% at 15% 0%, #12306e 0%, #0a1533 45%, #070f28 100%);
  --shadow-sm: 0 1px 2px rgba(16, 26, 46, .06), 0 4px 14px rgba(16, 26, 46, .05);
  --shadow-md: 0 6px 18px rgba(16, 26, 46, .08), 0 20px 44px rgba(16, 26, 46, .08);
  --shadow-blue: 0 14px 30px rgba(43, 124, 255, .35);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --ring: 0 0 0 3px rgba(43, 124, 255, .35);

  --container: 1180px;
  --ease: cubic-bezier(.16, .84, .44, 1);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }

/* Icons */
.ic { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: 96px 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--grad-hero); color: #eaf1ff; overflow: hidden; }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; }
.section__sub { margin-top: 16px; color: var(--muted); font-size: 1.08rem; max-width: 560px; margin-inline: auto; }
.section__sub--light { color: #a9bce0; }
.section--dark .section__title { color: #fff; }

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--blue-300); }
.eyebrow--sm { margin-bottom: 10px; font-size: .72rem; }

/* Gradient text */
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-500);
}
.section--dark .grad { background: linear-gradient(100deg, #7fb2ff, #bcd6ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Rule label (dotted separator with centered text) */
.rule-label {
  display: flex; align-items: center; gap: 20px;
  justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-600); margin: 0 auto 40px; max-width: 820px;
}
.rule-label span:first-child, .rule-label span:last-child {
  flex: 1; height: 0; border-top: 1.5px dashed var(--blue-300); opacity: .6;
}
.section--dark .rule-label { color: var(--blue-300); }
.section--dark .rule-label span { border-color: rgba(133, 188, 255, .35); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn .ic { width: 1.05em; height: 1.05em; }
.btn--sm { padding: 9px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(43, 124, 255, .45); }
.btn--white { background: #fff; color: var(--blue-700); box-shadow: 0 8px 22px rgba(0,0,0,.15); }
.btn--white:hover { transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--wa { background: #25d366; color: #062b16; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.btn--wa:hover { transform: translateY(-2px); background: #1fbf5b; }

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: padding .3s var(--ease), background .3s, box-shadow .3s;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(16,26,46,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__mark {
  width: 30px; height: 30px; flex: none; object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(43,124,255,.4));
}
.brand__text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.26rem;
  letter-spacing: -.03em; color: #fff; transition: color .3s;
}
.brand__text em { font-style: normal; color: var(--blue-400); font-weight: 800; }
.nav.scrolled .brand__text { color: var(--ink); }
.nav.scrolled .brand__text em { color: var(--blue-600); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a:not(.nav__cta) {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  color: rgba(255,255,255,.82); padding: 8px 14px; border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav__links > a:not(.nav__cta):hover { color: #fff; background: rgba(255,255,255,.1); }
.nav.scrolled .nav__links > a:not(.nav__cta) { color: var(--ink-soft); }
.nav.scrolled .nav__links > a:not(.nav__cta):hover { color: var(--blue-600); background: var(--tint); }
.nav__cta { margin-left: 8px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s, background .3s; }
.nav.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
/* ---------- Cinematic hero ---------- */
/* Pin-stage: gives the hero room to scrub before releasing to the next section */
.hero-stage { position: relative; }
.hero-stage.cine-pin { height: 185vh; }
.hero-stage.cine-pin .hero {
  position: sticky; top: 0;
  height: 100svh; min-height: 0;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 118px;
  overflow: hidden;
  background: #04060f;
  color: #fff;
  isolation: isolate;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: -3; display: block;
  transform-origin: 60% 45%; will-change: transform, filter;
}
/* fade-to-dark veil that intensifies as the hero recedes */
.hero__exit {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0;
  background:
    radial-gradient(130% 110% at 50% 42%, rgba(2,4,10,0) 0%, rgba(2,4,10,.55) 58%, #01030a 100%),
    linear-gradient(180deg, rgba(2,4,10,.2), rgba(1,3,10,.9) 92%);
  will-change: opacity;
}
.hero__inner { will-change: transform, filter, opacity; }
.hero__fallback {
  position: absolute; inset: 0; z-index: -4;
  background:
    radial-gradient(58% 55% at 72% 28%, rgba(43,124,255,.55), transparent 60%),
    radial-gradient(50% 50% at 18% 82%, rgba(18,74,180,.5), transparent 62%),
    var(--grad-hero);
}

/* cursor spotlight */
.hero__spot {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(260px 260px at var(--mx, 70%) var(--my, 34%), rgba(130,185,255,.20), transparent 70%);
  opacity: 0; transition: opacity .6s ease;
}
.hero:hover .hero__spot { opacity: 1; }

/* cinematic vignette + top/bottom falloff */
.hero__vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,6,15,.82) 0%, transparent 24%, transparent 60%, rgba(4,6,15,.94) 100%),
    radial-gradient(125% 125% at 50% 42%, transparent 52%, rgba(4,6,15,.72) 100%);
}
/* film grain */
.hero__grain {
  position: absolute; inset: -60%; z-index: -1; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 5.4s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); } 60% { transform: translate(-3%,2%); }
  80% { transform: translate(4%,-2%); } 100% { transform: translate(0,0); }
}
/* faint scanlines for a filmic screen texture */
.hero__scanlines {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 3px);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
}

.hero__inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; text-align: center; }

.hero__kicker {
  display: inline-flex; align-items: center; margin-bottom: 26px;
  padding: 8px 17px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(133,188,255,.22);
  backdrop-filter: blur(8px); color: #bcd6ff;
  opacity: 0; animation: cine-up .9s var(--ease) .1s both;
}
.eyebrow .pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-400); margin-right: 9px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(77,155,255,.7); animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(77,155,255,.6); } 70% { box-shadow: 0 0 0 9px rgba(77,155,255,0); } 100% { box-shadow: 0 0 0 0 rgba(77,155,255,0); } }

.hero__title {
  font-size: clamp(2.7rem, 7.2vw, 5.7rem); font-weight: 800; line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 2px 40px rgba(8,20,50,.5);
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .line > span {
  display: inline-block; transform: translateY(112%); filter: blur(14px);
  animation: line-rise 1.15s cubic-bezier(.2,.8,.2,1) calc(.3s + var(--i) * .17s) both;
}
@keyframes line-rise { to { transform: translateY(0); filter: blur(0); } }

.hero__lead {
  margin: 26px auto 0; max-width: 630px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #baccf0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

.stats { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 46px; }
.stat {
  min-width: 148px; padding: 18px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(133,188,255,.2);
  backdrop-filter: blur(8px);
}
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: #fff; }
.stat__label { margin-top: 6px; font-weight: 600; color: var(--blue-300); font-size: .9rem; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-top: 30px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 9px; color: #c1d3f2; font-weight: 500; font-size: .93rem; }
.hero__chips .ic { color: var(--blue-400); width: 1.15em; height: 1.15em; }

/* staggered cinematic entrance for supporting content */
.cine { opacity: 0; animation: cine-up 1s var(--ease) calc(.45s + var(--i) * .13s) both; }
@keyframes cine-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* scroll hint */
.hero__scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #9fbdf0; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  opacity: 0; animation: cine-up 1s var(--ease) 1.4s both, bob 2.6s ease-in-out 2.4s infinite;
}
.hero__mouse { width: 22px; height: 36px; border: 2px solid rgba(133,188,255,.5); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.hero__mouse span { width: 4px; height: 7px; border-radius: 3px; background: var(--blue-300); animation: mouse-scroll 1.8s ease-in-out infinite; }
@keyframes mouse-scroll { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(7px); } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }

/* ---------- Cards (generic) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--5 { grid-template-columns: repeat(5, 1fr); }

/* Icon badges */
.ico-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-blue); color: #fff; font-size: 24px;
  box-shadow: 0 8px 18px rgba(43,124,255,.28);
}
.ico-badge--soft { background: linear-gradient(135deg, #eaf1ff, #d8e6ff); color: var(--blue-600); box-shadow: none; border: 1px solid #dbe7fb; }
.ico-badge--glass { background: rgba(255,255,255,.08); color: var(--blue-300); border: 1px solid rgba(133,188,255,.25); box-shadow: none; backdrop-filter: blur(6px); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 72px; }
.about__who { padding: 34px; }
.about__who p { color: var(--ink-soft); }
.about__who p + p { margin-top: 16px; }
.about__deliver {
  padding: 34px; border-radius: var(--radius);
  background: var(--grad-hero); color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__deliver::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(43,124,255,.4), transparent 65%);
}
.deliver__list { display: grid; gap: 18px; position: relative; }
.deliver__list li { display: flex; align-items: center; gap: 14px; font-size: 1.12rem; color: #dbe7ff; }
.deliver__list li strong { color: #fff; }
.deliver__list .ic { color: var(--blue-400); width: 22px; height: 22px; }

/* Values */
.values { margin-bottom: 72px; }
.values__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value { padding: 30px 22px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value .ico-badge { margin: 0 auto 16px; }
.value h3 { font-size: 1.16rem; }
.value p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* Why */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__card { padding: 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.why__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cfe0fb; }
.why__card .ico-badge { margin-bottom: 18px; }
.why__card h3 { font-size: 1.2rem; }
.why__card p { margin-top: 8px; color: var(--muted); }

/* ---------- Product / tool cards ---------- */
.pcard {
  position: relative; padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pcard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(43,124,255,.05), transparent 40%);
  opacity: 0; transition: opacity .3s;
}
.pcard:hover, .pcard:focus-visible {
  transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cadcfb;
}
.pcard:hover::before { opacity: 1; }
.pcard__num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--blue-300);
}
.pcard .ico-badge { margin-bottom: 20px; }
.pcard h3 { font-size: 1.28rem; }
.pcard p { margin-top: 10px; color: var(--muted); }
.pcard__tag {
  display: inline-block; margin-top: 18px;
  font-size: .76rem; font-weight: 600; letter-spacing: .02em;
  color: var(--blue-600); background: #eef4ff; border: 1px solid #dbe7fb;
  padding: 5px 12px; border-radius: 100px;
}

/* ---------- Marketing cards (on dark) ---------- */
.section__grid {
  position: absolute; inset: -18%;
  background-image: radial-gradient(rgba(126,178,255,.35) 1.3px, transparent 1.3px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(90% 70% at 85% 18%, #000, transparent 60%);
  mask-image: radial-gradient(90% 70% at 85% 18%, #000, transparent 60%);
  opacity: .4; pointer-events: none; will-change: transform;
}
.section--dark .container { position: relative; }
.mcard {
  position: relative; padding: 28px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(133,188,255,.16);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.mcard:hover, .mcard:focus-visible {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
  border-color: rgba(133,188,255,.4);
}
.mcard__num {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-display); font-weight: 800; color: rgba(133,188,255,.55); font-size: 1rem;
}
.mcard .ico-badge { margin-bottom: 18px; }
.mcard h3 { font-size: 1.16rem; color: #fff; }
.mcard p { margin-top: 8px; color: #a9bce0; font-size: .95rem; }

/* ---------- Banner (CTA strip) ---------- */
.banner {
  margin-top: 48px; padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  box-shadow: var(--shadow-blue); position: relative; overflow: hidden;
}
.banner::after {
  content: ""; position: absolute; right: -40px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 65%);
}
.banner__text { position: relative; }
.banner__text h3 { font-size: 1.5rem; }
.banner__text p { margin-top: 8px; color: rgba(255,255,255,.9); max-width: 560px; }
.banner .btn { position: relative; flex: none; }
.banner--onDark { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 72px; }
.step { padding: 32px 28px; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { margin-top: 6px; font-size: 1.3rem; }
.step p { margin-top: 10px; color: var(--muted); }

/* Perks */
.perks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.perk { padding: 30px 26px; text-align: left; }
.perk .ico-badge { margin-bottom: 16px; }
.perk h3 { font-size: 1.15rem; }
.perk p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__intro .section__title { text-align: left; }
.contact__list { margin-top: 32px; display: grid; gap: 14px; }
.contact__list li a, .contact__list li .static {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.contact__list li a:hover { transform: translateX(4px); border-color: #cadcfb; box-shadow: var(--shadow-md); }
.contact__list span small { display: block; font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 2px; }
.contact__list span:not(small) { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.contact__list .ico-badge { width: 44px; height: 44px; font-size: 20px; }

.contact__form { padding: 34px; }
.contact__form h3 { font-size: 1.4rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; color: var(--ink);
  background: var(--tint); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7bd; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); background: #fff; box-shadow: var(--ring);
}
.field textarea { resize: vertical; }
.form__hint { margin-top: 12px; font-size: .82rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #b9c6df; padding-top: 72px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.brand--footer .brand__text { color: #fff; }
.footer__brand p { margin: 18px 0 22px; max-width: 340px; color: #8494b3; font-size: .95rem; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px; font-size: 18px;
  background: rgba(255,255,255,.06); color: #c7d3ea;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s, background .2s, color .2s;
}
.socials a:hover { transform: translateY(-3px); background: var(--blue-600); color: #fff; border-color: transparent; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a, .footer__contact span {
  display: flex; align-items: center; gap: 10px;
  color: #8494b3; font-size: .93rem; padding: 5px 0;
  transition: color .2s;
}
.footer__col a:hover { color: var(--blue-300); }
.footer__contact .ic, .footer__col a .ic { width: 16px; height: 16px; color: var(--blue-400); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #6c7c99; }

/* ---------- WhatsApp widget ---------- */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 200; }
.wa__fab {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: wa-pulse 2.6s infinite;
}
.wa__fab:hover { transform: scale(1.07); }
.wa__badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  background: #ff3b3b; color: #fff; font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 28px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
.wa__panel {
  position: absolute; bottom: 76px; right: 0; width: 320px;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,26,46,.28);
  transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform .28s var(--ease), opacity .28s;
}
.wa.open .wa__panel { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.wa__head {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #128c4b, #25d366); color: #fff; padding: 16px 18px;
}
.wa__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.wa__head strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.wa__head small { display: flex; align-items: center; gap: 6px; font-size: .78rem; opacity: .9; }
.wa__dot { width: 8px; height: 8px; border-radius: 50%; background: #7dffb0; box-shadow: 0 0 0 0 rgba(125,255,176,.7); animation: wa-blip 1.8s infinite; }
@keyframes wa-blip { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.wa__close { margin-left: auto; font-size: 1.5rem; line-height: 1; color: #fff; opacity: .85; }
.wa__close:hover { opacity: 1; }
.wa__body { padding: 22px 18px; background: #e9eef2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='6' cy='6' r='1' fill='%23d3dbe0'/%3E%3C/svg%3E"); }
.wa__bubble {
  background: #fff; padding: 12px 15px; border-radius: 4px 14px 14px 14px;
  box-shadow: 0 2px 6px rgba(16,26,46,.1); font-size: .92rem; color: var(--ink); line-height: 1.5;
}
.wa .btn--wa { border-radius: 0; padding: 15px; }

/* ---------- Reveal animation (smooth 3D) ---------- */
.reveal {
  opacity: 0;
  transform: perspective(1100px) translateY(52px) translateZ(-70px) rotateX(11deg) scale(.97);
  transform-origin: 50% 100%;
  transition: opacity .9s var(--ease), transform 1.05s var(--ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.reveal.in {
  opacity: 1;
  transform: perspective(1100px) translateY(0) translateZ(0) rotateX(0deg) scale(1);
}
/* deeper 3D variant for card grids */
.cards .reveal, .values__grid .reveal, .why__grid .reveal,
.perks__grid .reveal, .steps .reveal {
  transform: perspective(1000px) translateY(60px) translateZ(-90px) rotateX(14deg) scale(.95);
}
.cards .reveal.in, .values__grid .reveal.in, .why__grid .reveal.in,
.perks__grid .reveal.in, .steps .reveal.in {
  transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg) scale(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards--4 { grid-template-columns: repeat(3, 1fr); }
  .cards--5 { grid-template-columns: repeat(3, 1fr); }
  .values__grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(9,17,40,.97); backdrop-filter: blur(16px);
    padding: 90px 24px 30px; transform: translateY(-100%);
    transition: transform .38s var(--ease); box-shadow: 0 20px 50px rgba(0,0,0,.4);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links > a:not(.nav__cta) { color: #dbe6ff; padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav__links > a:not(.nav__cta):hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav__cta { margin: 12px 0 0; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .cards--3, .cards--4, .cards--5 { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .perks__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar-inner { flex-direction: column; gap: 6px; }
  .banner { padding: 30px 26px; }
  .wa__panel { width: calc(100vw - 44px); }

  /* --- Mobile hero: compact, fits one screen --- */
  .hero { padding: 92px 0 56px; min-height: 100svh; }
  .hero__inner { max-width: 100%; }
  .hero__title { font-size: clamp(1.95rem, 8.6vw, 2.7rem); line-height: 1.06; }
  .hero__lead { font-size: 1rem; margin-top: 16px; max-width: 32ch; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 24px; }
  .hero__actions .btn { width: 100%; padding: 14px 18px; }
  .stats { flex-wrap: nowrap; gap: 8px; margin-top: 26px; }
  .stat { min-width: 0; flex: 1 1 0; padding: 13px 6px; border-radius: 14px; }
  .stat__num { font-size: 1.6rem; }
  .stat__label { font-size: .64rem; margin-top: 4px; line-height: 1.2; }
  .hero__chips { margin-top: 20px; gap: 8px 14px; }
  .hero__chips li { font-size: .8rem; gap: 7px; }
}
@media (max-width: 400px) {
  .values__grid { grid-template-columns: 1fr; }
  .hero__chips li { font-size: .74rem; }
}

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