@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Language switcher ── */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px; padding: 4px;
  transition: var(--tr);
}
.header.scrolled .lang-switcher {
  background: var(--gpale); border-color: var(--border);
}
.lang-flag-btn {
  font-size: 20px; line-height: 1;
  background: none; border: none; cursor: pointer;
  border-radius: 6px; padding: 2px 4px;
  opacity: 0.35; transition: var(--tr);
}
.lang-flag-btn.active { opacity: 1; background: rgba(255,255,255,0.25); }
.lang-flag-btn:hover { opacity: 0.8; }
.header.scrolled .lang-flag-btn.active { background: rgba(0,0,0,0.07); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g900: #0D2416;
  --g800: #1A3828;
  --g700: #26543B;
  --g600: #2D6A4F;
  --g500: #40916C;
  --g400: #52B788;
  --g300: #74C69D;
  --g200: #95D5B2;
  --g100: #B7E4C7;
  --g50:  #D8F3DC;
  --gpale: #EAF6EF;
  --bg:   #FFFFFF;
  --bgl:  #F7FAF8;
  --bgc:  #F2F0EC;
  --t900: #0D0D0D;
  --t700: #2A2A2A;
  --t500: #5A5A5A;
  --t300: #9A9A9A;
  --border: #E3EBE6;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-full: 9999px;
  --sh-sm: 0 2px 8px rgba(0,0,0,.05);
  --sh-md: 0 8px 32px rgba(0,0,0,.08);
  --sh-lg: 0 20px 60px rgba(0,0,0,.10);
  --ease: cubic-bezier(.4,0,.2,1);
  --tr: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--t700); background: var(--bg); line-height: 1.6; overflow-x: hidden; opacity: 1; transition: opacity 0.15s ease; }
