/* ============================================================
   44ENTERPRISE — Design System
   Navy + svieži tyrkysový akcent
   ============================================================ */

:root {
  /* Brand colours */
  --navy-900: #0e1a44;
  --navy-800: #16235c;
  --navy-700: #1d2f72;
  --navy-600: #28408f;
  --blue-500: #2e7fd4;
  --teal-500: #14b8c9;
  --teal-400: #2fd0df;
  --teal-300: #7fe3ec;

  --ink: #1a2238;
  --body: #44506b;
  --muted: #7a86a1;
  --line: #e6eaf2;
  --bg: #ffffff;
  --bg-soft: #f4f7fc;
  --bg-tint: #eef4fb;

  --white: #ffffff;

  /* Effects */
  --grad-hero: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 45%, #15487f 100%);
  --grad-accent: linear-gradient(120deg, var(--teal-500), var(--blue-500));
  --grad-text: linear-gradient(120deg, var(--teal-400), #5aa7ee);

  --shadow-sm: 0 2px 8px rgba(20, 35, 92, .06);
  --shadow-md: 0 14px 40px rgba(20, 35, 92, .10);
  --shadow-lg: 0 30px 70px rgba(14, 26, 68, .18);
  --shadow-teal: 0 16px 40px rgba(20, 184, 201, .28);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background:
    radial-gradient(1100px 500px at 85% -10%, var(--bg-tint), transparent 60%),
    var(--bg); }
.narrow { max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-500); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-accent); border-radius: 2px; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
h2.title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.lead { font-size: 19px; color: var(--body); }
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: 16px;
  cursor: pointer; border: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn-primary { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(20,184,201,.4); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--teal-500); color: var(--teal-500); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(20,35,92,.06), 0 10px 30px rgba(20,35,92,.05);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; transition: height .35s; }
.header.scrolled .brand img { height: 34px; }
.brand .logo-white { display: block; }
.brand .logo-blue { display: none; }
.header.scrolled .brand .logo-white { display: none; }
.header.scrolled .brand .logo-blue { display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 16px; font-weight: 600; font-size: 15.5px;
  color: rgba(255,255,255,.92); border-radius: 100px; transition: color .25s, background .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--teal-400); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.header.scrolled .nav-links a { color: var(--body); }
.header.scrolled .nav-links a:hover, .header.scrolled .nav-links a.active { color: var(--navy-800); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.header.scrolled .burger { background: var(--bg-soft); border-color: var(--line); }
.header.scrolled .burger span { background: var(--navy-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 180px 0 120px; color: #fff; overflow: hidden;
  background: var(--grad-hero);
}
.hero__blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; animation: float 16s ease-in-out infinite; }
.blob.b1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--teal-500), transparent 70%); top: -120px; right: -80px; }
.blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--blue-500), transparent 70%); bottom: -160px; left: -100px; animation-delay: -5s; }
.blob.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #2ad1c9, transparent 70%); top: 40%; left: 40%; opacity: .3; animation-delay: -9s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.08); } }

.hero__grid-overlay { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%); }

.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); color: #fff; margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--teal-400), #8fd0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; margin-bottom: 26px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.92); backdrop-filter: blur(6px);
}
.hero-badge b { background: var(--grad-accent); padding: 4px 11px; border-radius: 100px; font-size: 12.5px; letter-spacing: .03em; }

