/* ── PAGE LOADER ── */
#page-loader {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 9999;
  background: #091752;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: all;
}
#page-loader.done {
  opacity: 0;
  pointer-events: none;
}
.loader-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,138,0.18);
  border-top-color: #FFFF8A;
  border-radius: 50%;
  animation: loaderSpin 0.85s linear infinite;
}
.loader-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-family: 'Figtree', system-ui, sans-serif;
  letter-spacing: 0.08em;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* ── FONTS ── */
/* Inter loaded via <link> in header.php */

/* ── DESIGN TOKENS ── */
:root {
  /* Yellows */
  --yellow:       #FFFF8A;   /* logo / badge */
  --yellow-cta:   #FFE66D;   /* CTA buttons */
  --yellow-dk:    #FFD84D;   /* CTA hover */
  --yellow-hi:    #FFF7C2;   /* highlight tint */

  /* Navys */
  --navy:         #091752;   /* primary */
  --navy-deep:    #061038;   /* darkest / ink */
  --navy-mid:     #243879;   /* mid / accent */
  --navy-light:   #1a3a7a;   /* subtle accents */
  --navy-soft:    #E8ECFA;   /* tinted bg */

  /* Backgrounds */
  --bg:           #FFFDF4;   /* warm white */
  --bg-alt:       #F8F3DF;   /* cream */
  --cream:        #F8F3DF;   /* alias */
  --sand:         #EDE3C7;   /* sand — strong accent bg */

  /* Text */
  --text:         #111827;
  --muted:        #697089;   /* slightly warmer/violet */

  /* Border */
  --border:       #DDD5C4;   /* warm border */

  /* Accent */
  --human:        #FFB199;   /* human / coral */

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.13);
  --max-w:      1280px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; background: var(--navy); }
