/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #0D7C5F;
  --green-dk: #096B51;
  --green-light: #D4F0E7;
  --green-bg: #F0FAF6;
  --warm-bg: #F7F8FD;
  --peach: #FF8F6B;
  --peach-lt: #FFF3EF;
  --text: #151221;
  --text-mid: #5A5E7A;
  --text-light: #8A8FA8;
  --white: #FFFFFF;
  --border: #E4E6F0;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-full: 999px;
  --shadow: 0 4px 24px rgba(0,0,0,.05);
  --shadow-hover: 0 20px 50px rgba(0,0,0,.1);
  --dark: #0a1a14;
  --dark-mid: #0D3D2E;
  --max-w: 1200px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px;
  font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

a { color: var(--green); text-decoration: none; transition: color .25s; }
a:hover { color: var(--green-dk); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h4 { font-size: 1.125rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 780px; margin: 0 auto; }

/* ── Scroll animations ────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(.92); } to { opacity:1; transform:scale(1); } }
.anim { opacity: 0; }
.anim.visible { animation-fill-mode: forwards; }
.anim-fade-up.visible { animation: fadeUp .7s var(--ease) forwards; }
.anim-scale.visible { animation: scaleIn .6s var(--ease) forwards; }
.d1 { animation-delay:.1s!important; } .d2 { animation-delay:.2s!important; }
.d3 { animation-delay:.3s!important; } .d4 { animation-delay:.4s!important; }
.d5 { animation-delay:.5s!important; } .d6 { animation-delay:.6s!important; }

/* ── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius-full); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all .3s var(--ease); border: 2px solid transparent;
  text-decoration: none; line-height: 1.5;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); box-shadow: 0 8px 30px rgba(13,124,95,.35); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-white-glass:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); color: #fff; }
.btn-white { background: var(--white); color: var(--text); border-color: var(--border); }
.btn-white:hover { border-color: var(--text); }
.btn-sm { padding: 8px 22px; font-size: 14px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ── Header ────────────────────────── */
.header-top {
  background: var(--dark); color: rgba(255,255,255,.6); font-size: 13px; padding: 8px 0;
}
.header-top .container { display: flex; gap: 20px; justify-content: flex-end; align-items: center; }
.header-contact-link { color: rgba(255,255,255,.6); font-weight: 500; transition: color .2s; }
.header-contact-link:hover { color: #fff; }

.header-nav {
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(228,230,240,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo-img { height: 56px; }

.nav-menu { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav-mobile-cta { display: none; }
.nav-accordion { display: none; }
.nav-links > li > a {
  padding: 8px 18px; border-radius: var(--radius-full); font-size: 15px; font-weight: 500;
  color: var(--text-mid); transition: all .2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--text); background: var(--warm-bg); }
.nav-cta.btn-primary { color: #fff !important; font-size: 14px; padding: 10px 24px; }
.nav-cta.btn-primary:hover { color: #fff !important; }

/* mega menu */
.has-mega { position: relative; }
.mega-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.08); padding: 20px 24px; min-width: 560px; z-index: 200;
  columns: 2; column-gap: 12px;
}
.has-mega:hover .mega-menu { display: block; }
.mega-menu a {
  display: block; padding: 8px 12px; border-radius: 8px; font-size: 14px;
  color: var(--text-mid); break-inside: avoid; font-weight: 500; transition: all .2s;
}
.mega-menu a:hover { background: var(--green-bg); color: var(--green); }
.mega-divider { border-top: 1px solid var(--border); margin: 8px 0; break-inside: avoid; }
.mega-heading { font-weight: 700 !important; color: var(--text) !important; font-size: 13px !important; letter-spacing: .05em; text-transform: uppercase; pointer-events: auto; }
.mega-heading-sm { font-weight: 600 !important; color: var(--green) !important; font-size: 13px !important; margin-top: 4px; }
.mega-sub { padding-left: 24px !important; font-size: 13px !important; }

/* nav dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.08); padding: 8px; min-width: 200px; z-index: 200;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 8px; font-size: 14px;
  color: var(--text-mid); font-weight: 500; transition: all .2s;
}
.dropdown-menu a:hover { background: var(--green-bg); color: var(--green); }

/* mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ── Hero ──────────────────────────── */
.hero {
  min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #0D2B20 40%, var(--dark-mid) 100%);
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero/hero-bg.jpg') center/cover;
  opacity: .15; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,26,20,.95) 0%, rgba(13,43,32,.7) 50%, rgba(13,61,46,.4) 100%);
}
.hero-decor { position: absolute; right: -60px; bottom: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(212,240,231,.08); }
.hero-decor-2 { position: absolute; right: 40px; bottom: 40px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(212,240,231,.05); }
.hero-center { position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,240,231,.12); border: 1px solid rgba(212,240,231,.2);
  color: var(--green-light); padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-chip-check {
  width: 20px; height: 20px; background: var(--green); color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.hero h1 { color: #fff; margin-bottom: 20px; font-weight: 800; font-size: clamp(2rem, 5vw, 3.25rem); }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero .highlight { position: relative; display: inline-block; }
.hero .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: -4px; right: -4px; height: 12px;
  background: rgba(212,240,231,.2); z-index: -1; border-radius: 4px;
}
.hero-sub { font-size: 19px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tags { margin-top: 48px; }
.hero-tag-label { display: block; font-size: 13px; color: rgba(255,255,255,.35); font-weight: 500; margin-bottom: 12px; }
.hero-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag {
  padding: 8px 18px; border-radius: var(--radius-full); font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  transition: all .25s; backdrop-filter: blur(4px);
}
.hero-tag:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }

/* ── Proof bar ─────────────────────── */
.proof { padding: 48px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.proof-item { padding: 16px; }
.proof-num { font-size: 36px; font-weight: 800; color: var(--green); margin-bottom: 4px; letter-spacing: -0.03em; }
.proof-text { font-size: 14px; color: var(--text-mid); }
.proof-check { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── Page Hero ─────────────────────── */
.page-hero { background: var(--warm-bg); padding: 56px 0 48px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.page-hero-label { display: inline-block; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.page-hero-sub { color: var(--text-mid); margin-top: 8px; font-size: 16px; }
.page-hero time { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }

/* ── Sections ──────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--warm-bg); }
.section-green-bg { background: var(--green-bg); }
.section-label { display: block; text-align: center; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 16px; text-align: center; font-weight: 800; letter-spacing: -0.03em; }
.section-subtitle { text-align: center; color: var(--text-mid); font-size: 17px; margin-bottom: 56px; max-width: 520px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── Content typography ────────────── */
.content-narrow h2 { font-size: 1.5rem; margin: 36px 0 14px; font-weight: 700; }
.content-narrow h3 { font-size: 1.15rem; margin: 28px 0 10px; font-weight: 600; }
.content-narrow p { margin-bottom: 16px; color: var(--text); line-height: 1.7; }
.content-narrow ul, .content-narrow ol { margin: 0 0 16px 24px; }
.content-narrow li { margin-bottom: 8px; line-height: 1.7; }
.content-narrow hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.content-narrow strong { color: var(--text); font-weight: 700; }
.content-narrow a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(13,124,95,.3); text-underline-offset: 3px; }
.content-narrow a:hover { text-decoration-color: var(--green); }

/* Tables */
.content-narrow table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; border-radius: var(--radius); overflow: hidden; }
.content-narrow th, .content-narrow td { padding: 14px 18px; text-align: left; }
.content-narrow th { background: var(--green); color: #fff; font-weight: 600; font-size: 14px; border: none; }
.content-narrow td { border-bottom: 1px solid var(--border); }
.content-narrow tr:last-child td { border-bottom: none; }
.content-narrow tbody tr:nth-child(even) { background: var(--warm-bg); }
.content-narrow tbody tr:hover { background: var(--green-bg); }

/* ── About Hero ───────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0D2B20 40%, var(--dark-mid) 100%);
  padding: 100px 0 0; position: relative; overflow: hidden;
}
.about-hero-decor { position: absolute; right: -60px; top: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(212,240,231,.06); }
.about-hero-decor-2 { position: absolute; right: 40px; top: 40px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(212,240,231,.04); }
.about-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.about-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.about-hero h1 em { font-style: normal; color: var(--green-light); }
.about-hero-sub { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.7; }
.about-stats {
  margin-top: 56px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1;
}
.about-stat { text-align: center; }
.about-stat-num { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; white-space: nowrap; }
.about-stat-text { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ── Mission ──────────────────────── */
.mission { padding: 100px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mission-label {
  display: inline-block; color: var(--green); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.mission h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }
.mission p { color: var(--text-mid); font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.mission-motto {
  margin-top: 24px; padding: 20px 24px; background: var(--green-bg);
  border-left: 3px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px; font-weight: 600; color: var(--green-dk);
}
.mission-img { border-radius: var(--radius); width: 100%; height: 360px; object-fit: cover; }

/* ── Values ───────────────────────── */
.values { padding: 100px 0; background: var(--warm-bg); }
.values-header { text-align: center; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  background: var(--green-bg); font-size: 24px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── Service List Hero ─────────────── */
.svc-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0D2B20 40%, var(--dark-mid) 100%);
  padding: 100px 0 0; position: relative; overflow: hidden;
}
.svc-hero-decor { position: absolute; right: -60px; top: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(212,240,231,.06); }
.svc-hero-decor-2 { position: absolute; right: 40px; top: 40px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(212,240,231,.04); }
.svc-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.svc-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.svc-hero h1 em { font-style: normal; color: var(--green-light); }
.svc-hero-sub { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.7; }
.svc-hero-stats {
  margin-top: 56px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 1;
}
.svc-hero-stat { text-align: center; }
.svc-hero-stat-num { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; white-space: nowrap; }
.svc-hero-stat-text { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 4px; }
.svc-filters { padding: 40px 0; border-bottom: 1px solid var(--border); }
.svc-grid-section { padding: 64px 0; }
.svc-card-footer {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
}
.svc-card-link { font-size: 14px; font-weight: 600; color: var(--green); transition: letter-spacing .3s; white-space: nowrap; }
a.service-list-card:hover .svc-card-link { letter-spacing: .5px; }
.svc-card-price { font-size: 14px; font-weight: 600; color: var(--text-mid); text-align: right; }

/* ── Service Detail Hero ──────────── */
.sd-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0D2B20 40%, var(--dark-mid) 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.sd-hero-decor { position: absolute; right: -60px; top: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(212,240,231,.06); }
.sd-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.sd-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,240,231,.1); border: 1px solid rgba(212,240,231,.15);
  color: var(--green-light); padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.sd-hero h1 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.sd-hero-sub { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 32px; }
.sd-hero-hours { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 24px; font-weight: 500; }
.sd-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── When Section ─────────────────── */
.when-section { padding: 100px 0; background: var(--warm-bg); }
.when-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; }
.when-card {
  padding: 20px 24px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--border); font-size: 15px; font-weight: 600; color: var(--text);
  transition: all .3s var(--ease); display: flex; align-items: center; gap: 12px;
}
.when-card:hover { border-color: var(--green); background: var(--green-bg); transform: translateY(-2px); }
.when-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── Price Banner ─────────────────── */
.price-banner {
  margin: 48px 0; padding: 32px 40px; border-radius: var(--radius);
  background: var(--white); border: 2px solid var(--green-light);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.price-left h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.price-left p { font-size: 14px; color: var(--text-mid); margin: 0; }
.price-right { text-align: right; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.price-unit { font-size: 14px; color: var(--text-mid); }

/* ── Pricing Page ─────────────────── */
.pricing-intro { padding: 80px 0; border-bottom: 1px solid var(--border); }
.pricing-intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-intro-card {
  text-align: center; padding: 32px 24px;
}
.pricing-intro-icon { font-size: 24px; margin-bottom: 16px; width: 56px; height: 56px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--green-bg); }
.pricing-intro-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pricing-intro-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

.pricing-group { padding: 80px 0; }
.pricing-group:nth-child(even) { background: var(--warm-bg); }
.pricing-group-header { margin-bottom: 32px; }
.pricing-group-header h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 800; letter-spacing: -0.02em; }

.pricing-table { max-width: 780px; }
.pricing-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-name { font-size: 15px; font-weight: 500; color: var(--text); flex: 1; }
.pricing-row-price { font-size: 16px; font-weight: 700; color: var(--green); white-space: nowrap; }

/* ── Service About + Process ──────── */
.svc-about { padding: 100px 0; }
.svc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 960px; margin: 0 auto; }
.svc-about-label { display: inline-block; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.svc-about h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px; }
.svc-about p { color: var(--text-mid); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.process-list { list-style: none; counter-reset: step; }
.process-list li {
  counter-increment: step; padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 16px; line-height: 1.5;
}
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  content: counter(step); width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-bg); color: var(--green); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Price Cards ──────────────────── */
.price-section { padding: 80px 0; background: var(--warm-bg); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 700px; margin: 0 auto; }
.price-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; transition: all .3s var(--ease);
}
.price-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.price-card-label { font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; }
.price-card-amount { font-size: 2.25rem; font-weight: 800; color: var(--green); margin-bottom: 4px; }
.price-card-unit { font-size: 14px; color: var(--text-light); }
.price-card-note { font-size: 13px; color: var(--text-light); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── Info Hero ─────────────────────── */
.info-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0D2B20 40%, var(--dark-mid) 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.info-hero-decor { position: absolute; right: -60px; top: -60px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(212,240,231,.06); }
.info-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.info-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.info-hero h1 em { font-style: normal; color: var(--green-light); }
.info-hero-sub { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── Pathway Cards ────────────────── */
.pathways { padding: 100px 0; }
.pathway-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.pathway-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden; transition: all .4s var(--ease);
}
.pathway-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.pathway-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); border-color: transparent; }
.pathway-card:hover::before { transform: scaleX(1); }
.pathway-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pathway-icon {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.pathway-icon.green { background: var(--green-bg); }
.pathway-icon.peach { background: #FFF3EF; }
.pathway-card h3 { font-size: 1.05rem; font-weight: 700; }
.pathway-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; margin-left: auto;
}
.badge-free { background: var(--green-bg); color: var(--green); }
.badge-paid { background: #FFF3EF; color: #FF8F6B; }
.pathway-body { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.pathway-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green); transition: gap .2s;
}
.pathway-link:hover { gap: 10px; }

/* ── Location ─────────────────────── */
.location { padding: 100px 0; background: var(--warm-bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-label { display: inline-block; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.location h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.location-cards { display: flex; flex-direction: column; gap: 16px; }
.loc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; transition: all .3s var(--ease);
}
.loc-card:first-child { border-color: var(--green); border-width: 2px; }
.loc-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.loc-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px; background: var(--green-bg);
}
.loc-card:first-child .loc-icon { background: var(--green); }
.loc-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.loc-info p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.loc-tag {
  display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px;
  font-weight: 600; background: var(--green-bg); color: var(--green); margin-top: 6px;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.map-wrap iframe { display: block; }
.transport { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.transport-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius); font-size: 14px;
  background: var(--white); border: 1px solid var(--border); color: var(--text-mid);
}
.transport-pill span { font-size: 18px; }

/* ── Rules ─────────────────────────── */
.rules { padding: 100px 0; }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rule-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: all .4s var(--ease);
}
.rule-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); border-color: transparent; }
.rule-icon {
  width: 56px; height: 56px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.rule-icon.red { background: #FEE2E2; }
.rule-icon.amber { background: #FEF3C7; }
.rule-icon.blue { background: #DBEAFE; }
.rule-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.rule-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.rule-highlight { font-weight: 800; color: var(--text); font-size: 1.5rem; display: block; margin: 8px 0; }

/* ── GDPR & Aids ──────────────────── */
.gdpr-aids { padding: 100px 0; background: var(--warm-bg); }
.gdpr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.gdpr-aids h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.gdpr-aids p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.rights-list { list-style: none; margin: 16px 0 0; }
.rights-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-mid); display: flex; gap: 10px; align-items: center;
}
.rights-list li:last-child { border-bottom: none; }
.rights-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.aid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.aid-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
}
.aid-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.aid-pct { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.aid-label { font-size: 12px; color: var(--text-light); }

/* ── Team Modal ───────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,18,16,.6);
  backdrop-filter: blur(6px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: 20px;
  max-width: 520px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  transform: translateY(24px) scale(.96);
  transition: transform .4s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.15); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all .2s; font-size: 18px; color: #fff; font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,.3); }
.modal-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 40px 32px 32px; border-radius: 20px 20px 0 0;
  display: flex; align-items: center; gap: 24px;
}
.modal-photo {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(212,240,231,.3); flex-shrink: 0;
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-info h2 { color: #fff; font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.modal-info p { color: var(--green-light); font-size: 14px; font-weight: 600; }
.modal-body { padding: 28px 32px 32px; }
.modal-bio { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.modal-section-label {
  font-size: 12px; font-weight: 700; color: var(--text-light);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px;
}
.modal-services { margin-bottom: 24px; }
.modal-service-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 8px;
  transition: all .25s var(--ease); text-decoration: none; color: var(--text);
}
.modal-service-link:hover {
  border-color: var(--green); background: var(--green-bg); transform: translateX(4px); color: var(--text);
}
.modal-service-text { flex: 1; }
.modal-service-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 1px; }
.modal-service-text p { font-size: 13px; color: var(--text-mid); }
.modal-service-arrow { color: var(--text-light); transition: all .2s; font-size: 14px; }
.modal-service-link:hover .modal-service-arrow { color: var(--green); transform: translateX(3px); }
.modal-cta {
  display: flex; gap: 10px; padding-top: 8px; border-top: 1px solid var(--border);
}
.modal-cta .btn { flex: 1; justify-content: center; padding: 12px 24px; font-size: 14px; }
.modal-services-wrap:empty + .modal-cta { border-top: none; }

/* ── Cert Banner ──────────────────── */
.cert-banner {
  padding: 64px 0; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cert-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,240,231,.08), transparent 70%);
}
.cert-inner { position: relative; z-index: 1; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,240,231,.1); border: 1px solid rgba(212,240,231,.15);
  padding: 10px 24px; border-radius: 999px; margin-bottom: 20px;
  font-size: 15px; font-weight: 700; color: var(--green-light);
}
.cert-banner h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; margin-bottom: 12px; }
.cert-banner p { font-size: 16px; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto; }