.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 34px; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hero-stats .stat span { font-size: 14px; color: rgba(255,255,255,.7); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 28px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.hero-card img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.hero-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14.5px;
  animation: bob 5s ease-in-out infinite;
}
.hero-float .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.hero-float small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }
.hf1 { top: 26px; left: -34px; }
.hf2 { bottom: 30px; right: -28px; animation-delay: -2.5s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Wave divider */
.wave { display: block; width: 100%; height: auto; }

/* ---------- Trust / brands strip ---------- */
.trust { padding: 40px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.trust__label { text-align: center; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 46px; }
.trust__row img { height: 40px; width: auto; opacity: .65; filter: grayscale(.3); transition: .3s; }
.trust__row img:hover { opacity: 1; filter: none; transform: translateY(-3px); }
.trust__row .name { font-weight: 800; font-size: 22px; color: var(--navy-700); letter-spacing: -.02em; opacity: .55; }
.trust__row .name:hover { opacity: 1; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--bg-tint), #dcebfb00 60%), var(--bg-soft); color: var(--teal-500);
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15.5px; }

.icon-grad { background: var(--grad-accent) !important; color: #fff !important; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--wide-text { grid-template-columns: 1.1fr .9fr; }
.media { position: relative; }
.media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.media__frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.media__tag {
  position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; gap: 14px; align-items: center;
}
.media__tag .num { font-size: 30px; font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; }
.media__tag span { font-size: 13.5px; color: var(--body); font-weight: 600; }
.media__deco { position: absolute; inset: auto -22px -22px auto; width: 60%; height: 70%; background: var(--grad-accent); border-radius: var(--radius-lg); z-index: -1; opacity: .14; }

.tick-list { display: grid; gap: 16px; margin-top: 26px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--body); }
.tick-list .tk { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; flex: none; margin-top: 2px; }
.tick-list .tk svg { width: 14px; height: 14px; }
.tick-list b { color: var(--ink); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.stats-band .blob { opacity: .3; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; position: relative; z-index: 2; text-align: center; }
.stats-grid .stat strong { display: block; font-size: clamp(34px,4.4vw,52px); font-weight: 800; background: linear-gradient(120deg,#fff,#bfe9ef); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
.stats-grid .stat span { color: rgba(255,255,255,.78); font-size: 15px; font-weight: 500; }
.stats-grid .stat { padding: 10px; }

/* ---------- Category / brand cards ---------- */
.cat { margin-bottom: 64px; }
.cat:last-child { margin-bottom: 0; }
.cat__head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.cat__badge { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-accent); color: #fff; flex: none; }
.cat__badge svg { width: 28px; height: 28px; }
.cat__head h3 { font-size: 26px; }
.cat__head p { font-size: 15px; color: var(--muted); margin-top: 2px; }

.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.brand-card__media { height: 220px; display: grid; place-items: center; padding: 22px; background: var(--bg-soft); position: relative; overflow: hidden; }
.brand-card__media img:not(.brand-card__logo) { max-width: 100%; max-height: 176px; width: auto; height: auto; object-fit: contain; transition: transform .5s var(--ease); }
.brand-card:hover .brand-card__media img:not(.brand-card__logo) { transform: scale(1.06); }
.brand-card__logo { position: absolute; top: 14px; left: 14px; height: 30px; width: auto; background: #fff; padding: 4px 8px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.brand-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pill { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-500); background: var(--bg-tint); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; align-self: flex-start; }
.pill.poukaz { color: #0f8a52; background: #e3f7ec; }
.brand-card__body h4 { font-size: 22px; margin-bottom: 8px; }
.brand-card__body p { font-size: 15px; flex: 1; margin-bottom: 18px; }
.brand-card__links { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-size: 13px; font-weight: 600; color: var(--body); background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--teal-500); font-size: 15px; transition: gap .3s; }
.link-arrow:hover { gap: 12px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-accent); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 19px; margin-bottom: 18px; }
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  background: var(--grad-hero); border-radius: var(--radius-lg); padding: 64px 56px; color: #fff;
  position: relative; overflow: hidden; text-align: center;
}
.cta-box .blob { opacity: .4; }
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 { color: #fff; font-size: clamp(28px,3.6vw,42px); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 30px; font-size: 18px; }
.cta-box .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Brand card extras (expanded brands) ---------- */
.feat { display: grid; gap: 9px; margin: 4px 0 18px; }
.feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body); line-height: 1.5; }
.feat .ck { width: 19px; height: 19px; border-radius: 50%; background: var(--bg-tint); color: var(--teal-500); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feat .ck svg { width: 11px; height: 11px; }
.feat b { color: var(--ink); }

.brand-card__body .specs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.spec { font-size: 12px; font-weight: 600; color: var(--navy-700); background: var(--bg-tint); border-radius: 100px; padding: 5px 11px; }

.prod-thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin: 2px 0 18px; }
.prod-thumbs img { width: 58px; height: 58px; object-fit: contain; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 6px; transition: transform .3s var(--ease), border-color .3s; }
.prod-thumbs img:hover { transform: translateY(-3px); border-color: var(--teal-400); }

/* Wide featured brand block */
.brand-feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.brand-feature__media { background: var(--bg-soft); padding: 36px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.brand-feature__hero { display: grid; place-items: center; min-height: 200px; }
.brand-feature__hero img { max-height: 230px; width: auto; object-fit: contain; }
.brand-feature__logo { height: 34px; width: auto; position: absolute; top: 22px; left: 26px; }
.brand-feature__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.brand-feature__body h4 { font-size: 26px; margin-bottom: 10px; }
.brand-feature__body p { font-size: 15.5px; margin-bottom: 16px; }

.cat-band { background:
    radial-gradient(900px 400px at 12% 0%, var(--bg-tint), transparent 60%); }

@media (max-width: 760px) {
  .brand-feature { grid-template-columns: 1fr; }
}

/* ---------- Product catalog cards ---------- */
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pcard__img { height: 210px; display: grid; place-items: center; padding: 18px; background: var(--bg-soft); }
.pcard__img img { max-height: 174px; max-width: 100%; width: auto; object-fit: contain; transition: transform .4s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__b { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard__b h4 { font-size: 16.5px; margin-bottom: 6px; line-height: 1.25; }
.pcard__b p { font-size: 14px; color: var(--muted); margin-bottom: 12px; flex: 1; }
.pcard__size { display: inline-block; align-self: flex-start; font-size: 12.5px; font-weight: 700; color: var(--teal-500); background: var(--bg-tint); padding: 5px 12px; border-radius: 100px; }
.pcard__b .specs { margin-bottom: 0; }

/* Section subheading inside catalog */
.cat-sub { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.cat-sub__tag { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: #fff; background: var(--grad-accent); padding: 8px 16px; border-radius: 100px; }
.cat-sub h3 { font-size: 24px; }
.cat-sub p { font-size: 14.5px; color: var(--muted); }

/* ---------- Story timeline ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--teal-400), var(--blue-500), transparent); }
.tl-item { position: relative; padding: 0 0 40px 78px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 12px; top: 2px; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 3px solid var(--teal-400); display: grid; place-items: center; z-index: 2; box-shadow: 0 0 0 6px var(--bg-soft); }
.tl-dot span { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-accent); }
.tl-year { font-weight: 800; color: var(--teal-500); font-size: 15px; letter-spacing: .05em; margin-bottom: 4px; }
.tl-item h4 { font-size: 21px; margin-bottom: 6px; }
.tl-item p { font-size: 15.5px; }

/* ---------- Quote ---------- */
.quote { max-width: 860px; margin: 0 auto; text-align: center; }
.quote__mark { font-size: 90px; line-height: .6; color: var(--teal-400); font-family: Georgia, serif; opacity: .4; }
.quote blockquote { font-size: clamp(22px,3vw,30px); font-weight: 700; color: var(--ink); line-height: 1.4; letter-spacing: -.02em; margin: 8px 0 26px; }
.quote__author { display: inline-flex; align-items: center; gap: 14px; }
.quote__author .av { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.quote__author b { display: block; color: var(--ink); }
.quote__author span { font-size: 14px; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 160px 0 90px; color: #fff; background: var(--grad-hero); overflow: hidden; text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(34px,5vw,56px); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; font-size: 19px; }
.crumbs { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--bg-tint); color: var(--teal-500); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info h4 { font-size: 17px; margin-bottom: 2px; }
.contact-info p, .contact-info a { font-size: 15.5px; color: var(--body); }
.contact-info a:hover { color: var(--teal-500); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit;
  font-size: 15.5px; color: var(--ink); background: var(--bg-soft); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 4px rgba(20,184,201,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success { display: none; padding: 16px 18px; background: #e3f7ec; border: 1px solid #b6e6cb; color: #0f7a48; border-radius: 12px; font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.form-success.show { display: block; }
.form-error { display: none; padding: 16px 18px; background: #fdecec; border: 1px solid #f5c2c2; color: #b3261e; border-radius: 12px; font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.form-error.show { display: block; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--body); margin-bottom: 20px; cursor: pointer; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--teal-500); cursor: pointer; }

/* ---------- Reps / regions ---------- */
.reps { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.rep {
  display: flex; gap: 16px; align-items: center; padding: 20px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.rep:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.rep__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--bg-tint); color: var(--teal-500); display: grid; place-items: center; flex: none; font-weight: 800; }
.rep__ic svg { width: 24px; height: 24px; }
.rep h4 { font-size: 16px; margin-bottom: 4px; }
.rep .regions { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.rep a.tel { display: inline-block; margin-top: 6px; font-weight: 800; color: var(--navy-800); font-size: 16px; letter-spacing: .01em; }
.rep a.tel:hover { color: var(--teal-500); }

/* ---------- FAQ / accordion ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: #fff; transition: box-shadow .3s, border-color .3s; }
.acc.open { box-shadow: var(--shadow-md); border-color: transparent; }
.acc__q { width: 100%; text-align: left; padding: 22px 26px; font-weight: 700; font-size: 17px; color: var(--ink); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.acc__q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-tint); color: var(--teal-500); display: grid; place-items: center; flex: none; transition: transform .3s, background .3s, color .3s; font-size: 20px; }
.acc.open .acc__q .pm { background: var(--grad-accent); color: #fff; transform: rotate(135deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a-inner { padding: 0 26px 24px; color: var(--body); font-size: 15.5px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 72px 0 30px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer__brand img { height: 42px; margin-bottom: 18px; }
.footer__brand p { font-size: 15px; max-width: 320px; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; transition: color .25s, padding .25s; }
.footer ul a:hover { color: var(--teal-400); padding-left: 4px; }
.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .3s; }
.footer .socials a:hover { background: var(--grad-accent); transform: translateY(-3px); }
.footer .socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .hero-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 72px; left: 16px; right: 16px; background: #fff;
    padding: 14px; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  }
  .nav-links.open a { color: var(--body); padding: 13px 16px; }
  .nav-links.open a::after { display: none; }
  .grid-2, .grid-3, .grid-4, .reps, .field-row { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 26px; }
  .cta-box .hero-actions { flex-direction: column; }
  .cta-box .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .page-hero, .hero { padding-top: 130px; }
  .hero-stats { gap: 24px; }
}