body  {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
main { width: 100%; overflow-x: hidden; }

/* ── ICONS ── */
i[class*="ph"] { flex-shrink: 0; line-height: 1; aspect-ratio: 1; }
i[class*="ph"] svg { display: block; width: 1em; height: 1em; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
p  { color: var(--muted); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  transition: color 0.18s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.btn-primary:focus-visible { outline-color: var(--navy); }
.btn-navy:focus-visible { outline-color: var(--yellow-cta); }
.btn-primary {
  background: var(--yellow-cta);
  color: var(--navy);
  border-color: var(--yellow-cta);
  transition:
    background-color 0.28s ease,
    color            0.28s ease,
    border-color     0.28s ease,
    transform        0.2s ease,
    box-shadow       0.2s ease;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--yellow-dk);
    color: var(--navy);
    border-color: var(--yellow-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(15,31,61,0.25);
  }
}
.btn-primary:active {
  background: var(--yellow-dk);
  color: var(--navy);
  border-color: var(--yellow-dk);
  transform: scale(0.94);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.18);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
@media (hover: hover) {
  .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
  }
}
.btn-outline-white:active { background: rgba(255,255,255,0.15); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
@media (hover: hover) {
  .btn-navy:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
  }
}
.btn-navy:active {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: scale(0.94);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 28px rgba(9,23,82,0.10);
  padding: 1.1rem 1.5rem;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-text { flex: 1; font-size: 0.88rem; color: var(--muted); }
.cookie-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.cookie-text a { color: var(--navy); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.cookie-btn-decline {
  background: none;
  border: none;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.cookie-btn-decline:hover { color: var(--navy); background: none; text-decoration: underline; }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .cookie-actions { justify-content: flex-end; }
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-hero :focus-visible,
.site-nav.nav-hero button:focus-visible {
  outline-color: var(--yellow);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.badge-yellow { background: var(--yellow); color: var(--navy); }
.badge-navy   { background: var(--navy);   color: var(--yellow); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { color: var(--text); margin-bottom: 0.75rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.nav-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.site-nav.nav-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.site-nav.nav-hero.nav-scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
body.page-home {
  background:
    radial-gradient(ellipse 110% 75% at 35% 40%, #1e3d85 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 78%, #071428 0%, transparent 50%),
    linear-gradient(150deg, #0c1d52 0%, #0d2070 48%, #162878 100%);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.nav-active { color: #fff; background: rgba(255,255,255,0.1); font-weight: 600; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.88rem; white-space: nowrap; }
.nav-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--yellow); }
.nav-mobile-lang {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 0 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.25rem;
}
.nav-links.open .nav-mobile-lang { display: flex; }
.nav-mobile-lang-btn {
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-mobile-lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.nav-mobile-lang-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
  pointer-events: none;
}
.nav-mobile-cta {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-mobile-phone:hover { color: var(--yellow); background: none; }
.nav-links.open .nav-mobile-cta { display: flex; flex-direction: column; }
.nav-mobile-cta .btn { width: 100%; text-align: center; justify-content: center; color: var(--navy) !important; }
@media (hover: hover) { .nav-mobile-cta .btn-primary:hover { background: var(--navy) !important; color: var(--yellow) !important; } }
.nav-lang {
  position: relative;
  margin-right: 0.15rem;
}
.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.55rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-lang-btn:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); }
.nav-lang-caret { font-size: 0.6rem; transition: transform 0.2s; }
.nav-lang.open .nav-lang-caret { transform: rotate(180deg); }
.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  background: #061038;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.3rem 0;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.nav-lang.open .nav-lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-lang-opt {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
}
.nav-lang-opt:hover { color: #fff; }
.nav-lang-opt-active { color: var(--yellow); pointer-events: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ENTRANCE ── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-badge        { animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.72s both; }
.hero h1                 { animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.86s both; }
.hero .hero-lead         { animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.98s both; }
.hero .hero-ctas         { animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 1.10s both; }
.hero-logos              { animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 1.22s both; }
.hero-main-image-wrap    { animation: hero-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.78s both; }
@media (prefers-reduced-motion: reduce) {
  .hero .hero-badge, .hero h1, .hero .hero-lead, .hero .hero-ctas,
  .hero-logos, .hero-main-image-wrap { animation: none; }
}

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 110% 75% at 35% 40%, #1e3d85 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 78%, #071428 0%, transparent 50%),
    linear-gradient(150deg, #0c1d52 0%, #0d2070 48%, #162878 100%);
  padding: 5rem 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 42% 38%, rgba(255,255,138,0.16) 0%, transparent 52%),
    radial-gradient(ellipse at 100% 0%,   rgba(0,0,0,0.14) 0%, transparent 40%),
    radial-gradient(ellipse at 0%   100%, rgba(0,0,0,0.14) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-main-image-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  position: relative;
  z-index: 1;
}
.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-badge-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.hero-badge-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
/* customer avatar → check morph */
.hero-customer-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.hero-customer-img {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.hero-customer-img.hero-customer-active { opacity: 1; }
.hero-customer-img.hero-customer-exiting { opacity: 0; }

@keyframes customer-enter {
  from { transform: translateY(60%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.hero-customer-img.hero-customer-entering {
  opacity: 1;
  animation: customer-enter 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-customer-check {
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--yellow);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 7px rgba(255,255,138,0.55));
  pointer-events: none;
}
.hero-customer-check.check-visible {
  opacity: 1;
  transform: scale(1);
}


.hero-badge-dot {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy);
}
.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 50%;
  background: #4ade80;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; font-size: clamp(2.8rem, 6.5vw, 5.5rem); line-height: 1.05; letter-spacing: -0.03em; }
.hero-content h1 em {
  font-style: normal;
}
.hero-lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; justify-content: center; }
.hero-demo-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
}
.hero-demo-hint a { color: var(--yellow); font-weight: 600; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── HERO PAGE-LOAD INTRO ── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge           { animation: heroIn 0.55s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.05s; }
.hero-content h1      { animation: heroIn 0.60s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.18s; }
.hero-lead            { animation: heroIn 0.60s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.30s; }
.hero-ctas            { animation: heroIn 0.60s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.44s; }
.hero-logos           { animation: heroIn 0.70s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.60s; }
.hero-main-image-wrap { animation: heroIn 0.75s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.10s; }
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-content h1, .hero-lead, .hero-ctas, .hero-logos, .hero-main-image-wrap {
    animation: none;
  }
}

/* ── HERO BACKGROUND WAVE ── */
.hero-bg-wave {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 35%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-wave span {
  display: block;
  flex: none;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.08);
  transform-origin: bottom;
  transform: scaleY(0.05);
  animation: bgWave 9s ease-in-out infinite;
}
@keyframes bgWave {
  0%, 100% { transform: scaleY(0.05); }
  15%       { transform: scaleY(0.55); }
  28%       { transform: scaleY(0.15); }
  42%       { transform: scaleY(0.70); }
  55%       { transform: scaleY(0.10); }
  68%       { transform: scaleY(0.45); }
  80%       { transform: scaleY(0.20); }
  90%       { transform: scaleY(0.08); }
}
/* Stagger — wave travels right to left, slow */
.hero-bg-wave span:nth-child(n)   { animation-delay: calc((80 - var(--i, 1)) * -0.11s); }
.hero-bg-wave span:nth-child(1)   { animation-delay: -8.69s; }
.hero-bg-wave span:nth-child(2)   { animation-delay: -8.58s; }
.hero-bg-wave span:nth-child(3)   { animation-delay: -8.47s; }
.hero-bg-wave span:nth-child(4)   { animation-delay: -8.36s; }
.hero-bg-wave span:nth-child(5)   { animation-delay: -8.25s; }
.hero-bg-wave span:nth-child(6)   { animation-delay: -8.14s; }
.hero-bg-wave span:nth-child(7)   { animation-delay: -8.03s; }
.hero-bg-wave span:nth-child(8)   { animation-delay: -7.92s; }
.hero-bg-wave span:nth-child(9)   { animation-delay: -7.81s; }
.hero-bg-wave span:nth-child(10)  { animation-delay: -7.70s; }
.hero-bg-wave span:nth-child(11)  { animation-delay: -7.59s; }
.hero-bg-wave span:nth-child(12)  { animation-delay: -7.48s; }
.hero-bg-wave span:nth-child(13)  { animation-delay: -7.37s; }
.hero-bg-wave span:nth-child(14)  { animation-delay: -7.26s; }
.hero-bg-wave span:nth-child(15)  { animation-delay: -7.15s; }
.hero-bg-wave span:nth-child(16)  { animation-delay: -7.04s; }
.hero-bg-wave span:nth-child(17)  { animation-delay: -6.93s; }
.hero-bg-wave span:nth-child(18)  { animation-delay: -6.82s; }
.hero-bg-wave span:nth-child(19)  { animation-delay: -6.71s; }
.hero-bg-wave span:nth-child(20)  { animation-delay: -6.60s; }
.hero-bg-wave span:nth-child(21)  { animation-delay: -6.49s; }
.hero-bg-wave span:nth-child(22)  { animation-delay: -6.38s; }
.hero-bg-wave span:nth-child(23)  { animation-delay: -6.27s; }
.hero-bg-wave span:nth-child(24)  { animation-delay: -6.16s; }
.hero-bg-wave span:nth-child(25)  { animation-delay: -6.05s; }
.hero-bg-wave span:nth-child(26)  { animation-delay: -5.94s; }
.hero-bg-wave span:nth-child(27)  { animation-delay: -5.83s; }
.hero-bg-wave span:nth-child(28)  { animation-delay: -5.72s; }
.hero-bg-wave span:nth-child(29)  { animation-delay: -5.61s; }
.hero-bg-wave span:nth-child(30)  { animation-delay: -5.50s; }
.hero-bg-wave span:nth-child(31)  { animation-delay: -5.39s; }
.hero-bg-wave span:nth-child(32)  { animation-delay: -5.28s; }
.hero-bg-wave span:nth-child(33)  { animation-delay: -5.17s; }
.hero-bg-wave span:nth-child(34)  { animation-delay: -5.06s; }
.hero-bg-wave span:nth-child(35)  { animation-delay: -4.95s; }
.hero-bg-wave span:nth-child(36)  { animation-delay: -4.84s; }
.hero-bg-wave span:nth-child(37)  { animation-delay: -4.73s; }
.hero-bg-wave span:nth-child(38)  { animation-delay: -4.62s; }
.hero-bg-wave span:nth-child(39)  { animation-delay: -4.51s; }
.hero-bg-wave span:nth-child(40)  { animation-delay: -4.40s; }
.hero-bg-wave span:nth-child(41)  { animation-delay: -4.29s; }
.hero-bg-wave span:nth-child(42)  { animation-delay: -4.18s; }
.hero-bg-wave span:nth-child(43)  { animation-delay: -4.07s; }
.hero-bg-wave span:nth-child(44)  { animation-delay: -3.96s; }
.hero-bg-wave span:nth-child(45)  { animation-delay: -3.85s; }
.hero-bg-wave span:nth-child(46)  { animation-delay: -3.74s; }
.hero-bg-wave span:nth-child(47)  { animation-delay: -3.63s; }
.hero-bg-wave span:nth-child(48)  { animation-delay: -3.52s; }
.hero-bg-wave span:nth-child(49)  { animation-delay: -3.41s; }
.hero-bg-wave span:nth-child(50)  { animation-delay: -3.30s; }
.hero-bg-wave span:nth-child(51)  { animation-delay: -3.19s; }
.hero-bg-wave span:nth-child(52)  { animation-delay: -3.08s; }
.hero-bg-wave span:nth-child(53)  { animation-delay: -2.97s; }
.hero-bg-wave span:nth-child(54)  { animation-delay: -2.86s; }
.hero-bg-wave span:nth-child(55)  { animation-delay: -2.75s; }
.hero-bg-wave span:nth-child(56)  { animation-delay: -2.64s; }
.hero-bg-wave span:nth-child(57)  { animation-delay: -2.53s; }
.hero-bg-wave span:nth-child(58)  { animation-delay: -2.42s; }
.hero-bg-wave span:nth-child(59)  { animation-delay: -2.31s; }
.hero-bg-wave span:nth-child(60)  { animation-delay: -2.20s; }
.hero-bg-wave span:nth-child(61)  { animation-delay: -2.09s; }
.hero-bg-wave span:nth-child(62)  { animation-delay: -1.98s; }
.hero-bg-wave span:nth-child(63)  { animation-delay: -1.87s; }
.hero-bg-wave span:nth-child(64)  { animation-delay: -1.76s; }
.hero-bg-wave span:nth-child(65)  { animation-delay: -1.65s; }
.hero-bg-wave span:nth-child(66)  { animation-delay: -1.54s; }
.hero-bg-wave span:nth-child(67)  { animation-delay: -1.43s; }
.hero-bg-wave span:nth-child(68)  { animation-delay: -1.32s; }
.hero-bg-wave span:nth-child(69)  { animation-delay: -1.21s; }
.hero-bg-wave span:nth-child(70)  { animation-delay: -1.10s; }
.hero-bg-wave span:nth-child(71)  { animation-delay: -0.99s; }
.hero-bg-wave span:nth-child(72)  { animation-delay: -0.88s; }
.hero-bg-wave span:nth-child(73)  { animation-delay: -0.77s; }
.hero-bg-wave span:nth-child(74)  { animation-delay: -0.66s; }
.hero-bg-wave span:nth-child(75)  { animation-delay: -0.55s; }
.hero-bg-wave span:nth-child(76)  { animation-delay: -0.44s; }
.hero-bg-wave span:nth-child(77)  { animation-delay: -0.33s; }
.hero-bg-wave span:nth-child(78)  { animation-delay: -0.22s; }
.hero-bg-wave span:nth-child(79)  { animation-delay: -0.11s; }
.hero-bg-wave span:nth-child(80)  { animation-delay:  0.00s; }
@media (prefers-reduced-motion: reduce) { .hero-bg-wave { display: none; } }

/* ── HERO WAVEFORM ── */
.hero-waveform-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0 1rem;
}
.hero-waveform-live {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: waveformPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes waveformPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero-waveform-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
}
.hero-waveform.wf-silent span {
  animation: wfSilent 0.22s ease-out forwards !important;
}
@keyframes wfSilent {
  to { transform: scaleY(0.07); }
}
.hero-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--yellow);
  opacity: 0.75;
  transform-origin: center;
  /* speech rhythm: ~3.4s cycle with syllable bursts and word gaps */
  animation: speechWave 7s ease-in-out infinite;
}
@keyframes speechWave {
  /* silence */
  0%,  100% { transform: scaleY(0.07); }
  /* syllable 1 — "Puhe-" */
  6%         { transform: scaleY(0.90); }
  10%        { transform: scaleY(0.40); }
  14%        { transform: scaleY(0.80); }
  /* word gap */
  20%        { transform: scaleY(0.07); }
  /* syllable 2 — "bot-" */
  27%        { transform: scaleY(0.70); }
  31%        { transform: scaleY(0.30); }
  35%        { transform: scaleY(0.85); }
  /* word gap */
  42%        { transform: scaleY(0.07); }
  /* syllable 3 — "vas-" */
  49%        { transform: scaleY(0.60); }
  53%        { transform: scaleY(0.20); }
  57%        { transform: scaleY(0.75); }
  /* syllable 4 — "-taa" */
  62%        { transform: scaleY(0.35); }
  66%        { transform: scaleY(0.65); }
  /* trailing off */
  74%        { transform: scaleY(0.15); }
  82%        { transform: scaleY(0.07); }
}
/* Bell-curve heights + linear delay: right leads, wave travels right → left */
.hero-waveform span:nth-child(1)  { height: 3px;  animation-delay: -1.16s; }
.hero-waveform span:nth-child(2)  { height: 5px;  animation-delay: -1.12s; }
.hero-waveform span:nth-child(3)  { height: 7px;  animation-delay: -1.08s; }
.hero-waveform span:nth-child(4)  { height: 9px;  animation-delay: -1.04s; }
.hero-waveform span:nth-child(5)  { height: 11px; animation-delay: -1.00s; }
.hero-waveform span:nth-child(6)  { height: 13px; animation-delay: -0.96s; }
.hero-waveform span:nth-child(7)  { height: 15px; animation-delay: -0.92s; }
.hero-waveform span:nth-child(8)  { height: 16px; animation-delay: -0.88s; }
.hero-waveform span:nth-child(9)  { height: 16px; animation-delay: -0.84s; }
.hero-waveform span:nth-child(10) { height: 16px; animation-delay: -0.80s; }
.hero-waveform span:nth-child(11) { height: 16px; animation-delay: -0.76s; }
.hero-waveform span:nth-child(12) { height: 16px; animation-delay: -0.72s; }
.hero-waveform span:nth-child(13) { height: 16px; animation-delay: -0.68s; }
.hero-waveform span:nth-child(14) { height: 16px; animation-delay: -0.64s; }
.hero-waveform span:nth-child(15) { height: 16px; animation-delay: -0.60s; }
.hero-waveform span:nth-child(16) { height: 16px; animation-delay: -0.56s; }
.hero-waveform span:nth-child(17) { height: 16px; animation-delay: -0.52s; }
.hero-waveform span:nth-child(18) { height: 16px; animation-delay: -0.48s; }
.hero-waveform span:nth-child(19) { height: 16px; animation-delay: -0.44s; }
.hero-waveform span:nth-child(20) { height: 16px; animation-delay: -0.40s; }
.hero-waveform span:nth-child(21) { height: 16px; animation-delay: -0.36s; }
.hero-waveform span:nth-child(22) { height: 16px; animation-delay: -0.32s; }
.hero-waveform span:nth-child(23) { height: 15px; animation-delay: -0.28s; }
.hero-waveform span:nth-child(24) { height: 13px; animation-delay: -0.24s; }
.hero-waveform span:nth-child(25) { height: 11px; animation-delay: -0.20s; }
.hero-waveform span:nth-child(26) { height: 9px;  animation-delay: -0.16s; }
.hero-waveform span:nth-child(27) { height: 7px;  animation-delay: -0.12s; }
.hero-waveform span:nth-child(28) { height: 5px;  animation-delay: -0.08s; }
.hero-waveform span:nth-child(29) { height: 4px;  animation-delay: -0.04s; }
.hero-waveform span:nth-child(30) { height: 3px;  animation-delay:  0.00s; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-waveform span { animation: none; transform: scaleY(0.6); }
  .hero-waveform-live { animation: none; }
}

.hero-logos {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero-logos-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.hero-logos-marquee::before,
.hero-logos-marquee::after  { display: none !important; }
.hero-logos-marquee {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.hero-logos .logos-track img {
  height: 72px;
  max-width: 240px;
  border-radius: 8px;
  opacity: 1;
}
.hero-logos .logos-track img:hover { opacity: 1; }
.logos-track img[src="/img/urhopesu.png"],
.logos-track img[src="/img/prokaks.png"] { filter: brightness(0) invert(1); }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,138,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mascot {
  width: 340px;
  height: 340px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,138,0.06);
  border: 2px solid rgba(255,255,138,0.14);
  padding: 1rem;
  position: relative;
  z-index: 1;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 3.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.social-proof-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.25rem;
}
.logos-marquee { overflow: hidden; position: relative; }
.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-marquee::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.logos-marquee::after  { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-track img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.65;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.logos-track img:hover { opacity: 1; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--bg);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-strip-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stats-strip-item:last-child { border-right: none; }
.stats-strip-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.stats-strip-label {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 140px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-strip-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 1rem; }
  .stats-strip-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats-strip-item:nth-child(n+3) { border-bottom: none; }
}

/* ── DEMO CALL ── */
.demo-call {
  background: var(--navy);
  padding: 4.5rem 0;
}
.demo-call-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.demo-mascot-col {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}
.demo-mascot-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: url('/img/puhebotti_profile_live.gif') center/cover no-repeat;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  animation: float 4.5s ease-in-out infinite;
  flex-shrink: 0;
  align-self: center;
}
.demo-content-col {
  flex: 1;
  text-align: left;
}
.demo-call h2 { color: #fff; margin-bottom: 0.75rem; }
.demo-call .demo-content-col > p { color: rgba(255,255,255,0.68); margin-bottom: 2.25rem; font-size: 1.05rem; }
.demo-number-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,138,0.75);
  border-radius: var(--radius);
  padding: 1.5rem 3.5rem;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.demo-number-box:hover { background: rgba(255,255,138,0.13); }
.demo-number-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.demo-number {
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.demo-number a { color: inherit; display: flex; align-items: center; gap: 0.5rem; }
.demo-hint { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }
.demo-call-price { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 0.35rem; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg-alt); }
.how-screenshot {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(9,23,82,0.18);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.how-screenshot img { width: 100%; height: auto; display: block; }
.value-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(9,23,82,0.13);
  max-width: 900px;
  margin: 0 auto;
}
.value-image-wrap img { width: 100%; height: auto; display: block; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--navy-light) 50%, var(--border) 100%);
  z-index: 0;
}
.steps-5col { grid-template-columns: repeat(5, 1fr); }
.steps-5col::before { left: calc((100% - 8rem) / 10); right: calc((100% - 8rem) / 10); }
.steps-5col .step h3 { font-size: 1rem; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--bg-alt);
}
.step h3 { color: var(--text); margin-bottom: 0.5rem; }
.step p   { font-size: 0.9rem; }

/* ── FEATURES ── */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.35rem;
}
.feature-icon i { font-size: 1.6rem; color: var(--yellow); }
.features-grid--lg .feature-icon { width: 72px; height: 72px; border-radius: var(--radius); }
.features-grid--lg .feature-icon i { font-size: 2.4rem; }
.feature-card h3 { color: var(--text); margin-bottom: 0.45rem; }
.feature-card p  { font-size: 0.9rem; }

/* ── PRICING ── */
.pricing { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-features { flex: 1; }
.pricing-card .btn { margin-top: auto; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--navy);
  background: var(--navy);
}
.pricing-card.featured h3,
.pricing-card.featured .price-custom { color: #fff; }
.pricing-card.featured p { color: rgba(255,255,255,0.6); }
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.5); }
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card > p { font-size: 0.9rem; min-height: 2.8em; }
.pricing-price {
  margin: 1.25rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-price { border-color: rgba(255,255,255,0.15); }
.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-card.featured .price-amount { color: var(--yellow); }
.price-vat { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.pricing-card.featured .price-vat { color: rgba(255,255,255,0.45); }
.price-unit { font-size: 0.88rem; color: var(--muted); margin-top: 0.2rem; }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.5); }
.price-custom { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.pricing-features {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pf {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-card.featured .pf { color: rgba(255,255,255,0.68); }
.pf i {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}
.pricing-card.featured .pf i { color: var(--yellow); }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-trial {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── TESTIMONIAL ── */
.testimonial { background: var(--bg); }
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.testimonial blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}
.testimonial blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--yellow);
  line-height: 0;
  position: absolute;
  top: 2.2rem;
  left: -1.5rem;
  font-family: Georgia, serif;
  opacity: 0.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--human);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-weight: 800;
  object-fit: cover;
  flex-shrink: 0;
  font-size: 1.1rem;
}
img.testimonial-avatar { background: none; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.testimonial-company { font-size: 0.83rem; color: var(--muted); }

/* ── FAQ ── */
.faq { background: var(--bg-alt); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}
.faq-item {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  margin: 0;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
@media (hover: hover) { .faq-question:hover { background: var(--bg-alt); } }
.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.25s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.faq-answer-inner ul { list-style: disc; padding-left: 1.25rem; }
.faq-answer-inner ul li { padding: 0.15rem 0; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-more { text-align: center; margin-top: 2rem; }

/* ── CTA / TRIAL FORM SECTION ── */
.cta-section {
  background: var(--navy);
  padding: 5.5rem 0;
}
.cta-inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.cta-mascot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  background: url('/img/puhebotti_profile_live.gif') center/cover no-repeat;
}
.cta-inner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-inner > p { color: rgba(255,255,255,0.68); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,138,0.05);
}
.cta-form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* ── FORM STATUS ── */
.form-status {
  margin: 0 0 0.75rem;
  padding: .6rem .8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}
.form-status.sending,
.form-status.ok,
.form-status.err { display: block; }
.form-status.sending { color: var(--muted); }
.form-status.ok      { color: #166534; background: #f0fdf4; }
.form-status.err     { color: #b42318; background: #fef2f2; }
.cta-form .form-status.sending { color: rgba(255,255,255,0.55); background: transparent; }
.cta-form .form-status.ok      { color: var(--yellow); background: rgba(255,255,138,0.1); border: 1px solid rgba(255,255,138,0.25); }
.cta-form .form-status.err     { color: #ffaaaa; background: rgba(255,80,80,0.15); border: 1px solid rgba(255,80,80,0.25); }

.form-disclaimer { margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.38); text-align: center; }
.form-trust { margin-top: 0.6rem; font-size: 0.75rem; color: rgba(255,255,255,0.28); text-align: center; }
.form-trust a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.form-trust a:hover { color: rgba(255,255,255,0.7); }
.form-success {
  background: rgba(255,255,138,0.08);
  border: 1px solid rgba(255,255,138,0.28);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.form-success h3 { color: var(--yellow); margin-bottom: 0.5rem; }
.form-success p   { color: rgba(255,255,255,0.68); }
.form-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  background: #05102b;
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand img { height: 26px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 220px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--yellow); color: var(--navy); }
.footer-made-in {
  display: flex; align-items: center; gap: 0.45rem;
  margin-top: 1.75rem;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.footer-made-in img { border-radius: 50%; flex-shrink: 0; width: 18px; height: 18px; margin: 0; }
.footer-col h4 {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}
.footer-email { font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }
.site-footer-minimal .footer-legal a { color: var(--muted); }
.site-footer-minimal .footer-legal a:hover { color: var(--text); }
.site-footer-minimal .footer-bottom a { color: var(--muted); }
.site-footer-minimal .footer-bottom a:hover { color: var(--text); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .badge { margin-bottom: 1rem; }

/* ── ALOITA PAGE ── */
.aloita-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 0 1.5rem;
}
.aloita-title { color: var(--text); margin-bottom: 0.75rem; }
.aloita-lead  { font-size: 1.05rem; margin-bottom: 2rem; }
.aloita-benefits { display: flex; flex-direction: column; }
.aloita-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.aloita-benefit:last-child { border: none; }
.benefit-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.aloita-benefit-text { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.aloita-benefit-desc { font-size: 0.85rem; color: var(--muted); }

/* ── OTA YHTEYS ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-box { position: static; }
}
.contact-form-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: sticky;
  top: 88px;
}
.contact-form-box h3 { color: var(--text); margin-bottom: 0.5rem; }
.contact-form-box > p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.contact-form-box .form-group { margin-bottom: 1rem; }
.contact-form-box .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form-box .form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form-box .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  background: var(--bg);
  color: var(--text);
}
.contact-form-box .form-group input:focus,
.contact-form-box .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,31,61,0.08);
}
.contact-form-box .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
.contact-form-box .form-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.contact-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.contact-success h3 { color: #15803d; margin-bottom: 0.5rem; }
.contact-success p  { color: #166534; font-size: 0.92rem; }
.contact-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #dc2626;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* ── STUB / COMING SOON PAGE ── */
.stub-page { background: var(--bg-alt); padding: 6rem 0; }
.stub-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.stub-content .badge { margin-bottom: 1.5rem; }
.stub-content h2 { color: var(--text); margin-bottom: 1rem; }
.stub-content p   { margin-bottom: 2rem; font-size: 1.05rem; }
.stub-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; }
  .hero-main-image-wrap { padding: 0 1.5rem 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .aloita-grid { grid-template-columns: 1fr; }
  .contact-form-box { position: static; }
  .logos-track img { height: 52px; max-width: 160px; }
  .logos-track { gap: 3rem; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .hero { padding: 2.5rem 0 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; position: relative; z-index: 95; }
  .nav-logo { position: relative; z-index: 95; }
  .nav-inner { position: relative; }
  .site-nav:has(.nav-links.open) { background: var(--navy) !important; }
  .site-nav:has(.nav-links.open)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 91;
    pointer-events: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    padding: 80px 2rem 2rem;
    background: var(--navy);
    z-index: 90;
    overflow-y: auto;
    gap: 0;
    animation: mobilemenu-in 0.2s ease;
  }
  @keyframes mobilemenu-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open > a {
    font-size: 1.35rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    text-align: left;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.85);
    background: none;
  }
  .nav-links.open > a.nav-active { color: #fff; border-bottom-color: rgba(255,255,255,0.08); }
  .nav-links.open > a:last-of-type { border-bottom: none; }
  .nav-links.open .nav-mobile-cta { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
  .nav-links.open .nav-mobile-lang { margin-top: 0; padding-top: 0.875rem; border-top: 1px solid rgba(255,255,255,0.1); }

  /* hero */
  .hero-main-image-wrap { padding: 0; }
  .hero-main-image { border-radius: 0; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .hero-demo-hint { flex-direction: column; align-items: center; gap: 0.2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .trust-item { font-size: 0.82rem; }

  /* logos marquee */
  .logos-track img { height: 36px; max-width: 110px; }
  .logos-track { gap: 2rem; }

  /* features */
  .features-grid { grid-template-columns: 1fr !important; }
  .feature-card { padding: 1.25rem; }

  /* steps */
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }

  /* ohjeet */
  .ohjeet-grid { grid-template-columns: 1fr !important; }
  .ohjeet-card { padding: 1.25rem; }

  /* misc */
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .cta-form { padding: 1.5rem; }
  .demo-call { padding: 3rem 0; }
  .demo-call-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .demo-content-col { text-align: center; }
  .demo-mascot-col { flex: none; }
  .demo-mascot-wrap { width: 120px; height: 120px; }
  .demo-number-box { padding: 1.25rem 2rem; }
}

/* ── HERO MASCOT FLOAT ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero-mascot { animation: float 4.5s ease-in-out infinite; }

/* ── STEP NUMBER ICON ── */
.step-num i { font-size: 1.3rem; color: var(--yellow); }

/* ── PRICING ADDON ── */
.pricing-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .pricing-addons-grid { grid-template-columns: 1fr; max-width: 440px; }
}
.pricing-addon-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.pricing-addon-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pricing-addon-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-addon-body h3 { margin-bottom: 0.4rem; }
.pricing-addon-body p  { font-size: 0.92rem; flex: 1; }
.pricing-addon-body .btn { align-self: flex-start; margin-top: auto; }

/* ── TESTIMONIALS GRID ── */
.testimonials-wrap { position: relative; }
.testimonials-fade-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-fade-wrap::before,
.testimonials-fade-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.testimonials-fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.testimonials-fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.testimonials-carousel { width: 100%; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
@media (max-width: 639px) {
  .testimonials-track { transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonials-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s, color 0.15s;
}
.testimonials-btn:hover { background: var(--yellow); color: var(--navy); }
.testimonials-dots { display: flex; gap: 0.5rem; align-items: center; }
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-dot.tc-dot-active { background: #fff; transform: scale(1.3); }
.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}
.testimonial-card--active {
  border-color: rgba(255,255,138,0.55);
  box-shadow: 0 0 0 1px rgba(255,255,138,0.25), 0 4px 28px rgba(0,0,0,0.35);
}
.testimonial-card blockquote { flex: 1; }
@media (max-width: 639px) {
  .testimonial-card { flex: 0 0 100%; }
  .testimonials-fade-wrap::before,
  .testimonials-fade-wrap::after { display: none; }
}
.testimonial-card blockquote {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 0;
  position: absolute;
  top: 1.4rem;
  left: -0.2rem;
  font-family: Georgia, serif;
  opacity: 1;
}
.testimonial-card .testimonial-name { color: #fff; }
.testimonial-card .testimonial-company { color: rgba(255,255,255,0.55); }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 1.1rem;
}

/* ── AUDIO DEMO / SAMPLE CALLS ── */
.audio-demo { background: var(--bg); }
.audio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.audio-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.audio-card:hover { border-color: var(--navy-light); transform: translateY(-2px); }
.audio-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}
.audio-card-icon i { font-size: 1.6rem; color: var(--yellow); }
.audio-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 0.4rem; }
.audio-card p { font-size: 0.85rem; margin-bottom: 1.25rem; }
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--yellow);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.play-btn:hover { background: var(--navy-mid); transform: scale(1.04); }
.play-btn i { font-size: 1rem; }

/* ── OHJEET SECTION ── */
.ohjeet-section { background: var(--bg-alt); }
.ohjeet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ohjeet-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.ohjeet-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.ohjeet-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.ohjeet-icon i { font-size: 1.4rem; color: var(--yellow); }
.ohjeet-card h3 { font-size: 1rem; color: var(--text); }
.ohjeet-card p  { font-size: 0.85rem; }
.ohjeet-card .ohjeet-arrow {
  margin-top: auto;
  color: var(--navy-light);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-marquee {
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item i { font-size: 1.1rem; color: var(--yellow); flex-shrink: 0; }

/* ── KAYTTOONOTTO VAIHTOEHDOT ── */
.kayttoonotto-vaihtoehdot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.kayttoonotto-vaihtoehto {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.kayttoonotto-vaihtoehto-suositus {
  border-color: var(--navy);
  background: var(--navy-soft);
}
.kv-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.kv-body { flex: 1; }
.kv-body strong { display: block; color: var(--text); margin-bottom: 0.3rem; font-size: 0.97rem; }
.kv-body p { font-size: 0.88rem; color: var(--muted); margin: 0 0 0.6rem; }

/* ── VAIHE4 SPINNER ── */
#vaihe4-spinner { display: none; align-items: center; gap: 0.6rem; padding: 0.1rem 0; }
#vaihe4-spinner.vaihe4-visible { display: flex; }
#vaihe4-spinner span { font-size: 0.88rem; color: var(--muted); }
.vaihe4-spin { width: 18px; height: 18px; border: 2px solid rgba(9,23,82,0.12); border-top-color: var(--navy); border-radius: 50%; animation: loaderSpin 0.7s linear infinite; flex-shrink: 0; }
#vaihe4-content { transition: opacity 0.2s; }
#vaihe4-content.vaihe4-hidden { opacity: 0; }

/* ── OHJEET PAGE CONTENT ── */
.ohjeet-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ohjeet-article h2 { color: var(--text); margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.ohjeet-article h3 { color: var(--text); margin: 2rem 0 0.75rem; font-size: 1.15rem; }
.ohjeet-article p  { margin-bottom: 1rem; }
.ohjeet-article ul { margin: 0 0 1.25rem 1.5rem; list-style: disc; }
.ohjeet-article ul li { padding: 0.25rem 0; color: var(--muted); }
.ohjeet-article ul li.faq-item { padding: 0; color: inherit; }
.ohjeet-article strong { color: var(--text); }
.operator-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.operator-card h3 { margin: 0 0 0.75rem; color: var(--navy); font-size: 1.05rem; }
.code-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0.25rem 0;
}
.tip-box {
  background: rgba(255,255,138,0.08);
  border: 1.5px solid rgba(255,255,138,0.4);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.tip-box i { font-size: 1.4rem; color: #c8c800; flex-shrink: 0; margin-top: 1px; }
.tip-box p { color: var(--text); margin: 0; font-size: 0.95rem; }

@media (max-width: 960px) {
  .ohjeet-grid { grid-template-columns: repeat(2, 1fr); }
  .audio-cards { grid-template-columns: 1fr; max-width: 400px; }
}

/* ── SCROLL REVEAL ── */
.sr-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-visible {
  opacity: 1;
  transform: none;
}

/* ── MIKSI PUHEBOTTI ── */
.miksi-stats-bar { background: var(--navy); padding: 3rem 0; }
.miksi-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.miksi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
}
.miksi-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.miksi-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 200px;
  line-height: 1.4;
}
.miksi-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.roi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.roi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.roi-icon { width: 88px; height: 88px; margin: 0 auto 0.6rem; display: flex; align-items: center; justify-content: center; }
.roi-icon svg { width: 100%; height: 100%; }
.roi-icon i { font-size: 2.75rem; color: var(--yellow); }
.roi-icon img { width: 72px; height: 72px; object-fit: contain; }
.roi-num  { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.roi-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ── PUHELUTILASTOT – DASHBOARD MOCKUP ── */
.dash-tablet-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 2.5rem; }
.dash-tablet {
  width: 320px;
  background: #091752;
  border-radius: 28px;
  padding: 18px 14px 28px;
  box-shadow: 0 32px 80px rgba(9,23,82,0.55), 0 0 0 2px rgba(255,255,138,0.18);
  position: relative;
}
.dash-tablet-screen {
  background: #061240;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
}
.dash-tablet-home {
  width: 40px; height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 12px auto 0;
}
.dash-placeholder {
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
}
.dash-placeholder-logo { margin-bottom: 0.25rem; }
.dash-placeholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 0.75rem;
}
.dash-placeholder-card {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.65rem 0.6rem;
  text-align: left;
}
.dash-placeholder-card--accent { background: rgba(255,255,255,0.1); }
.dash-placeholder-label {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.dash-placeholder-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.05em;
}
@media (max-width: 400px) {
  .dash-tablet { width: 290px; }
}

/* Scroll wrapper for all comparison tables */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.table-scroll-hint {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* Comparison table — shared by miksi + miten pages */
.miksi-comp-table,
.miten-comparison-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}
.miksi-comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--navy);
}
.miten-comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy);
}
.comp-col-label {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.comp-col-neutral { background: rgba(255,255,255,0.06); }
.comp-col-good    { background: rgba(255,255,138,0.14); }
.comp-col-bad     { background: rgba(255,255,255,0.02); }
.miksi-comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.miten-comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.miksi-comp-row:nth-child(even),
.miten-comp-row:nth-child(even) { background: var(--bg-alt); }
.comp-feature {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.comp-val {
  padding: 0.9rem;
  text-align: center;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.comp-val-bad  { color: #d1293d; }
.comp-val-good { color: #16a34a; }

/* ── STEPS LIST ── */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps-counter;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.steps-list li {
  counter-increment: steps-counter;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.steps-list li::before {
  content: counter(steps-counter);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 1px;
}

/* ── RATKAISUT ── */
.ratkaisut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ratkaisut-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ratkaisut-card-featured {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(15,31,61,0.12);
}
.ratkaisut-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.ratkaisut-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.ratkaisut-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.ratkaisut-content { flex: 1; }
.ratkaisut-content h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: var(--navy); }
.ratkaisut-content p  { margin: 0 0 1rem; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.ratkaisut-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ratkaisut-features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--text);
}
.ratkaisut-features li i { color: #16a34a; flex-shrink: 0; }
.ratkaisut-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.ratkaisut-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.ratkaisut-link:hover { text-decoration: underline; }

.integration-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.integration-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.integration-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.integration-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 0.4rem; }
.integration-step p  { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin: 0; }
.integration-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.75rem;
  color: var(--navy);
  font-size: 1.4rem;
  opacity: 0.35;
  flex-shrink: 0;
}

.toimiala-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.toimiala-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-decoration: none;
  cursor: pointer;
}
.toimiala-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ── MITEN PUHEBOTTI TOIMII ── */
.miten-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.miten-scenario-card {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
}
.miten-scenario-bad  { background: #fff8f8; border-color: #fca5a5; }
.miten-scenario-good { background: #f0fdf4; border-color: #86efac; }
.miten-scenario-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.miten-scenario-bad  .miten-scenario-label i { color: #d1293d; }
.miten-scenario-good .miten-scenario-label i { color: #16a34a; }
.miten-scenario-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.miten-scenario-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.miten-scenario-bad  .miten-scenario-list li::before { content: '✗'; position: absolute; left: 0; color: #d1293d; }
.miten-scenario-good .miten-scenario-list li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; }

.miten-dialogue {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dialogue-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.dialogue-user { flex-direction: row-reverse; }
.dialogue-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url('/img/puhebotti_profile_live.gif') center/cover no-repeat;
  flex-shrink: 0;
}
.dialogue-avatar img { display: none; }
.dialogue-bubble {
  background: var(--navy);
  color: #fff;
  border-radius: 18px 18px 18px 4px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 75%;
}
.dialogue-bubble-user {
  background: var(--bg-alt);
  color: var(--text);
  border-radius: 18px 18px 4px 18px;
}
.dialogue-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
  background: rgba(255,255,138,0.1);
  border: 1.5px solid rgba(255,255,138,0.4);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.dialogue-note i { color: #c8c800; font-size: 1.2rem; flex-shrink: 0; }
.dialogue-note span { flex: 1; min-width: 0; }

.miten-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
.miten-setup-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.miten-setup-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.miten-setup-step h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.3rem; color: var(--navy); }
.miten-setup-step p  { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ── ASIAKASTARINAT ── */
.asiakastarinat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.asiakastarina-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.asiakastarina-toimiala {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.asiakastarina-card h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.asiakastarina-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.25rem;
}
.asiakastarina-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Responsive — new components */
@media (max-width: 960px) {
  .ratkaisut-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-cards { grid-template-columns: repeat(3, 1fr); }
  .miksi-stat { padding: 0 1.5rem; }
  .integration-steps { flex-wrap: wrap; gap: 1rem; }
  .integration-arrow { display: none; }
  .integration-step { min-width: 140px; max-width: 180px; }
  .asiakastarinat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ratkaisut-grid { grid-template-columns: 1fr; }
  .roi-cards { grid-template-columns: 1fr !important; }
  .miksi-stats-inner { flex-direction: column; gap: 2rem; }
  .miksi-stat-divider { width: 60px; height: 1px; }
  .miksi-stat { padding: 0; }
  .miten-example-grid { grid-template-columns: 1fr; }
  .miksi-comp-table  { min-width: 640px; }
  .miten-comparison-table { min-width: 560px; }
  .comparison-table  { min-width: 560px; }
  .table-scroll-hint { display: flex; }
  .comp-col-label { padding: 0.75rem 0.6rem; font-size: 0.82rem; }
  .comp-feature   { padding: 0.8rem 0.75rem; font-size: 0.88rem; }
  .comp-val       { padding: 0.8rem 0.5rem; font-size: 0.9rem; }
  .integration-step { min-width: 100%; max-width: 100%; padding: 1rem; }
  .asiakastarinat-grid { grid-template-columns: 1fr; }
  .dialogue-bubble { max-width: 90%; font-size: 0.88rem; }
  .miten-setup-step { gap: 0.75rem; padding: 1rem; }
  .audio-cards { grid-template-columns: 1fr; max-width: 100%; }
}

/* ── SAMPLE CALLS ── */
.sample-calls {
  background: var(--bg-alt);
  padding: 5rem 0;
}
.sample-calls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.sample-call-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}
.sample-call-meta {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sample-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.sample-call-title {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.sample-call-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.sample-call-card audio {
  width: 100%;
  border-radius: 8px;
  accent-color: var(--navy);
}
@media (max-width: 640px) {
  .sample-calls-grid { grid-template-columns: 1fr; }
}


/* ── TOIMIALA HERO IMAGE ── */
.page-hero-img {
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,31,61,0.4);
}
.page-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 15/8;
  object-fit: cover;
}

/* ── LARGE SCREEN BOOST (1400px+) ── */
@media (min-width: 1400px) {
  body { font-size: 18px; }
  h3   { font-size: 1.25rem; }
  .section-header p { font-size: 1.1rem; max-width: 620px; }
}


/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb-item { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23aab4c8' d='m181.66 133.66-80 80a8 8 0 0 1-11.32-11.32L164.69 128 90.34 53.66a8 8 0 0 1 11.32-11.32l80 80a8 8 0 0 1 0 11.32Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  margin-right: 0.4rem;
}
.breadcrumb-item a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb-item a:hover { color: var(--navy); }
.breadcrumb-item--active { color: var(--text); font-weight: 500; }

/* ── UUTISET ── */
.uutiset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.uutinen-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.uutinen-card:hover {
  box-shadow: 0 8px 28px rgba(15,31,61,0.1);
  transform: translateY(-3px);
  border-color: var(--navy);
}
.uutinen-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.uutinen-category {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}
.uutinen-meta time { font-size: 0.8rem; color: var(--muted); }
.uutinen-card h2 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}
.uutinen-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.25rem;
}
.uutinen-link { font-size: 0.88rem; font-weight: 700; color: var(--navy); }

/* ── LEGAL PAGES (tietosuoja, kayttoehdot, sopimusehdot) ── */
.legal-content h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 2.5rem 0 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
.legal-content a { color: var(--navy); }
.legal-content ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.legal-content ul li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.4rem;
  color: var(--text);
  line-height: 1.6;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
}
.legal-content strong { color: var(--navy); }

/* ── ETUSIVU UUTISET (compact list) ── */
.etusivu-uutiset {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.etusivu-uutinen {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.etusivu-uutinen:hover .etusivu-uutinen-otsikko { color: var(--accent); }
.etusivu-uutinen:hover .etusivu-uutinen-nuoli { transform: translateX(4px); color: var(--accent); }
.etusivu-uutinen-pvm {
  flex: 0 0 6rem;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .etusivu-uutinen-pvm { display: none; }
  .etusivu-uutinen { gap: 0.75rem; }
}
.etusivu-uutinen-otsikko {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.15s;
}
.etusivu-uutinen-nuoli {
  flex: 0 0 auto;
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.2s, color 0.15s;
}
.etusivu-uutinen-tag {
  flex: 0 0 4.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-align: center;
}
.etusivu-uutinen-tag--uutinen { background: var(--navy); color: #fff; }
.etusivu-uutinen-tag--blogi   { background: var(--yellow); color: var(--navy); }

/* ── ARTIKKELI ── */
.artikkeli-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #112458 50%, #1c3d82 100%);
  padding: 4rem 0;
  text-align: center;
}
.artikkeli-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.artikkeli-hero h1 {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.artikkeli-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}
.artikkeli-body { padding: 4rem 0 5rem; background: var(--bg); }
.artikkeli-content { max-width: 740px; margin: 0 auto; }
.artikkeli-content h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  line-height: 1.3;
}
.artikkeli-content p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.artikkeli-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.artikkeli-content ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.artikkeli-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--navy);
}
.artikkeli-content strong { color: var(--navy); }
.artikkeli-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.artikkeli-back:hover { opacity: 1; }

@media (max-width: 960px) { .uutiset-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .uutiset-grid { grid-template-columns: 1fr; }
  .artikkeli-hero { padding: 2.5rem 0; }
  .artikkeli-body { padding: 2.5rem 0 3.5rem; }
}

/* ── BLOGI ── */
.blogi-readtime {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.blogi-stat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.blogi-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
}
.blogi-stat-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.blogi-sources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.blogi-sources h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.blogi-sources ul { list-style: none; padding: 0; }
.blogi-sources ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.25rem 0;
}
.blogi-sources ul li::before { display: none; }
@media (max-width: 600px) {
  .blogi-stat { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .blogi-stat-num { font-size: 2rem; }
}

/* ── MEISTÄ ── */
.meista-missio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.meista-missio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.meista-missio-card h3 { margin: 0.75rem 0 0.5rem; }
.meista-missio-card p  { font-size: 0.93rem; margin: 0; }
.meista-tiimi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.meista-tiimi-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow);
}
.meista-tiimi-kuva {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.meista-tiimi-kuva img { width: 100%; height: 100%; object-fit: cover; }
.meista-tiimi-kuva--placeholder {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
}
/* ── TIIMI LASIT EASTER EGG ── */
.meista-tiimi-card { position: relative; }
.tiimi-lasit {
  position: absolute;
  top: 75px;
  left: calc(50% - 8px);
  transform: translate(-50%, -160px) rotate(-25deg);
  font-size: 2.6rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.6, 0.64, 1), opacity 0.08s;
}
.tiimi-aurinko {
  position: absolute;
  top: 30px;
  left: calc(50% - 72px);
  font-size: 1.5rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
}
.tiimi-puhelin {
  position: absolute;
  top: 128px;
  left: calc(50% + 50px);
  font-size: 2.2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-puhelin {
  animation: aurinko-sisaan 0.45s 0.25s cubic-bezier(0.34, 1.8, 0.64, 1) forwards,
             puhelin-pirisee 1.4s 0.7s ease-in-out infinite;
}
@keyframes puhelin-pirisee {
  0%, 50%, 100% { transform: rotate(0deg); }
  10%           { transform: rotate(-18deg); }
  20%           { transform: rotate(18deg); }
  30%           { transform: rotate(-18deg); }
  40%           { transform: rotate(18deg); }
}
.tiimi-kahvi {
  position: absolute;
  top: 124px;
  left: calc(50% - 82px);
  font-size: 2.6rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
}
.tiimi-robotti {
  position: absolute;
  top: 28px;
  left: calc(50% + 50px);
  font-size: 1.4rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
}
.tiimi-lappar {
  position: absolute;
  top: 130px;
  left: calc(50% + 48px);
  font-size: 2.2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0;
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-lappar {
  animation: aurinko-sisaan 0.45s 0.45s cubic-bezier(0.34, 1.8, 0.64, 1) forwards,
             kahvi-kelluu 2.2s 0.9s ease-in-out infinite;
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-kahvi {
  animation: aurinko-sisaan 0.45s 0.15s cubic-bezier(0.34, 1.8, 0.64, 1) forwards,
             kahvi-kelluu 2s 0.6s ease-in-out infinite;
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-robotti {
  animation: aurinko-sisaan 0.45s 0.35s cubic-bezier(0.34, 1.8, 0.64, 1) forwards,
             robotti-huljuu 1.8s 0.8s ease-in-out infinite;
}
@keyframes kahvi-kelluu {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes robotti-huljuu {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-12deg); }
  75%       { transform: rotate(12deg); }
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-aurinko {
  animation: aurinko-sisaan 0.45s cubic-bezier(0.34, 1.8, 0.64, 1) forwards,
             aurinko-pyori 4s 0.45s linear infinite;
}
@keyframes aurinko-sisaan {
  from { opacity: 0; transform: scale(0) rotate(-40deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes aurinko-pyori {
  from { opacity: 1; transform: rotate(0deg); }
  to   { opacity: 1; transform: rotate(360deg); }
}
.meista-tiimi-card:has(.meista-tiimi-kuva:hover) .tiimi-lasit {
  transform: translate(-50%, 0) rotate(0deg);
  opacity: 1;
}
.meista-tiimi-info h3 { margin: 0 0 0.2rem; font-size: 1.25rem; }
.tiimi-linkedin { display: inline-flex; align-items: center; margin-top: 0.75rem; color: var(--navy); font-size: 1.3rem; opacity: 0.5; transition: opacity 0.15s; }
.tiimi-linkedin:hover { opacity: 1; }
.meista-tiimi-rooli {
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.meista-tiimi-info p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.meista-faktat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.meista-fakta-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.meista-fakta-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .meista-missio-grid { grid-template-columns: 1fr; }
  .meista-tiimi-grid  { grid-template-columns: 1fr; }
  .meista-faktat      { grid-template-columns: repeat(2, 1fr); }
}

/* ── AANIVAIHTOEHDOT ── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.voice-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.voice-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--yellow);
}
.voice-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.voice-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .voice-grid { grid-template-columns: 1fr; } }

/* ── EN HOW IT WORKS — COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
}
.comparison-table thead tr {
  background: var(--navy);
  color: #fff;
}
.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.92rem;
}
.comparison-table thead th:first-child {
  width: 28%;
}
.comparison-table th.comparison-highlight,
.comparison-table td.comparison-highlight {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
}
.comparison-table thead th.comparison-highlight {
  color: var(--navy);
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-alt);
}
.comparison-table td {
  padding: 0.9rem 1.25rem;
  vertical-align: top;
  line-height: 1.55;
  color: var(--text);
}
.comparison-table td.comparison-row-label {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.comparison-table td.comparison-row-label i {
  margin-right: 0.4rem;
  opacity: 0.75;
}
@media (max-width: 640px) {
  .comparison-table { font-size: 0.83rem; }
  .comparison-table td, .comparison-table th { padding: 0.7rem 0.75rem; }
  .comparison-table td.comparison-row-label { white-space: normal; }
}