/* ── Specialists grid ─────────────── */
.specialists-section { padding: 80px 0; background: var(--warm-bg); }
.specialists-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px; max-width: 960px; margin: 0 auto;
}
.specialist-card { width: 200px; }
.specialist-card { text-align: center; }
.specialist-photo {
  width: 160px; height: 160px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden; border: 3px solid var(--green-light);
}
.specialist-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  object-fit: contain !important; padding: 25%;
  background: var(--green-bg);
}
.specialist-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.specialist-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── Team grid ────────────────────── */
.team-section { padding: 100px 0; }
.team-header { text-align: center; margin-bottom: 56px; }
.team-subtitle { color: var(--text-mid); font-size: 17px; max-width: 520px; margin: 0 auto; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px; max-width: 1000px; margin: 0 auto;
}
.team-card { text-align: center; cursor: pointer; }
.team-photo {
  width: 110px; height: 110px; margin: 0 auto 12px;
  border-radius: 50%; overflow: hidden; position: relative;
  border: 2px solid var(--border); transition: border-color .3s var(--ease);
}
.team-card:hover .team-photo {
  border-color: var(--green);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 13px; color: var(--green); font-weight: 500; }

/* ── Photo Gallery ────────────────── */
.gallery { margin: 40px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm);
  transition: all .3s var(--ease); cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* ── Back link ─────────────────────── */
