/* === ICON SYSTEM === */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(165deg, rgba(34,59,62,0.82) 0%, rgba(34,59,62,0.75) 40%, rgba(42,74,77,0.80) 100%),
              url('Resaco_tausta7.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-topo {
  position: absolute; inset: 0;
  opacity: 0.15;
  pointer-events: none;
}
.hero-topo svg { width: 100%; height: 100%; }
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--signal-zest-glow) 0%, transparent 70%);
  top: 10%; right: -5%;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,244,96,0.06) 0%, transparent 70%);
  bottom: 10%; left: -5%;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
.hero-glow-3 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162,220,232,0.06) 0%, transparent 70%);
  top: 50%; left: 30%;
  animation: glowPulse 10s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}
.hero .container { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 6rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--signal-zest);
  background: var(--signal-zest-subtle);
  border: 1px solid rgba(209, 244, 96, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--signal-zest); border-radius: 50%; animation: badgePulse 2s infinite; flex-shrink: 0; }
@keyframes badgePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 800px;
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--signal-zest), var(--signal-zest-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-green-dark);
  background: var(--signal-zest);
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 24px rgba(209, 244, 96, 0.25);
  touch-action: manipulation;
}
.btn-primary:hover { background: var(--signal-zest-bright); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(209, 244, 96, 0.35); }
.btn-secondary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-strong);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 1rem 2.25rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  touch-action: manipulation;
}
.btn-secondary:hover { border-color: var(--signal-zest); color: var(--signal-zest); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--signal-zest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* === SECTIONS === */
.section-dark {
  background: linear-gradient(175deg, var(--deep-green-dark) 0%, var(--deep-green) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-light {
  background: var(--white);
  position: relative;
}
.section-off {
  background: var(--off-white);
  position: relative;
}
.section-padding { padding: 7rem 0; }
.section-padding-lg { padding: 8rem 0; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--signal-zest);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-dark .section-title { color: var(--white); }
.section-light .section-title, .section-off .section-title { color: var(--text-dark); }
.section-light .section-label, .section-off .section-label { color: #166534; }
.section-desc {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
}
.section-dark .section-desc { color: var(--text-light); }
.section-light .section-desc, .section-off .section-desc { color: var(--text-muted); }
.section-header { margin-bottom: 4rem; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* === MODULES === */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.module-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signal-zest), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.module-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(209, 244, 96, 0.25);
  transform: translateY(-4px);
}
.module-card:hover::before { opacity: 1; }
.module-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--signal-zest-subtle);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.module-card p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
}
.module-count {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--signal-zest);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* === INTEGRATIONS === */
/* === INTEGRATIONS WHEEL (ellipse) === */
.integrations-wheel {
  position: relative;
  width: 900px;
  height: 520px;
  margin: 3rem auto 0;
}
.integrations-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 820px;
  height: 460px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(34, 59, 62, 0.12);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.wheel-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.wheel-lines line {
  stroke: var(--warm-gray);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.7;
}
.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--deep-green), var(--deep-green-dark));
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(34, 59, 62, 0.35), 0 2px 8px rgba(34, 59, 62, 0.2);
}
.wheel-center::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--signal-zest), transparent);
  z-index: -1;
  opacity: 0.5;
}
.wheel-center-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--signal-zest);
  text-align: center;
  line-height: 1.3;
}
.wheel-node {
  position: absolute;
  width: 110px; height: 90px;
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 5;
  cursor: default;
  transition: all 0.25s var(--ease-out-expo);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  /* positioned via inline top/left */
}
.wheel-node:hover {
  border-color: var(--signal-zest);
  box-shadow: 0 4px 20px rgba(209, 244, 96, 0.25);
  transform: scale(1.06);
}
.wheel-node-icon {
  font-size: 1.375rem;
  line-height: 1;
}
.wheel-node-name {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  padding: 0 6px;
}
.wheel-node-type {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--signal-zest);
  background: var(--deep-green);
  padding: 2px 6px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === COMPARISON CTA === */
