/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy: #2d3a7d;
  --navy-dark: #232e66;
  --navy-deeper: #1a2452;
  --navy-50: #eef0f8;
  --pink: #e91e85;
  --pink-soft: #ffb3d9;
  --pink-50: #fdeaf3;
  --orange: #f58024;
  --orange-soft: #fcb549;
  --orange-50: #fff2e6;
  --red: #e64644;
  --magenta: #d823cd;
  --green: #1d8a4a;
  --green-50: #e8f7ee;

  --grad: linear-gradient(90deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
  --grad-tilt: linear-gradient(135deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
  --grad-soft: linear-gradient(135deg, #fff2e6 0%, #fdeaf3 100%);

  --bg: #ffffff;
  --surface: #f7f8fc;
  --surface-2: #f2f4f8;
  --border: #e8eaef;
  --text: #151515;
  --text-muted: #6f6f6f;

  --font: 'Figtree', system-ui, -apple-system, sans-serif;

  --sh-sm: 0 1px 2px rgba(35, 46, 102, 0.04), 0 2px 6px rgba(35, 46, 102, 0.04);
  --sh-md: 0 4px 8px rgba(35, 46, 102, 0.06), 0 8px 24px rgba(35, 46, 102, 0.08);
  --sh-lg: 0 12px 24px -8px rgba(35, 46, 102, 0.12), 0 24px 64px -12px rgba(35, 46, 102, 0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--pink); color: #fff; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-page {
  --hero-fade-block: 100px;
  --hero-fade-inline: 48px;
  --crumb-offset: 96px; /* kuvakaista alkaa navin alta, murupolku silti yhteisessä kohdassa */
  margin-top: var(--crumb-offset);
  padding: 64px 0 96px;
  min-height: 640px;
  background: var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-page::before,
.hero-page::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-page::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 42%, rgba(255,255,255,0) 62%);
}
.hero-page::after {
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent var(--hero-fade-block), transparent calc(100% - var(--hero-fade-block)), var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, transparent var(--hero-fade-inline), transparent calc(100% - var(--hero-fade-inline)), var(--bg) 100%);
}
.hero-page > .container {
  position: relative;
  z-index: 2;
}
.hero-page-inner { max-width: 600px; }
.hero-page h1 {
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-page h1 .gr {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-page p.hero-lead {
  font-size: 20px;
  color: var(--navy-dark);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}
.kicker.orange { color: var(--orange); }
.kicker.pink { color: var(--pink); }
.kicker.navy { color: var(--navy); }
.kicker.red { color: var(--red); }
.kicker.green { color: var(--green); }

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: stretch;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(230, 70, 68, 0.7);
}
.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(230, 70, 68, 0.09);
  color: #c43d3d;
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(230, 70, 68, 0.25);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-emergency:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.55);
}
.btn-emergency .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
}
.btn-emergency .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  animation: emergencyPulse 1.8s ease-out infinite;
}
@keyframes emergencyPulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ============================================================
   HERO PHOTO
   ============================================================ */