.back-link { text-align: center; padding: 24px 0 64px; }

/* ── Filter bar ────────────────────── */
.filter-bar { margin-bottom: 32px; text-align: center; }
.filter-label { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.filter-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.filter-tag {
  padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  background: var(--white); border: 1px solid var(--border); color: var(--text-mid);
  cursor: pointer; transition: all .25s; font-family: inherit;
}
.filter-tag:hover { border-color: var(--green); color: var(--green); }
.filter-tag.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Services grid ─────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
a.service-preview-card, a.service-list-card {
  display: flex; flex-direction: column; padding: 32px; background: #ffffff;
  border: 1px solid #E4E6F0; border-radius: 14px;
  transition: all .4s var(--ease); color: #151221; text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.04); position: relative; overflow: hidden;
}
a.service-preview-card::before, a.service-list-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
a.service-preview-card:hover, a.service-list-card:hover {
  border-color: transparent; box-shadow: 0 20px 50px rgba(0,0,0,.1); transform: translateY(-6px); color: #151221;
}
a.service-preview-card:hover::before, a.service-list-card:hover::before { transform: scaleX(1); }
a.service-preview-card h3, a.service-list-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #151221; font-weight: 700; }
a.service-preview-card p, a.service-list-card p { font-size: 14px; color: #5A5E7A; line-height: 1.7; flex: 1; }
a.service-preview-card::after {
  content: 'Loe lähemalt →'; display: block; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: #0D7C5F;
  transition: letter-spacing .3s;
}
a.service-preview-card:hover::after { letter-spacing: .5px; }

/* ── Steps ─────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), var(--green), var(--green-light), transparent);
}
.step-card { text-align: center; position: relative; z-index: 1; background: transparent; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: 24px; font-size: 28px;
  background: var(--white); border: 2px solid var(--green-light); box-shadow: 0 4px 20px rgba(13,124,95,.1);
  transition: all .3s var(--ease);
}
.step-card:hover .step-circle { background: var(--green-bg); border-color: var(--green); transform: scale(1.08); box-shadow: 0 8px 30px rgba(13,124,95,.2); }
.step-icon { font-size: 32px; margin-bottom: 8px; display: none; }
.step-num { display: none; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; }
.step-card p { font-size: 15px; color: var(--text-mid); max-width: 280px; margin: 0 auto; line-height: 1.7; }

/* ── Stats Banner ──────────────────── */
.stats-banner {
  padding: 80px 0; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,240,231,.08), transparent 70%);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative; }