.comparison-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--off-white);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.comparison-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.comparison-cta p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}
.comparison-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}
.comparison-cta .btn-outline:hover {
  background: var(--deep-green);
  color: var(--signal-zest);
}

/* === AI SECTION === */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.ai-card {
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.ai-card-dark {
  background: linear-gradient(145deg, var(--deep-green-mid), var(--deep-green-dark));
  border: 1px solid rgba(209, 244, 96, 0.12);
}
.ai-card-light {
  background: var(--white);
  border: 1px solid var(--warm-gray);
}
.ai-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.ai-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ai-card-dark h3 { color: var(--white); }
.ai-card-light h3 { color: var(--text-dark); }
.ai-card p { font-size: 1rem; font-weight: 400; line-height: 1.7; }
.ai-card-dark p { color: var(--text-light); }
.ai-card-light p { color: var(--text-muted); }
.ai-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--signal-zest);
  background: var(--signal-zest-subtle);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ai-card-light .ai-badge {
  color: #166534;
  background: rgba(22, 101, 52, 0.08);
  border: 1px solid rgba(22, 101, 52, 0.15);
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.price-card.featured {
  border-color: var(--signal-zest);
  background: linear-gradient(180deg, rgba(209, 244, 96, 0.04), var(--white));
  box-shadow: 0 8px 40px rgba(209, 244, 96, 0.1);
}
.price-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--deep-green-dark);
  background: var(--signal-zest);
  padding: 0.375rem 1.25rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--signal-zest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-light .price-tier { color: var(--deep-green); }
.price-card.featured .price-tier { color: var(--deep-green); }
.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.price-users {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-amount span { font-size: 1.125rem; font-weight: 500; color: var(--text-muted); }
.price-setup {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 0.625rem;
  line-height: 1.5;
}
.price-features li::before {
  content: '\2713';
  font-weight: 700;
  color: var(--deep-green);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-btn {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  padding: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  touch-action: manipulation;
  min-height: 48px;
}
.price-btn-outline {
  color: var(--deep-green);
  background: transparent;
  border: 1.5px solid var(--deep-green);
}
.price-btn-outline:hover { background: var(--deep-green); color: var(--white); }
.price-btn-filled {
  color: var(--deep-green-dark);
  background: var(--signal-zest);
  box-shadow: 0 4px 20px rgba(209, 244, 96, 0.3);
}
.price-btn-filled:hover { background: var(--signal-zest-bright); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(209, 244, 96, 0.4); }

/* === PRESETS === */
.presets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.preset-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}
.preset-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(209, 244, 96, 0.3);
  transform: translateY(-6px);
}
.preset-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.preset-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.preset-card p {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
}

/* === TRUST === */
.trust-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.trust-num {
  text-align: center;
  padding: 2rem;
}
.trust-num-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}
.trust-num-value span { color: var(--signal-zest); }
.section-light .trust-num-value span { color: var(--deep-green); }
.trust-num-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-logo:hover { opacity: 1; }
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  border-radius: 10px;
  font-size: 1.125rem;
}