body.fade-out { opacity: 0; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-tag { justify-content: center; }

/* ── Reveal animations ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal   { transform: translateY(44px); }
.reveal-l { transform: translateX(-44px); }
.reveal-r { transform: translateX(44px); }
.reveal.vis, .reveal-l.vis, .reveal-r.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 21px; color: var(--t900);
  white-space: nowrap; letter-spacing: -.02em;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--g600); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.logo:hover .logo-icon { background: var(--g700); transform: rotate(-8deg); }
.logo-icon svg { width: 20px; height: 20px; fill: white; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px; font-size: 15px; font-weight: 500;
  color: var(--t700); border-radius: var(--r-full);
  transition: var(--tr);
}
.nav a:hover, .nav a.active { color: var(--g600); background: var(--gpale); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600;
  transition: var(--tr); border: 2px solid transparent;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--g700); color: #fff; border-color: var(--g700); }
.btn-primary:hover { background: var(--g800); border-color: var(--g800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(38,84,59,.35); }
.btn-outline { background: transparent; color: var(--t900); border-color: var(--border); }
.btn-outline:hover { border-color: var(--t900); background: var(--t900); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--g700); border-color: #fff; }
.btn-white:hover { background: var(--gpale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: #fff; color: var(--g700); border-color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--t900); border-radius: 2px; transition: var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 998;
  padding: 100px 28px 40px; flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 20px; font-size: 20px; font-weight: 700; color: var(--t900);
  border-bottom: 1px solid var(--border); transition: var(--tr); border-radius: 10px;
}
.mobile-menu a:hover { color: var(--g600); background: var(--gpale); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ──────────────────────────────────────────
   SECTION LABELS / HEADINGS
────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; color: var(--g600);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.section-tag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--g500); border-radius: 2px; }

.section-h {
  font-size: clamp(34px, 4.2vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.03em; color: var(--t900); margin-bottom: 20px;
}
.section-h em { color: var(--g600); }
.section-sub { font-size: 17px; color: var(--t500); max-width: 580px; line-height: 1.75; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  padding: 168px 0 96px; background: var(--bgl);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--gpale) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--g50) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gpale); color: var(--g600);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 26px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--g400); border-radius: 50%; }
.hero h1 {
  font-size: clamp(44px, 5.5vw, 68px); font-weight: 800;
  line-height: 1.06; letter-spacing: -.035em; margin-bottom: 26px; color: var(--t900);
}
.hero h1 em { color: var(--g600); }
.hero p { font-size: 18px; color: var(--t500); max-width: 490px; margin-bottom: 44px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 44px; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-stat-n { font-size: 30px; font-weight: 800; color: var(--t900); line-height: 1; margin-bottom: 5px; letter-spacing: -.03em; }
.hero-stat-l { font-size: 13px; color: var(--t500); }

.hero-visual { position: relative; }
.hero-img-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; bottom: 36px; left: -36px;
  background: #fff; border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 14px; min-width: 210px;
}
.hero-float-icon {
  width: 50px; height: 50px; background: var(--gpale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon svg { width: 26px; height: 26px; stroke: var(--g600); fill: none; stroke-width: 1.5; }
.hero-float-n { font-size: 24px; font-weight: 800; color: var(--t900); line-height: 1; }
.hero-float-l { font-size: 12px; color: var(--t500); margin-top: 3px; }

/* ──────────────────────────────────────────
   SERVICE CARDS (home preview)
────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.svc-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 32px; transition: var(--tr);
}
.svc-card:hover { border-color: var(--g300); box-shadow: var(--sh-md); transform: translateY(-5px); }
.svc-card-img-card { padding: 0; overflow: hidden; }
.svc-card-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.svc-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.svc-card-img-card:hover .svc-card-thumb img { transform: scale(1.06); }
.svc-card-body { padding: 28px 32px 32px; }
.svc-icon {
  width: 54px; height: 54px; background: var(--gpale); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: var(--tr);
}
.svc-card:hover .svc-icon { background: var(--g50); }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--g600); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--t900); }
.svc-card p  { font-size: 15px; color: var(--t500); line-height: 1.75; margin-bottom: 26px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--g600); transition: var(--tr);
}
.svc-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.svc-link:hover { gap: 12px; }
.svc-link:hover svg { transform: translateX(4px); }

/* ──────────────────────────────────────────
   ABOUT SPLIT
────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 36px; right: -28px;
  background: var(--g700); color: #fff;
  border-radius: var(--r-lg); padding: 22px 26px; text-align: center;
  box-shadow: var(--sh-md);
}
.about-badge-n { font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.about-badge-l { font-size: 12px; opacity: .75; line-height: 1.4; }

.about-feats { margin-top: 44px; display: flex; flex-direction: column; gap: 18px; }
.about-feat { display: flex; align-items: flex-start; gap: 14px; }
.about-feat-icon {
  width: 26px; height: 26px; background: var(--gpale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.about-feat-icon svg { width: 14px; height: 14px; stroke: var(--g600); fill: none; stroke-width: 2.5; }
.about-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--t900); }
.about-feat p  { font-size: 14px; color: var(--t500); line-height: 1.65; }

/* ──────────────────────────────────────────
   STATS BAR
────────────────────────────────────────── */
.stats-bar { background: var(--g700); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stat-n { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 10px; letter-spacing: -.04em; }
.stat-l { font-size: 15px; color: rgba(255,255,255,.65); }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px; transition: var(--tr);
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: var(--g200); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars span { color: #F59E0B; font-size: 17px; }
.testi-q { font-size: 56px; line-height: 1; color: var(--g100); font-family: Georgia,serif; margin-bottom: 10px; }
.testi-text { font-size: 15px; color: var(--t500); line-height: 1.82; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  background: var(--g50); flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--t900); margin-bottom: 3px; }
.testi-role { font-size: 13px; color: var(--t500); }

/* ──────────────────────────────────────────
   PROCESS
────────────────────────────────────────── */
.process-section { background: var(--bgl); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 60px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 27px;
  left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1.5px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-n {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--g600);
  margin: 0 auto 22px; transition: var(--tr);
}
.process-step:hover .process-n { background: var(--g600); border-color: var(--g600); color: #fff; transform: scale(1.12); }
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--t900); }
.process-step p  { font-size: 14px; color: var(--t500); line-height: 1.7; }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-wrap { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 0; width: 100%;
  font-size: 17px; font-weight: 600; color: var(--t900);
  background: none; border: none; text-align: left; transition: var(--tr);
}
.faq-q:hover { color: var(--g600); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bgl); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--tr);
}
.faq-icon svg { width: 16px; height: 16px; stroke: var(--t700); fill: none; stroke-width: 2; transition: transform .35s var(--ease); }
.faq-item.open .faq-icon { background: var(--gpale); }
.faq-item.open .faq-icon svg { stroke: var(--g600); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 26px; font-size: 15px; color: var(--t500); line-height: 1.82; }

