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

:root {
  --bg:        #070d08;
  --bg2:       #0d180e;
  --bg3:       #132015;
  --green:     #32994b;
  --green-l:   #3dab58;
  --green-dim: rgba(50,153,75,0.10);
  --text:      #e2ede4;
  --muted:     #7a9a7e;
  --border:    #1c2e1e;
  --radius:    10px;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,13,8,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links .nav-en {
  border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px;
  color: var(--muted); font-size: 10.5px;
}
.nav-links .nav-en:hover { border-color: var(--green); color: var(--green); }
.hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 22px; cursor: pointer; padding: 6px; line-height: 1;
}
.hamburger i { display: block; transition: opacity 0.12s ease; }
.hamburger.is-open i { animation: tvh-xspin 0.32s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes tvh-xspin { from { transform: rotate(-180deg); opacity: 0; } to { transform: rotate(0deg); opacity: 1; } }

/* ── MOBILE MENU ── */
.mob-menu {
  display: flex; position: fixed; inset: 0; background: rgba(7,13,8,0.98);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mob-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mob-menu a, .mob-menu .mob-close {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.2s;
}
.mob-menu.open .mob-close { opacity: 1; transform: translateY(0); transition-delay: 0.04s; }
.mob-menu.open a:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mob-menu.open a:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.mob-menu.open a:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.mob-menu.open a:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.mob-menu.open a:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.mob-menu a {
  color: var(--text); text-decoration: none; font-size: 1.1rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
}
.mob-menu a:hover { color: var(--green); }
.mob-close {
  position: absolute; top: 20px; right: 24px; background: none;
  border: none; color: var(--muted); font-size: 26px; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner2.jpg') center/cover no-repeat;
  transform: scale(1.05);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(7,13,8,0.92) 100%); }
.hero-content { position: relative; z-index: 1; padding: 100px 20px 60px; max-width: 820px; }
.hero-eyebrow {
  display: inline-block; background: var(--green-dim); border: 1px solid rgba(50,153,75,0.3);
  color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 36px; background: var(--green); color: #fff;
  text-decoration: none; border-radius: 7px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.8px; text-transform: uppercase; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn:hover { background: var(--green-l); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; border: 2px solid rgba(255,255,255,0.25); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ── STATS STRIP ── */
.stats {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto;
}
.stat-item {
  flex: 1; text-align: center; padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.5px; }

/* ── SECTION SHARED ── */
.section { padding: 96px 40px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.85; max-width: 640px; }

/* ── ABOUT / MEISTÄ ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 42px; height: 42px; background: var(--green-dim); border: 1px solid rgba(50,153,75,0.25);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: 16px;
}
.feature-item h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.feature-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.about-img-block { position: relative; }
.about-img-block img { width: 100%; border-radius: 16px; border: 1px solid var(--border); display: block; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); border-radius: 12px; padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 30px rgba(50,153,75,0.4);
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1; }
.about-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.82); letter-spacing: 0.5px; }

/* ── SERVICES ── */
.services-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.service-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; transition: border-color 0.2s, transform 0.15s;
}
.service-card:hover { border-color: rgba(50,153,75,0.45); transform: translateY(-3px); }
.service-card-icon {
  width: 48px; height: 48px; background: var(--green-dim); border: 1px solid rgba(50,153,75,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 20px; margin-bottom: 18px;
}
.service-card h3 { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── HENKILÖT ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.team-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; display: flex; gap: 0; transition: border-color 0.2s;
}
.team-card:hover { border-color: rgba(50,153,75,0.4); }
.team-photo { width: 160px; flex-shrink: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-info { padding: 26px 24px; flex: 1; }
.team-info h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.team-detail { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-size: 0.8rem; color: var(--muted); }
.team-detail i { color: var(--green); width: 14px; text-align: center; font-size: 12px; }
.team-detail a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.team-detail a:hover { color: var(--green); }
.winda-badge {
  display: inline-block; margin-top: 12px; background: var(--green-dim);
  border: 1px solid rgba(50,153,75,0.25); border-radius: 5px; padding: 3px 10px;
  font-size: 0.72rem; color: var(--green); font-weight: 600; letter-spacing: 0.5px;
}

/* ── CONTACT ── */
.contact-bg { background: var(--bg2); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; margin-top: 56px; }
.contact-info h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.contact-line { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.contact-line i { color: var(--green); width: 18px; text-align: center; font-size: 15px; flex-shrink: 0; }
.contact-line a, .contact-line span { color: var(--text); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.contact-line a:hover { color: var(--green); }
.contact-note {
  margin-top: 32px; padding: 18px 20px;
  background: var(--bg3); border-left: 3px solid var(--green); border-radius: 6px;
  font-size: 0.82rem; color: var(--muted); line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 7px;
  padding: 11px 14px; color: var(--text); font-size: 0.88rem; font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── HISTORIA TIMELINE ── */
.timeline { position: relative; margin-top: 60px; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green) 0%, transparent 100%);
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-dot {
  position: absolute; left: -40px; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--green); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year {
  font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.timeline-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px;
}
.timeline-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.timeline-card strong { color: var(--text); }

/* ── REFERENSSIT ── */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.ref-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; transition: border-color 0.2s, transform 0.15s;
}
.ref-card:hover { border-color: rgba(50,153,75,0.4); transform: translateY(-3px); }
.ref-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-dim);
  border: 2px solid rgba(50,153,75,0.3); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px; font-weight: 700; color: var(--green);
}
.ref-card h3 { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ref-title { font-size: 0.78rem; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.ref-phone { font-size: 0.83rem; color: var(--muted); }
.ref-phone a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.ref-phone a:hover { color: var(--green); }

.partners-section { margin-top: 80px; }
.partners-title { font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 36px; }
.partners-grid { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; }
.partner-img {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 28px; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.partner-img:hover { border-color: rgba(50,153,75,0.4); }
.partner-img img { height: 52px; object-fit: contain; filter: grayscale(1) brightness(1.4); transition: filter 0.2s; }
.partner-img:hover img { filter: none; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 40px 80px; text-align: center;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero h1 span { color: var(--green); }
.page-hero p { font-size: 0.97rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 36px 40px; text-align: center;
}
footer img { height: 34px; margin-bottom: 14px; display: block; margin-left: auto; margin-right: auto; }
footer p { font-size: 0.8rem; color: var(--muted); }
footer a { color: var(--green); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -30px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 700px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 110px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .team-photo { width: 120px; }
  .form-row { grid-template-columns: 1fr; }
  .partners-grid { gap: 16px; }
  .partner-img { padding: 14px 20px; }
  .partner-img img { height: 38px; }
}

@media (max-width: 480px) {
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; height: 560px; }
  .team-photo img { object-position: center 18%; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
}