.support-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.block { padding: 100px 0; }
.block.alt { background: var(--surface); }
.section-head {
  margin-bottom: 64px;
  max-width: 880px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.018em;
}
.section-title .gr {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   SUPPORT TIERS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.tier-card.featured {
  border-color: rgba(230, 70, 68, 0.30);
  background: linear-gradient(160deg, #fff9f7 0%, #fff 100%);
}
.tier-card.featured:hover { border-color: var(--red); }
.tier-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
}
.tier-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-icon.navy { background: var(--navy-50); color: var(--navy); }
.tier-icon.orange { background: var(--orange-50); color: var(--orange); }
.tier-icon.red { background: #fdeaea; color: var(--red); }
.tier-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.tier-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.tier-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, gap 0.2s;
}
.tier-contact-link:last-child { border-bottom: none; }
.tier-contact-link:hover { color: var(--pink); gap: 12px; }
.tier-contact-link svg { flex-shrink: 0; }
.tier-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  padding: 8px 14px;
  background: #fdeaea;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.tier-hours {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   WHAT WE HELP WITH — grid
   ============================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 20px;
}
.help-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.help-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--pink-soft);
}
.help-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-icon.pink { background: var(--pink-50); color: var(--pink); }
.help-icon.orange { background: var(--orange-50); color: var(--orange); }
.help-icon.navy { background: var(--navy-50); color: var(--navy); }
.help-icon.red { background: #fdeaea; color: var(--red); }
.help-icon.green { background: var(--green-50); color: var(--green); }
.help-icon.grad { background: var(--grad); color: #fff; }
.help-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.help-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.help-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.help-card li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.help-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

/* ============================================================
   DARK BAND — response commitment
   ============================================================ */
.response-band {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 55%, #2e1d6e 120%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.response-band::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 70, 68, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.response-band::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(216, 35, 205, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.response-band .section-head { position: relative; z-index: 2; }
.response-band .kicker { color: rgba(252, 181, 73, 0.9); }
.response-band .section-title { color: #fff; }
.response-band .section-lead { color: rgba(255,255,255,0.75); }
.response-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.response-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.response-stat:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}
.response-stat-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.response-stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.response-stat-sub {
  font-size: 14px;
  color: #d5daed;
  line-height: 1.55;
}

.response-stat-sub [data-emergency-gate-open] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   HUOLETON UPSELL
   ============================================================ */
.huoleton-band {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.huoleton-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.huoleton-text .kicker { margin-bottom: 20px; }
.huoleton-text h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
  color: var(--navy-dark);
}
.huoleton-text h2 .gr {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.huoleton-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.huoleton-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.huoleton-benefits li {
  font-size: 15.5px;
  color: var(--text);
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
  min-height: 24px;
}
.huoleton-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 2px 8px -2px rgba(230, 70, 68, 0.45);
}
.huoleton-benefits li::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
}
.huoleton-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid var(--navy-dark);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Huoleton visual card stack */
.huoleton-visual {
  position: relative;
  min-height: 360px;
}
.hl-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--sh-lg);
  padding: 22px 24px;
  font-size: 14px;
}
.hl-card-main {
  top: 0;
  right: 0;
  width: 72%;
  z-index: 3;
  transform: rotate(1.5deg);
  animation: hlFloat 7s ease-in-out infinite;
}
.hl-card-prio {
  bottom: 40px;
  left: 0;
  width: 60%;
  z-index: 2;
  transform: rotate(-2.5deg);
  animation: hlFloat2 8s ease-in-out 1s infinite;
}
@keyframes hlFloat {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-10px); }
}
@keyframes hlFloat2 {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-12px); }
}
.hl-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hl-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.hl-title { font-size: 13px; font-weight: 800; color: var(--navy-dark); }
.hl-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 1px; }
.hl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.hl-row + .hl-row { border-top: 1px dashed var(--border); }
.hl-item { font-size: 13px; font-weight: 600; color: var(--navy-dark); }
.hl-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}
.hl-status.ok { background: var(--green-50); color: var(--green); }
.hl-status.prio { background: var(--orange-50); color: var(--orange); }
.hl-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.contact-block {
  padding: 100px 0;
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-channel-value { overflow-wrap: anywhere; }
.contact-text h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.contact-text h2 .gr {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.contact-channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}
.contact-channel:hover {
  border-color: var(--pink-soft);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.contact-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon.navy { background: var(--navy-50); color: var(--navy); }
.contact-channel-icon.orange { background: var(--orange-50); color: var(--orange); }
.contact-channel-icon.red { background: #fdeaea; color: var(--red); }
.contact-channel-body { flex: 1; min-width: 0; }
.contact-channel-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 3px;
}
.contact-channel-value {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.contact-channel-value a {
  color: var(--navy);
  font-weight: 700;
}
.contact-channel-value a:hover { color: var(--pink); }
.contact-channel-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-channel-tag.green { background: var(--green-50); color: var(--green); }
.contact-channel-tag.orange { background: var(--orange-50); color: var(--orange); }
.contact-channel-tag.red { background: #fdeaea; color: var(--red); }

/* Office hours box */
.hours-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.hours-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  color: var(--navy);
  flex-shrink: 0;
}
.hours-box-head .title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}
.hours-box-head .sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  gap: 12px;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day { font-size: 14.5px; font-weight: 600; color: var(--text); }
.hours-time {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-dark);
}
.hours-time.muted { color: var(--text-muted); font-weight: 500; }
.hours-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #fdeaea;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hours-note p {
  font-size: 13.5px;
  color: #7a2020;
  font-weight: 600;
  line-height: 1.55;
}
.hours-note a {
  color: var(--red);
  font-weight: 700;
}
.hours-note a:hover { text-decoration: underline; }
.emergency-card {
  margin-top: 24px;
  padding: 24px 24px;
  background: linear-gradient(135deg, #fff5f0 0%, #fff0f0 100%);
  border: 1.5px solid rgba(230, 70, 68, 0.22);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.emergency-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fdeaea;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.emergency-card-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  background: rgba(230, 70, 68, 0.10);
  z-index: -1;
  animation: emergencyCardPulse 2s ease-out infinite;
}
@keyframes emergencyCardPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}
.emergency-card-body { flex: 1; }
.emergency-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.emergency-card-detail {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.emergency-card-detail a {
  font-weight: 700;
  color: var(--red);
}
.emergency-card-detail a:hover { text-decoration: underline; }

/* ============================================================
   INLINE CTA
   ============================================================ */
.inline-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 32px;
  background: var(--grad-soft);
  border: 1px solid var(--pink-soft);
  border-radius: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 30, 133, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.inline-cta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 2;
}
.inline-cta-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.inline-cta-text span {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.inline-cta-text a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--pink-soft);
  text-underline-offset: 3px;
}
.inline-cta-text a:hover { text-decoration-color: var(--pink); }
.inline-cta .btn-primary { position: relative; z-index: 2; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: var(--pink-soft);
  box-shadow: var(--sh-md);
}
.faq-item summary {
  cursor: pointer;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  font-weight: 300;
  color: var(--pink);
  transition: transform 0.25s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.72;
}
.faq-item p a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-item p a:hover { opacity: 0.8; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy-deeper);
  padding: 110px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230, 70, 68, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 30, 133, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-lead {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  margin-bottom: 18px;
}
.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.88);
}
.cta-band h2 .gr {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.btn-emergency-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: background 0.2s, transform 0.2s;
}
.btn-emergency-lg:hover {
  background: rgba(230, 70, 68, 0.75);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.60);
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.04s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.19s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.24s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.29s; }
[data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.34s; }
[data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.39s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 901px) and (max-width: 1440px) {
  .hero-page > .container { padding-left: 112px; }
}
@media (max-width: 1100px) {
  .tier-grid { grid-template-columns: 1fr; }
  .response-stats { grid-template-columns: repeat(2, 1fr); }
  .huoleton-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 800px) {
  .response-stats { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 601px) and (max-width: 900px) {
  .hero-page::before {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 35%, rgba(255,255,255,0.88) 72%, rgba(255,255,255,0.2) 100%);
  }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-page {
    --hero-fade-block: 64px;
    --hero-fade-inline: 20px;
    --crumb-offset: 104px;
    padding: 40px 0 220px;
    min-height: 0;
  }
  .hero-page::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.98) 42%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0.08) 100%);
  }
  .support-photo { top: auto; height: 70%; object-position: 80% bottom; }
  .block { padding: 72px 0; }
  .response-band { padding: 80px 0; }
  .contact-block { padding: 72px 0; }
  .cta-band { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-emergency { justify-content: center; }
  .tier-card { padding: 28px 24px; }
  .help-grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: stretch; padding: 24px 20px; gap: 18px; margin-top: 44px; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn-primary, .btn-emergency-lg { width: 100%; justify-content: center; }
  .hours-box { padding: 24px 22px; }
}