/* ──────────────────────────────────────────
   BLOG
────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.blog-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 26px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-cat {
  background: var(--gpale); color: var(--g600); padding: 4px 10px;
  border-radius: var(--r-full); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.blog-date { font-size: 13px; color: var(--t300); }
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--t900); line-height: 1.4; }
.blog-card p  { font-size: 14px; color: var(--t500); line-height: 1.72; margin-bottom: 20px; }

/* ──────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────── */
.cta-banner { background: var(--g700); padding: 90px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: -60%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60%; right: -5%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -.025em; line-height: 1.1; }
.cta-text h2 em { color: var(--g200); }
.cta-text p  { font-size: 16px; color: rgba(255,255,255,.68); max-width: 500px; }
.cta-btns { display: flex; gap: 16px; flex-shrink: 0; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: #0a1a10; padding: 90px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .logo { color: #fff; margin-bottom: 22px; }
.footer .logo-icon { background: var(--g500); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.82; margin-bottom: 28px; max-width: 290px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 15px; transition: var(--tr);
}
.footer-social a:hover { background: var(--g500); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--tr); display: inline-block; }
.footer-col ul li a:hover { color: #fff; transform: translateX(4px); }
.footer-ci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.footer-ci-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.footer-ci-icon svg { width: 16px; height: 16px; stroke: var(--g400); fill: none; stroke-width: 1.5; }
.footer-ci-text { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.footer-ci-text a { color: rgba(255,255,255,.6); transition: var(--tr); }
.footer-ci-text a:hover { color: #fff; }
.footer-bottom {
  padding: 26px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: var(--tr); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────── */
.page-hero { background: var(--bgl); padding: 168px 0 88px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--gpale) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--t300); margin-bottom: 22px; }
.breadcrumb a { color: var(--t500); transition: var(--tr); }
.breadcrumb a:hover { color: var(--g600); }
.breadcrumb span { color: var(--t300); }
.page-hero h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; letter-spacing: -.035em; margin-bottom: 22px; color: var(--t900); }
.page-hero h1 em { color: var(--g600); font-family: 'Inter', sans-serif; font-style: normal; font-weight: 800; }
.page-hero p { font-size: 18px; color: var(--t500); max-width: 620px; margin: 0 auto 36px; line-height: 1.75; }

/* ──────────────────────────────────────────
   SERVICES PAGE – full grid
────────────────────────────────────────── */
.svc-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 60px; }
.svc-img-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.svc-img-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.svc-img-thumb { aspect-ratio: 16/10; overflow: hidden; }
.svc-img-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.svc-img-card:hover .svc-img-thumb img { transform: scale(1.06); }
.svc-img-body { padding: 26px 28px 28px; }
.svc-img-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--t900); }
.svc-img-body p  { font-size: 14px; color: var(--t500); line-height: 1.75; margin-bottom: 18px; }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.value-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 38px 34px; transition: var(--tr); }
.value-card:hover { border-color: var(--g300); box-shadow: var(--sh-md); }
.value-card-n { font-size: 56px; font-weight: 900; color: var(--g50); line-height: 1; margin-bottom: 18px; -webkit-text-stroke: 2px var(--g100); }
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--t900); }
.value-card p  { font-size: 15px; color: var(--t500); line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.team-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--tr); }
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--gpale); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 20px 22px; }
.team-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--t900); }
.team-info p  { font-size: 13px; color: var(--g600); font-weight: 500; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.mission-card { border-radius: var(--r-xl); padding: 52px 48px; }
.mission-card.dark { background: var(--g800); color: #fff; }
.mission-card.light { background: var(--bgl); border: 1.5px solid var(--border); }
.mission-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.mission-card.dark h3 { color: #fff; }
.mission-card.light h3 { color: var(--t900); }
.mission-card p { font-size: 16px; line-height: 1.8; }
.mission-card.dark p { color: rgba(255,255,255,.65); }
.mission-card.light p { color: var(--t500); }
.mission-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.mission-card.dark .mission-label { color: var(--g300); }
.mission-card.light .mission-label { color: var(--g600); }

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info {
  background: var(--g700); border-radius: var(--r-xl); padding: 52px 48px; color: #fff;
  position: sticky; top: 110px;
}
.contact-info h3 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: rgba(255,255,255,.68); margin-bottom: 44px; line-height: 1.75; }
.contact-detail { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
.cd-icon { width: 46px; height: 46px; background: rgba(255,255,255,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }
.cd-text h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: 5px; }
.cd-text p, .cd-text a { font-size: 15px; color: #fff; line-height: 1.65; }

.contact-form-box { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 52px 48px; }
.contact-form-box h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--t900); }
.contact-form-box > p { font-size: 15px; color: var(--t500); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--t700); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--t700); background: var(--bg); transition: var(--tr); outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--g500); box-shadow: 0 0 0 3px rgba(64,145,108,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t300); }

