/* ============ Reset & tokens ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0F172A;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; color: #0D3B21; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --navy: #0D3B21;
  --navy-2: #145A34;
  --accent: #22C55E;
  --accent-2: #16A34A;
  --ink: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --soft: #F1F5F9;
  --soft-2: #F8FAFC;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.06), 0 10px 20px -5px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 40px -12px rgba(10,38,71,0.18);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all .2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline:hover { background: var(--soft); border-color: var(--navy); }

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { color: var(--accent-2); }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ============ Topbar ============ */
.topbar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-link { display: inline-flex; align-items: center; gap: 6px; color: #CBD5E1; transition: color .2s; }
.topbar-link:hover { color: var(--accent); }
.topbar-right { display: flex; align-items: center; }

.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 999px;
  color: #CBD5E1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .2s;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: var(--accent); color: #fff; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 68px; width: auto; display: block; }
.logo-img-footer { height: 64px; filter: brightness(1.05); }
.logo-text { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.logo-text strong { color: var(--accent); font-weight: 800; }
.logo-mark { display: inline-flex; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--accent-2); }
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-phone { padding: 10px 14px; font-size: 14px; color: var(--navy); }
.btn-phone:hover { color: var(--accent-2); }

.menu-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .25s; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.12), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(10, 38, 71, 0.08), transparent 40%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--accent-2); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 18px 24px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; font-weight: 500; }

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 197, 94,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-title {
  font-size: 26px !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.02em;
}
.hero-card h3 { font-size: 20px; margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.hero-card-divider { height: 1px; background: var(--border); margin: 20px 0 16px; }
.hero-card-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.hero-card-contact a { color: var(--navy); transition: color .2s; }
.hero-card-contact a:hover { color: var(--accent-2); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 8px; }

/* ============ Stats ============ */
.stats {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-lbl { font-size: 14px; color: #CBD5E1; margin-top: 6px; }

/* ============ Sections ============ */
.section { padding: 100px 0; }
.section-alt { background: var(--soft-2); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  margin: 12px 0 16px;
}
.section-head p { font-size: 17px; color: var(--muted); }

/* ============ Services ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(34, 197, 94,0.12), rgba(34, 197, 94,0.04));
  color: var(--accent-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.service-cta {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s;
  display: inline-block;
}
.service-cta:hover { color: var(--navy); }

.service-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.service-card-cta h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.service-card-cta p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.service-card-cta:hover { transform: translateY(-4px); }

/* ============ Features ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ============ Process ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 22px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-dot {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(34, 197, 94,0.35);
  border: 4px solid var(--soft-2);
}
.section:not(.section-alt) .process-dot { border-color: #fff; }
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 14px; }

/* ============ Gallery ============ */
.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.gallery-tab {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px 8px 0 0;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.gallery-tab:hover { color: var(--navy); }
.gallery-tab.active {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
  background: rgba(34,197,94,0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid--hidden { display: none; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Placeholder kui pilti pole */
.gallery-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute; inset: 0;
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  background: var(--soft);
}
.gallery-item.img-missing img { display: none; }
.gallery-item.img-missing .gallery-placeholder { display: flex; }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(13,59,33,0.75), transparent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-item.img-missing .gallery-label {
  background: none;
  color: var(--muted);
  opacity: 1;
  font-size: 12px;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 32px; line-height: 1;
  cursor: pointer; opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

.gallery-cta {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tab { padding: 8px 16px; font-size: 14px; }
}

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band-inner {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 52px 20px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute; right: 22px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a { padding: 0 22px 22px; }
.faq-a p { color: var(--muted); font-size: 15px; }

.faq-cta {
  margin-top: 36px;
  text-align: center;
  padding: 28px;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.faq-cta p { margin-bottom: 16px; color: var(--muted); }

/* ============ Contact ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-head { text-align: left; margin: 0 0 28px; max-width: none; }
.contact-info h2 { margin: 12px 0 14px; text-align: left; font-size: clamp(26px, 3vw, 36px); }
.contact-info > p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }

.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(34, 197, 94,0.1);
  color: var(--accent-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-lbl { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-list a { color: var(--navy); transition: color .2s; }
.contact-list a:hover { color: var(--accent-2); }
.contact-list strong { font-weight: 600; font-size: 15.5px; }

.company-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; margin-bottom: 8px; }
.form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--soft-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.checkbox { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; font-size: 13.5px; color: var(--muted); }
.checkbox input { margin-top: 3px; accent-color: var(--accent); }

.form-note { margin-top: 12px; text-align: center; font-size: 13px; color: var(--muted); }
.form-error {
  display: none;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #B91C1C;
  font-size: 14px;
  font-weight: 500;
}
.form-success {
  padding: 36px;
  background: #ECFDF5; border: 1px solid #A7F3D0; border-radius: 20px;
  color: #065F46; font-weight: 600; font-size: 16px;
  align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.form-success:not([hidden]) { display: flex; }

/* ============ Footer ============ */
.footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #94A3B8; font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #94A3B8; font-size: 14.5px; margin-top: 8px; max-width: 280px; }
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text strong { color: var(--accent); }
.footer-contact li { color: #94A3B8; font-size: 14.5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
  color: #64748B;
}
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============ Floating CTAs ============ */
.float-cta {
  position: fixed; bottom: 24px; right: 90px; z-index: 40;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(34, 197, 94,0.45);
  transition: transform .2s;
}
.float-cta:hover { transform: translateY(-2px); }

.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  transition: transform .2s;
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ============ Päästeamet section ============ */
.section-paaste {
  background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
  color: #fff;
  padding: 70px 0;
}
.paaste-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
}
.paaste-badge {
  flex-shrink: 0;
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.paaste-content { flex: 1; }
.paaste-content h2 { color: #fff; font-size: clamp(22px, 2.5vw, 30px); margin: 12px 0 14px; }
.paaste-content p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.paaste-content strong { color: #fff; }
.paaste-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .paaste-wrap { flex-direction: column; gap: 24px; text-align: center; }
  .paaste-badge { margin: 0 auto; }
  .paaste-actions { justify-content: center; }
}

/* ============ Cookie bar ============ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  animation: slideUp .35s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; }
.cookie-inner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-ghost { color: rgba(255,255,255,0.7); }
.cookie-actions .btn-ghost:hover { color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 440px; }
  .service-grid, .feature-grid, .process { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process::before { display: none; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .topbar-email, .topbar-loc { display: none; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 10px; }

  .nav.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--soft); }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .service-grid, .feature-grid, .process { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .float-cta { bottom: 16px; right: 82px; padding: 12px 18px; font-size: 13px; }
  .float-whatsapp { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .cta-band-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .cta-band-actions { justify-content: center; }
  .topbar-left { gap: 12px; font-size: 12px; }
  .hero-cta .btn { width: 100%; }
}