/* ============================================================
   AI-HI FORM (Kipinä)
   ============================================================ */
.ai-hi {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 16px 28px;
  background: #fff;
  color: var(--navy-dark);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  font-family: var(--font);
  transition: all 0.2s;
}
.ai-hi:hover, .ai-hi:focus-within {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}
.ai-hi-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  user-select: none;
  cursor: default;
}
.ai-hi-wave {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transform-origin: 70% 70%;
  animation: aiWave 3.4s ease-in-out 2s infinite;
}
@keyframes aiWave {
  0%, 78%, 100% { transform: rotate(0deg); }
  82%  { transform: rotate(14deg); }
  86%  { transform: rotate(-8deg); }
  90%  { transform: rotate(14deg); }
  94%  { transform: rotate(-4deg); }
  98%  { transform: rotate(10deg); }
}
.ai-hi-input {
  width: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--navy-dark);
  font: 500 14px/1 var(--font);
  opacity: 0;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease 0.05s, padding 0.3s ease, margin 0.3s ease;
}
.ai-hi-input::placeholder { color: var(--text-muted); font-weight: 400; }
.ai-hi:hover .ai-hi-input,
.ai-hi:focus-within .ai-hi-input {
  width: 200px;
  opacity: 1;
  padding: 0 12px;
  margin-left: 10px;
  border-left: 1px solid var(--border);
}
.ai-hi-send {
  width: 0;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy-dark);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.65);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease 0.1s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.ai-hi-send svg { width: 14px; height: 14px; stroke-width: 2.6; }
.ai-hi:hover .ai-hi-send,
.ai-hi:focus-within .ai-hi-send {
  width: 32px;
  opacity: 1;
  transform: scale(1);
}
.ai-hi-send:hover, .ai-hi-send:focus-visible { color: var(--orange); }

/* Tumma variantti CTA-bandissa */
.cta-band .ai-hi {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.cta-band .ai-hi:hover,
.cta-band .ai-hi:focus-within {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.cta-band .ai-hi-input { color: #fff; }
.cta-band .ai-hi-input::placeholder { color: rgba(255,255,255,0.55); }
.cta-band .ai-hi:hover .ai-hi-input,
.cta-band .ai-hi:focus-within .ai-hi-input { border-left-color: rgba(255,255,255,0.25); }
.cta-band .ai-hi-send { color: #fff; }
.cta-band .ai-hi-send:hover,
.cta-band .ai-hi-send:focus-visible { color: var(--orange-soft); }

@media (prefers-reduced-motion: reduce) {
  .ai-hi-wave { animation: none; }
}

@media (max-width: 600px) {
  .hero-cta-row .ai-hi,
  .cta-row .ai-hi {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 28px;
  }
  .ai-hi-label { flex: 0 0 100%; justify-content: center; }
  .ai-hi:hover,
  .ai-hi:focus-within { row-gap: 12px; }
  .ai-hi:hover .ai-hi-input,
  .ai-hi:focus-within .ai-hi-input {
    flex: 1 1 0;
    width: 0;
    margin-left: 0;
    border-left: 0;
    font-size: 16px;
  }
  .ai-hi-send { flex-shrink: 0; }
}