/* ── Multi-select dropdown ── */
.multi-select { position: relative; }
.multi-select-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 15px; color: var(--t700);
  background: var(--bg); cursor: pointer; transition: var(--tr);
  user-select: none;
}
.multi-select.open .multi-select-trigger { border-color: var(--g500); box-shadow: 0 0 0 3px rgba(64,145,108,.12); }
.multi-select-trigger svg { flex-shrink: 0; color: var(--t300); transition: transform .25s var(--ease); }
.multi-select.open .multi-select-trigger svg { transform: rotate(180deg); }
.multi-select-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-md);
  z-index: 200; overflow: hidden;
}
.multi-select.open .multi-select-dropdown { display: block; }
.form-group .multi-opt {
  display: flex; flex-direction: row; align-items: center; gap: 0;
  padding: 11px 16px; font-size: 14px; color: var(--t700);
  cursor: pointer; transition: background .15s; line-height: 1;
}
.form-group .multi-opt:hover { background: var(--gpale); }
.multi-opt input[type="checkbox"] { display: none; }
.multi-opt .check-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 4px;
  background: #fff; transition: var(--tr);
  display: flex; align-items: center; justify-content: center;
}
.multi-opt.checked .check-box {
  background: var(--g600); border-color: var(--g600);
}
.multi-opt.checked .check-box::after {
  content: ''; display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.multi-opt > span:not(.check-box) { margin-left: 10px; line-height: 1; }
.multi-opt.checked { background: var(--gpale); color: var(--g700); font-weight: 600; }

.map-section { padding: 0 0 110px; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; height: 420px; border: 1.5px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 230px; gap: 16px; margin-top: 60px; }
.g-item { border-radius: var(--r-md); overflow: hidden; position: relative; }
.g-item:first-child { grid-column: span 2; grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: var(--tr); }
.g-item:hover .g-overlay { background: rgba(0,0,0,.25); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 44px; }
  .about-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-info { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-float { left: 16px; right: auto; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .services-grid, .testi-grid, .blog-grid, .svc-full-grid { grid-template-columns: 1fr; }
  .about-grid, .mission-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid .g-item:first-child { grid-column: span 2; grid-row: span 1; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 130px 0 64px; }
  .contact-form-box { padding: 36px 28px; }
  .contact-info { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }
}

/* ── Social icons ── */
.social-icon { width: 20px; height: 20px; object-fit: contain; display: block; }
.social-icon-contact { width: 20px; height: 20px; object-fit: contain; display: inline-block; vertical-align: middle; }

/* ── Logo image ── */
.logo { font-size: 15px; letter-spacing: -.01em; }
.logo-img { height: 44px; width: auto; display: block; }
.footer-logo .logo-img { filter: brightness(0) invert(1); height: 52px; }

@media (max-width: 768px) {
  .logo-img { height: 36px; }
  .footer-logo .logo-img { height: 30px; }
}

/* ── Kotitalousvähennys badge ── */
.tax-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gpale); border: 1.5px solid var(--g300);
  border-radius: var(--r-full); padding: 8px 18px;
  font-size: 14px; font-weight: 600; color: var(--g700);
  margin-bottom: 28px;
}

