/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #2EC4B6;
  --teal-dark:   #22a99d;
  --teal-light:  #e6f9f7;
  --navy:        #1E3A5F;
  --navy-dark:   #0F172A;
  --navy-mid:    #1E3A5F;
  --text:        #0F172A;
  --text-muted:  #64748B;
  --bg:          #F8FAFC;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --shadow-sm:   0 1px 4px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.08);
  --shadow-md:   0 4px 12px rgba(15,23,42,.08), 0 16px 40px rgba(15,23,42,.12);
  --shadow-lg:   0 8px 24px rgba(15,23,42,.1),  0 32px 64px rgba(15,23,42,.15);
  --shadow-teal: 0 8px 32px rgba(46,196,182,.4);
  --radius:      20px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --font:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(.4, 0, .2, 1);
  --duration:    0.25s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(46,196,182,.3);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
}
.btn--teal:active { transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--icon { gap: 10px; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
  transition: box-shadow var(--duration) var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(15,23,42,.1); }

.navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.navbar__logo { flex-shrink: 0; display: flex; align-items: center; }
.navbar__logo img { height: 44px; width: auto; }

.navbar__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.navbar__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--duration);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.navbar__links a:hover { color: var(--text); }
.navbar__links a:hover::after { transform: scaleX(1); }

.navbar__cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 72px;
  background-image: url('hero-clean.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(46,196,182,0.68) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 1;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: heroFadeUp 0.9s 0.1s both;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
  animation: heroFadeUp 0.9s 0.2s both;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  animation: heroFadeUp 0.9s 0.3s both;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  animation: heroFadeUp 0.9s 0.4s both;
}

.pill {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--duration);
}
.pill:hover { background: rgba(255,255,255,0.22); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroFadeUp 0.9s 0.5s both;
}

.hero__scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}
.scroll-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════
   FORM SECTION
═══════════════════════════════════════ */
.form-section {
  background: var(--bg);
  padding: 80px 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
}

.form-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
  padding: 36px 40px;
  text-align: center;
}
.form-card__header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-card__header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.form-body { padding: 36px 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--duration), box-shadow var(--duration), background var(--duration);
}
.form-group textarea { border-radius: var(--radius-sm); resize: vertical; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46,196,182,.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0BAC9; }

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.93rem;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.25s var(--ease);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: background var(--duration), transform var(--duration);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--duration), color var(--duration);
}
.card-link:hover { gap: 8px; color: var(--teal-dark); }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  border-color: var(--teal);
  border-width: 2px;
  background: linear-gradient(180deg, #f0fdfb 0%, var(--white) 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(46,196,182,.4);
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-price strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
}
.pricing-list {
  margin-bottom: 28px;
  flex: 1;
}
.pricing-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pricing-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════
   MIKSI ME
═══════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--bg);
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__left .section-tag { margin-bottom: 16px; }
.why__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.why__left > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.why__stats {
  display: flex;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.why-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.why-item__check {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-top: 2px;
}
.why-item__check svg { width: 16px; height: 16px; }

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #16304f 60%, #0d2240 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,196,182,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   YHTEYSTIEDOT
═══════════════════════════════════════ */
.contact-info {
  padding: 80px 0;
  background: var(--white);
}
.contact-info__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-info__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.contact-info__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-info__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 14px;
}
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info__card a,
.contact-info__card span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}
.contact-info__card a:hover { color: var(--teal); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer__brand p {
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 16px 0;
  max-width: 260px;
}
.footer__logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--duration);
}
.footer__contact a:hover { color: var(--teal); }

.footer__nav h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--duration);
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATION BASE
═══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(15,23,42,0.4);
  z-index: 198;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .why__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar__links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(15,23,42,.12);
    padding: 0;
    gap: 0;
    z-index: 199;
    height: auto;
  }
  .navbar__links.open { display: flex; }
  .navbar__links a {
    display: block;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    width: 100%;
  }
  .navbar__links a:last-child { border-bottom: none; }
  .navbar__cta { display: none; }
  .hamburger { display: flex; }

  /* Prevent scroll when menu open */
  body.menu-open { overflow: hidden; }

  /* Pricing 1 col on mobile */
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-body, .form-card__header { padding: 28px 20px; }

  /* Hero */
  .hero__pills { flex-direction: column; gap: 8px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Why */
  .why__stats { gap: 20px; }
  .why__layout { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }

  /* Tax banner */
  .tax-banner { flex-direction: column; text-align: center; padding: 32px 20px; gap: 20px; }
  .tax-banner__list { justify-content: center; }

  /* Section padding */
  .services, .pricing, .why, .form-section, .contact-info, .cta-banner { padding: 64px 0; }

  /* Services 1 col */
  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .contact-info__grid { flex-direction: column; align-items: stretch; }
}

/* ═══════════════════════════════════════
   KOTITALOUSVÄHENNYS BANNERI
═══════════════════════════════════════ */
.tax-banner {
  margin-top: 52px;
  background: linear-gradient(135deg, #1E3A5F 0%, #163058 100%);
  border-radius: var(--radius);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.tax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(46,196,182,.15) 0%, transparent 60%);
  pointer-events: none;
}

.tax-banner__badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(46,196,182,.45);
  letter-spacing: -0.03em;
}

.tax-banner__content {
  flex: 1;
}
.tax-banner__content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.tax-banner__content p {
  color: rgba(255,255,255,.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 520px;
}
.tax-banner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.tax-banner__list span {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
}

.btn--white-solid {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 28px;
}
.btn--white-solid:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

@media (max-width: 768px) {
  .tax-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }
  .tax-banner__list { justify-content: center; }
  .tax-banner__content p { max-width: 100%; }
  .btn--white-solid { width: 100%; justify-content: center; }
}