/* === TARINA (STORY) === */
.story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.story-image {
  text-align: center;
}
.story-photo {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  margin-bottom: 1.5rem;
}
.story-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}
.story-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.story-logo {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}
.story-logo img {
  width: 100px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.story-logo img:hover {
  opacity: 1;
}

/* === TEAM SHOWCASE === */
.team-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-top: 2rem;
}
.team-showcase img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 420px;
}
.team-showcase-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === TEAM CTA BANNER === */
.team-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto 3rem;
  max-width: 1000px;
}
.team-cta-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: brightness(0.85);
}
.team-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(34,59,62,0.7) 100%);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem;
}
.team-cta-banner-text {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* === SECTION VECTOR ACCENT === */
.section-vector-accent {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  opacity: 0.12;
}
.section-vector-accent img {
  width: 80px;
  height: auto;
}
.story-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.story-text-columns {
  column-count: 2;
  column-gap: 2.5rem;
}
.story-highlight {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 16px;
}
.story-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-green);
  display: block;
}
.story-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.story-upcoming {
  margin-top: 2rem;
}
.story-upcoming-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.story-upcoming-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.story-upcoming-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--signal-zest-subtle);
  border-radius: 12px;
  border: 1px solid rgba(209, 244, 96, 0.2);
}
.story-upcoming-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.story-upcoming-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}
.story-upcoming-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 56px;
  touch-action: manipulation;
}
.faq-question:hover { color: var(--signal-zest); }
.faq-chevron {
  font-size: 1.25rem;
  color: var(--signal-zest);
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
  margin-left: 1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

/* === FINAL CTA === */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  background: linear-gradient(175deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 244, 96, 0.06), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.final-cta .section-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.final-cta .section-desc {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* === LEAD CAPTURE FORM === */
.lead-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6b82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(34, 59, 62, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bbca;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.cta-button {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--deep-green-dark);
  background: var(--signal-zest);
  border: none;
  padding: 1.0625rem 2.5rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 24px rgba(209, 244, 96, 0.3);
  width: 100%;
  justify-content: center;
  touch-action: manipulation;
}
.cta-button:hover:not(:disabled) {
  background: var(--signal-zest-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(209, 244, 96, 0.4);
}
.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
}
.success-state {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--warm-gray);
  box-shadow: 0 8px 40px rgba(34, 59, 62, 0.08);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--signal-zest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  color: var(--deep-green-dark);
  font-weight: 700;
}
.success-state h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}
.success-state p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.success-state .cta-button {
  text-decoration: none;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: 1;
  }
}

/* === FOOTER === */
.footer {
  background: var(--deep-green-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-text {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-light);
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--signal-zest); }

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .presets-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-numbers { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* --- Container & General --- */
  .container { padding: 0 1rem; }
  .section-padding { padding: 4.5rem 0; }
  .section-padding-lg { padding: 5rem 0; }

  /* --- Navigation: hide desktop links, show hamburger --- */
  .nav-links { display: none !important; }
  .nav-toggle { display: flex; }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-text-columns {
    column-count: 1;
  }
  .story-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .story-photo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 0;
  }
  .story-logo {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
  .story-logo img { width: 100px; }
  .story-highlight {
    flex-direction: column;
    gap: 1rem;
  }
  .team-showcase img { height: 200px; }
  .team-cta-banner img { height: 240px; }
  .team-cta-banner-text { font-size: 1rem; }
  .section-vector-accent { gap: 1rem; }
  .section-vector-accent img { width: 50px; }

  /* --- Hero --- */
  .hero .container { padding-top: 6.5rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 1.25rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.875rem; margin-bottom: 1.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .hero-stat-num { font-size: 2rem; }
  .hero-stat-label { font-size: 0.75rem; }

  .hero-glow { width: 300px; height: 300px; top: 5%; right: -15%; }
  .hero-glow-2 { width: 200px; height: 200px; }
  .hero-glow-3 { width: 150px; height: 150px; }

  /* --- Sections --- */
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .section-desc { font-size: 1rem; }

  /* --- Modules --- */
  .modules-grid { grid-template-columns: 1fr; gap: 1rem; }
  .module-card { padding: 1.5rem; }

  /* --- Integrations Wheel --- */
  .integrations-wheel {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }
  .integrations-wheel::before { display: none; }
  .wheel-lines { display: none; }
  .wheel-center {
    position: static;
    transform: none;
    width: 100%;
    height: 70px;
    border-radius: 20px;
    flex-direction: row;
    gap: 0.75rem;
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }
  .wheel-node {
    position: static;
    transform: none !important;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0.5rem 0.25rem;
  }
  .wheel-node:hover { transform: translateY(-2px) !important; }
  .wheel-node-name { font-size: 0.625rem; }
  .wheel-node-type { font-size: 0.5rem; }
  .comparison-cta { padding: 3rem 1.5rem; }
  .comparison-cta h2 { font-size: 1.5rem; }

  /* --- AI --- */
  .ai-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .ai-card { padding: 1.75rem; }
  .ai-card-icon { font-size: 2rem; margin-bottom: 1rem; }
  .ai-card h3 { font-size: 1.2rem; }

  /* --- Pricing --- */
  .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pricing-grid .price-card:last-child { grid-column: span 1; max-width: none; }
  .price-card { padding: 2rem 1.5rem; }
  .price-card.featured { order: -1; }
  .price-amount { font-size: 2.5rem; }

  /* --- Presets --- */
  .presets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .presets-grid .preset-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }
  .preset-card { padding: 1.5rem 1.25rem; }
  .preset-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .preset-card h3 { font-size: 0.9375rem; }
  .preset-card p { font-size: 0.75rem; }

  /* --- Trust --- */
  .trust-numbers { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-num { padding: 1.25rem; }
  .trust-num-value { font-size: 2.25rem; }
  .trust-logos { flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; font-size: 0.8125rem; }
  .trust-badges { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .trust-badge { font-size: 0.75rem; }

  /* --- FAQ --- */
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
    min-height: 56px;
  }
  .faq-answer p { font-size: 0.9375rem; }

  /* --- Final CTA --- */
  .final-cta { padding: 5rem 0; }
  .final-cta .section-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 1rem !important;
    padding: 1rem 1.5rem !important;
  }

  /* --- Footer --- */
  .footer .container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section-padding { padding: 3.5rem 0; }
  .section-padding-lg { padding: 4rem 0; }

  .hero h1 { font-size: 1.875rem; }
  .hero-sub { font-size: 0.975rem; line-height: 1.65; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.75rem; }

  .presets-grid { grid-template-columns: 1fr; }
  .presets-grid .preset-card:last-child { grid-column: span 1; max-width: none; }

  .module-card { padding: 1.25rem; }
  .module-card p { font-size: 0.875rem; }

  .price-card { padding: 1.5rem 1.25rem; }
  .price-amount { font-size: 2.25rem; }

  .trust-num-value { font-size: 2rem; }
  .trust-logos { gap: 0.75rem; }
  .trust-logo { font-size: 0.75rem; }

  .faq-question { font-size: 0.9375rem; }
}