/* ── Booking section ── */
.booking-section { background: var(--g800); padding: 80px 0; }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.booking-centered { display: flex; flex-direction: column; gap: 16px; max-width: 640px; margin: 0 auto; }
.booking-way-big { padding: 22px 28px; }
.booking-way-big .booking-way-icon { font-size: 28px; }
.booking-way-big h4 { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.booking-way-big p { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.booking-tag { color: var(--g300); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.booking-h { font-size: clamp(26px,3vw,36px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.booking-h em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--g300); }
.booking-p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; }
.booking-ways { display: flex; flex-direction: column; gap: 14px; }
.booking-way { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,.06); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.1); transition: var(--tr); text-decoration: none; color: #fff; }
.booking-way:hover { background: rgba(255,255,255,.12); }
.booking-way-icon { font-size: 22px; flex-shrink: 0; }
.booking-way-text h4 { font-size: 14px; font-weight: 700; color: #fff; }
.booking-way-text p { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }
.booking-way-text .booking-contact-val { font-size: 22px; font-weight: 700; color: #fff; margin: 0; }
.booking-tax { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: rgba(255,255,255,.06); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.15); margin-top: 24px; }
.booking-tax-icon { font-size: 26px; flex-shrink: 0; }
.booking-tax h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.booking-tax p { font-size: 13px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.6; }

/* ── Timelapse Video ── */
.video-section { padding: 100px 0; background: var(--bgl); }
.video-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.video-wrap video { width: 100%; display: block; max-height: 600px; object-fit: cover; }

/* ── Before/After Slider ── */
.ba-section { padding: 100px 0; background: var(--bg); }
.ba-wrap {
  position: relative; user-select: none; overflow: hidden;
  border-radius: var(--r-lg); cursor: col-resize;
  aspect-ratio: 16/9; box-shadow: var(--sh-lg); max-height: 520px;
  max-width: 860px; margin: 0 auto;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 calc(100% - var(--ba-p, 50%)) 0 0); }
.ba-divider {
  position: absolute; top: 0;
  left: var(--ba-p, 50%); transform: translateX(-50%);
  width: 3px; height: 100%; background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.4); pointer-events: none;
  will-change: left;
}
.ba-btn {
  position: absolute; top: 50%; left: var(--ba-p, 50%);
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  pointer-events: none; font-size: 18px; color: var(--g700); font-weight: 800;
  will-change: left;
}
.ba-label {
  position: absolute; bottom: 16px; padding: 5px 14px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  color: #fff; border-radius: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; pointer-events: none;
}
.ba-label-before { right: 20px; }
.ba-label-after  { left: 20px; }

@media (max-width: 768px) {
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .logo { font-size: 13px; }
}