.stat-big { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1; margin-bottom: 4px; letter-spacing: -0.03em; }
.stat-text { font-size: 15px; opacity: .55; }

/* ── CTA Box ───────────────────────── */
.cta-section { padding: 100px 0; }
.cta-box {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 24px; padding: 80px 48px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,124,95,.25), transparent 70%);
}
.cta-box::after {
  content: ''; position: absolute; bottom: -20%; left: -5%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,143,107,.12), transparent 70%);
}
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; position: relative; color: #fff; letter-spacing: -0.03em; }
.cta-box p { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-box .btn { position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-primary { background: var(--green); border-color: var(--green); }
.cta-box .btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); }
.cta-box .btn-white-glass { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

/* ── Posts grid ────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
a.post-card {
  display: flex; flex-direction: column; background: #ffffff;
  border: 1px solid #E4E6F0; border-radius: 14px;
  overflow: hidden; transition: all .4s var(--ease); color: #151221; text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
a.post-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.1); transform: translateY(-6px); color: #151221; border-color: transparent; }
.post-card-img { height: 200px; background-size: cover; background-position: center; background-color: var(--warm-bg); }
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-body time { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.post-card-body h3 { font-size: 1.1rem; margin: 10px 0 12px; font-weight: 700; line-height: 1.4; }
.post-card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; }

/* ── Contact Form ──────────────────── */
.contact-form { margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--white);
  transition: all .25s; line-height: 1.6;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,124,95,.1);
}
.form-group textarea { resize: vertical; }