/* ============================================================
   MOBILE STICKY CTA (pricing section)
   ============================================================ */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--white);
    border-top: 1px solid var(--warm-gray);
    padding: 0.875rem 1rem;
    padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta a {
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--deep-green-dark);
    background: var(--signal-zest);
    padding: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    touch-action: manipulation;
    min-height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
}
@media (min-width: 769px) {
  .mobile-sticky-cta { display: none; }
}

/* === SAFE AREA & TOUCH OPTIMIZATIONS === */
@supports (padding: env(safe-area-inset-top)) {
  .nav { padding-top: calc(1.25rem + env(safe-area-inset-top, 0px)); }
  .nav.scrolled { padding-top: calc(0.75rem + env(safe-area-inset-top, 0px)); }
  .footer { padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px)); }
}

/* Touch optimization for all interactive elements */
a, button { touch-action: manipulation; }

/* === WHY SWITCH SECTION === */
.why-switch-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.why-switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-switch-photo {
  position: sticky;
  top: 100px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.why-switch-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.why-switch-card {
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.why-switch-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signal-zest), var(--deep-green));
  opacity: 0;
  transition: opacity 0.4s;
}
.why-switch-card:hover {
  transform: translateY(-6px);
  border-color: var(--signal-zest);
  box-shadow: 0 16px 48px rgba(209, 244, 96, 0.1);
}
.why-switch-card:hover::after { opacity: 1; }
.why-switch-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.why-switch-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-switch-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.why-switch-solution {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--deep-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.why-switch-solution::before {
  content: '\2713';
  font-weight: 800;
  color: var(--signal-zest);
  background: var(--signal-zest-subtle);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem;
  flex-shrink: 0;
}

/* === COMPARISON TABLE === */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3rem;
  border-radius: 16px;
  border: 1px solid var(--warm-gray);
  background: var(--white);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
  min-width: 900px;
}
.comparison-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--warm-gray);
  background: var(--off-white);
}
.comparison-table thead th:first-child {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
}
.comparison-table thead th.highlight {
  color: var(--deep-green);
  background: rgba(209, 244, 96, 0.1);
  position: relative;
}
.comparison-table thead th.highlight::after {
  content: 'Suosituin';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--deep-green-dark);
  background: var(--signal-zest);
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.comparison-table tbody td {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}
.comparison-table tbody td.highlight {
  background: rgba(209, 244, 96, 0.04);
}
.comparison-table .check { color: var(--deep-green); font-weight: 700; font-size: 1.125rem; }
.comparison-table .cross { color: #ccc; font-size: 1rem; }
.comparison-table .partial { color: var(--text-muted); font-size: 0.8125rem; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .category-row td {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-green);
  background: var(--signal-zest-subtle);
  padding: 0.625rem 1.25rem;
  border-bottom: 2px solid rgba(209, 244, 96, 0.3);
}

/* === ROI CALCULATOR TEASER === */
.roi-teaser {
  background: linear-gradient(145deg, var(--deep-green), var(--deep-green-dark));
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.roi-teaser::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--signal-zest-glow) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.roi-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.roi-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.roi-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.roi-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
}
.roi-stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--signal-zest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.roi-stat-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* === TESTIMONIAL QUOTE === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--warm-gray);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201D';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--signal-zest);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem; right: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-role {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* === HERO TRUSTED BAR === */
.hero-trusted {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trusted-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.hero-trusted-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trusted-item {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.hero-trusted-item:hover { color: rgba(255,255,255,0.7); }

/* === RESPONSIVE FOR NEW SECTIONS === */
@media (max-width: 1024px) {
  .why-switch-layout { grid-template-columns: 1fr; gap: 2rem; }
  .why-switch-photo { position: static; max-width: 480px; margin: 0.5rem auto 0; border-radius: 16px; }
  .why-switch-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-teaser { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .why-switch-layout { grid-template-columns: 1fr; gap: 0; }
  .why-switch-photo { position: static; max-width: 100%; order: unset; border-radius: 0 0 20px 20px; overflow: hidden; margin-top: 2.5rem; }
  .why-switch-photo img { border-radius: 16px; display: block; }
  .why-switch-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-switch-card { padding: 1.75rem 1.5rem; }
  .roi-teaser { padding: 2.5rem 1.5rem; grid-template-columns: 1fr; }
  .roi-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .roi-stat-value { font-size: 1.75rem; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .testimonial-card { padding: 1.75rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 0.5rem 0.625rem; font-size: 0.75rem; }
  .hero-trusted-logos { gap: 1.5rem; }
  .hero-trusted-item { font-size: 0.75rem; }
  .trust-security-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .privacy-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .roi-stats-grid { grid-template-columns: 1fr; }
  .trust-security-grid { grid-template-columns: 1fr !important; }
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.25rem;
  margin-left: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.625rem;
  border-radius: 16px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--signal-zest);
  color: var(--deep-green-dark);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}
.mobile-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.25rem;
  margin-top: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.skip-link{position:absolute;left:-9999px;top:0;z-index:10000;background:#D1F460;color:#1a2e30;padding:.75rem 1.25rem;border-radius:0 0 8px 0;font-weight:700;text-decoration:none;font-family:Plus Jakarta Sans,sans-serif}
.skip-link:focus{left:0}

/* === ACCESSIBILITY === */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
*:focus-visible{outline:2px solid var(--signal-zest,#D1F460);outline-offset:2px;border-radius:2px}

/* === SEO H2 — hero subtitle, visible but subtle === */
.seo-h2 {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-align: center;
  max-width: 760px;
  margin: -1rem auto 2rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
@media (max-width: 768px) {
  .seo-h2 { font-size: 0.95rem; padding: 0 1rem; }
}