/* ── Map ───────────────────────────── */
.map-container { max-width: 960px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.map-container iframe { border-radius: var(--radius); }

/* ── Footer ────────────────────────── */
.site-footer { background: #0a1210; color: rgba(255,255,255,.45); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); opacity: .9; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 20px; font-weight: 700; }
.footer-col p { font-size: 14px; line-height: 1.9; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 14px; }
.footer-cert { color: var(--green-light); font-weight: 700; margin-top: 16px; font-size: 14px; }
.footer-more { display: none; }
.footer-hours { color: rgba(255,255,255,.3); font-size: 13px; margin-top: 8px; }
.footer-social { margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-social a:hover { color: var(--green-light); }

.footer-bottom { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--green-light); }

/* ── Cookie Banner ─────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: #0a1210;
  color: rgba(255,255,255,.8); padding: 18px; z-index: 9999; display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { font-size: 14px; flex: 1; }
.cookie-actions { display: flex; gap: 12px; align-items: center; }
.cookie-link { font-size: 13px; color: rgba(255,255,255,.4); }

/* ── Responsive ────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .header-top .container { justify-content: center; font-size: 12px; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .nav-menu.open { display: flex; }
  .logo-img { height: 42px; }

  /* Mobile CTA at top */
  .nav-mobile-cta { display: block; padding: 16px 0 12px; }
  .nav-cta-full {
    display: block !important; width: 100% !important; text-align: center;
    padding: 14px 24px !important; font-size: 16px; border-radius: 14px !important;
    background: var(--green); color: #fff !important; font-weight: 600;
    text-decoration: none; border: none;
  }
  .nav-desktop-cta { display: none !important; }

  /* Primary links - left aligned, full width, with arrows */
  .nav-links { flex-direction: column; gap: 0; padding: 8px 0; align-items: stretch; width: 100%; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 14px 16px !important; font-size: 16px; font-weight: 600; border-radius: 12px;
    color: var(--text); width: 100%;
  }
  .nav-links > li > a::after { content: '→'; color: var(--text-light); font-size: 14px; margin-left: auto; }
  .nav-links > li > a:hover { background: var(--warm-bg); }

  /* Hide desktop mega-menu teenused from nav-links on mobile */
  .nav-links .nav-teenused { display: none !important; }
  /* Hide arrow on dropdown parent since it has its own expand behavior */
  .nav-links .has-dropdown > a::after { content: '▾'; }

  /* Accordion for teenused */
  .nav-accordion {
    display: block; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px;
  }
  .nav-accordion-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 16px; border-radius: 12px; font-size: 16px; font-weight: 600;
    color: var(--text); background: none; border: none; cursor: pointer; font-family: inherit;
    text-align: left;
  }
  .nav-accordion-toggle:hover { background: var(--warm-bg); }
  .nav-chevron {
    width: 28px; height: 28px; border-radius: 50%; background: var(--green-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--green); transition: transform .3s var(--ease); flex-shrink: 0;
  }
  .nav-accordion.open .nav-chevron { transform: rotate(180deg); }
  .nav-accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
  .nav-accordion.open .nav-accordion-body { max-height: 3000px; overflow-y: auto; }
  .nav-accordion-body a {
    display: block; padding: 10px 16px 10px 28px; font-size: 14px; font-weight: 500;
    color: var(--text-mid); border-radius: 8px; text-align: left;
  }
  .nav-accordion-body a:hover { background: var(--green-bg); color: var(--green); }
  .nav-accordion-body .mega-heading {
    padding: 12px 16px 4px 16px !important; margin-top: 8px;
    font-size: 11px !important; color: var(--green) !important; font-weight: 700 !important;
    letter-spacing: .08em; text-transform: uppercase;
  }
  .nav-accordion-body .mega-heading-sm {
    padding: 8px 16px 4px 16px !important;
    font-size: 11px !important; color: var(--green) !important;
  }
  .nav-accordion-body .mega-sub { padding-left: 36px !important; font-size: 13px !important; }
  .nav-accordion-body .mega-divider { margin: 8px 16px; }
  .nav-accordion-footer { padding: 16px 16px 8px; }
  .nav-accordion-footer .btn { width: 100%; justify-content: center; text-align: center; }

  /* Meist dropdown on mobile */
  .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: auto; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }

  .hero { min-height: 100vh; min-height: 100svh; padding: 100px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-tags { margin-top: 32px; }
  .hero-tag { padding: 6px 14px; font-size: 13px; }
  .hero-decor, .hero-decor-2 { display: none; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proof { padding: 32px 0; }
  .proof-num { font-size: 26px; white-space: nowrap; }

  .section { padding: 64px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 15px; margin-bottom: 36px; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-big { font-size: 1.75rem; white-space: nowrap; }
  .stats-banner { padding: 48px 0; }
  .posts-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 24px; border-radius: var(--radius); }
  .cta-box h2 { font-size: 1.4rem; }
  .cta-box .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-section { padding: 40px 0; }

  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links li:nth-child(n+9) { display: none; }
  .footer-links .footer-more { display: list-item; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .map-container iframe { height: 280px; }

  .content-narrow table { font-size: 14px; display: block; overflow-x: auto; }
  .content-narrow th, .content-narrow td { padding: 10px 12px; }

  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }

  .filter-tags { gap: 6px; }
  .filter-tag { padding: 6px 14px; font-size: 13px; }

  .contact-form .btn { width: 100%; }

  .specialists-section { padding: 48px 0; }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .specialist-photo { width: 120px; height: 120px; }

  .about-hero { padding: 72px 0 0; }
  .about-hero h1 { font-size: 1.75rem; }
  .about-hero-sub { font-size: 16px; }
  .about-hero-decor, .about-hero-decor-2 { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; padding: 32px 0; }
  .about-stat-num { font-size: 1.5rem; }

  .mission { padding: 64px 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-img { height: 240px; }

  .values { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .value-card { padding: 24px 16px; }
  .value-icon { width: 48px; height: 48px; font-size: 20px; }

  .team-section { padding: 64px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-photo { width: 90px; height: 90px; }

  .cert-banner { padding: 48px 0; }

  .pricing-intro { padding: 48px 0; }
  .pricing-intro-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-intro-card { padding: 24px 16px; }
  .pricing-group { padding: 48px 0; }
  .pricing-row { gap: 12px; }
  .pricing-row-name { font-size: 14px; }
  .pricing-row-price { font-size: 15px; }

  .svc-hero { padding: 72px 0 0; }
  .svc-hero h1 { font-size: 1.75rem; }
  .svc-hero-decor, .svc-hero-decor-2 { display: none; }
  .svc-hero-stats { gap: 16px; margin-top: 40px; padding: 32px 0; }
  .svc-hero-stat-num { font-size: 1.5rem; }
  .svc-filters { padding: 28px 0; }
  .svc-grid-section { padding: 40px 0; }

  .sd-hero { padding: 72px 0 56px; }
  .sd-hero h1 { font-size: 1.75rem; }
  .sd-hero-sub { font-size: 16px; }
  .sd-hero-decor { display: none; }
  .sd-hero-actions { flex-direction: column; align-items: center; }
  .sd-hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .when-section { padding: 64px 0; }
  .when-grid { grid-template-columns: 1fr; }
  .svc-about { padding: 64px 0; }
  .svc-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-section { padding: 48px 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-banner { flex-direction: column; text-align: center; padding: 24px; }
  .price-right { text-align: center; }

  .info-hero { padding: 72px 0 56px; }
  .info-hero h1 { font-size: 1.75rem; }
  .info-hero-decor { display: none; }
  .pathways { padding: 64px 0; }
  .pathway-grid { grid-template-columns: 1fr; }
  .location { padding: 64px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-wrap iframe { height: 280px !important; }
  .rules { padding: 64px 0; }
  .rules-grid { grid-template-columns: 1fr; }
  .gdpr-aids { padding: 64px 0; }
  .gdpr-grid { grid-template-columns: 1fr; gap: 32px; }

  .modal-overlay { padding: 16px; align-items: flex-end; }
  .modal { border-radius: 20px 20px 8px 8px; max-height: 85vh; }
  .modal-header { padding: 32px 20px 24px; gap: 16px; }
  .modal-photo { width: 80px; height: 80px; }
  .modal-info h2 { font-size: 1.15rem; }
  .modal-body { padding: 20px; }
  .modal-cta { flex-direction: column; }
  .modal-cta .btn { width: 100%; }
}
