/* ==========================================================================
   MENPLUSS EESTI OÜ — Katusefirma aastast 1997
   Disainisüsteem: terassinine + vask, valtsplekk-vertikaaljoonte motiiv
   Puhas CSS, ilma build-sammuta.
   ========================================================================== */

/* --- Fondid --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* --- Disainitokenid --- */
:root {
  /* Värvid */
  --navy-900: #081E36;
  --navy-800: #0C2E52;
  --navy-700: #0E3A63;   /* brändi sinine (logo) */
  --navy-600: #134A7C;
  --navy-500: #1C5C94;
  --steel-400: #4E6E8E;
  --steel-300: #8298AE;
  --steel-100: #D4DCE5;

  --accent-700: #0E3A63;   /* sügav brändisinine */
  --accent-600: #15568C;  /* peamine sinine aktsent */
  --accent-500: #4F92CF;  /* hele aktsentsinine (tumedal taustal) */
  --accent-300: #9BC1E2;  /* heleterass-sinine */

  --bg: #F3F5F8;          /* jahe heleterass */
  --bg-2: #FFFFFF;
  --bg-3: #EAEEF3;
  --ink: #11202E;
  --ink-soft: #4A5C6E;
  --ink-faint: #7C8B99;
  --line: rgba(14, 58, 99, 0.12);
  --line-strong: rgba(14, 58, 99, 0.22);
  --white: #FFFFFF;

  /* Tüpograafia */
  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  /* Ruum */
  --container: 1240px;
  --container-narrow: 920px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4.5rem, 9vw, 8rem);

  /* Muu */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(8,30,54,.06), 0 2px 8px rgba(8,30,54,.06);
  --shadow-md: 0 8px 30px rgba(8,30,54,.10), 0 2px 8px rgba(8,30,54,.06);
  --shadow-lg: 0 24px 60px rgba(8,30,54,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 84px;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }
::selection { background: var(--accent-600); color: #fff; }

/* --- Tüpograafia --- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; color: var(--navy-800); }
.h-display { font-size: clamp(2.7rem, 6.4vw, 5.5rem); font-weight: 900; line-height: .98; letter-spacing: -.025em; }
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.85rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent-600); display: inline-block;
}
.eyebrow.light { color: var(--accent-300); }
.eyebrow.light::before { background: var(--accent-300); }
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.32rem); line-height: 1.6; color: var(--ink-soft); }

/* --- Layout --- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--sec-y); position: relative; }
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-white { background: var(--bg-2); }
.bg-alt { background: var(--bg-3); }
.bg-navy { background: var(--navy-800); color: #cfe; }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: #fff; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }

/* --- Valtsplekk-motiiv (allkiri): vertikaalsed õmblusjooned --- */
.seam-rule {
  height: 26px; width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--line-strong) 0 1px, transparent 1px 22px);
  opacity: .6;
}
.seam-accent { position: relative; }
.seam-accent::before {
  content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent-600);
}

/* ==========================================================================
   NUPUD
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: .95rem 1.6rem; border-radius: var(--radius);
  transition: all .25s var(--ease); position: relative; cursor: pointer;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--accent-600); color: #fff; box-shadow: 0 6px 18px rgba(21,86,140,.30); }
.btn-primary:hover { background: var(--accent-700); box-shadow: 0 10px 26px rgba(21,86,140,.40); transform: translateY(-2px); }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy-700); background: var(--navy-700); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: #fff; color: var(--navy-800); border-color:#fff; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   PÄIS
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1.5rem;
}
.brand { display: flex; align-items: center; z-index: 2; }
.brand img { height: 30px; width: auto; transition: opacity .3s var(--ease); }
.brand .logo-white { position: absolute; }
.brand .logo-navy { opacity: 0; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--display); font-weight: 500; font-size: .95rem;
  padding: .55rem .9rem; border-radius: var(--radius); color: #fff;
  transition: color .2s, background .2s; position: relative;
}
.nav a:hover { color: var(--accent-300); }
.nav a.active { color: var(--accent-300); }

.has-sub { position: relative; }
.has-sub > a::after {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: .4rem;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .7;
}
.submenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; min-width: 320px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: .6rem; opacity: 0; visibility: hidden;
  transition: all .28s var(--ease); border: 1px solid var(--line);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: flex; align-items: center; gap: .8rem; padding: .7rem .8rem; border-radius: var(--radius);
  color: var(--navy-800); font-size: .92rem; font-weight: 500;
}
.submenu a:hover { background: var(--bg); color: var(--navy-800); }
.submenu a .ic { width: 30px; height: 30px; flex: none; color: var(--accent-600); }
.submenu a small { display: block; color: var(--ink-faint); font-weight: 400; font-size: .78rem; }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 600; color: #fff; font-size: .95rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--accent-300); }

/* Scrolled state */
.site-header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(8,30,54,.08); border-color: var(--line); }
.site-header.scrolled .brand .logo-white { opacity: 0; }
.site-header.scrolled .brand .logo-navy { opacity: 1; }
.site-header.scrolled .nav a { color: var(--navy-800); }
.site-header.scrolled .nav a:hover, .site-header.scrolled .nav a.active { color: var(--accent-600); }
.site-header.scrolled .header-phone { color: var(--navy-800); }
.site-header.scrolled .header-phone svg { color: var(--accent-600); }
.site-header.scrolled .has-sub > a::after { opacity: .55; }

/* Solid header variant (sisemised lehed ilma herota) */
.site-header.solid { position: sticky; background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header.solid .brand .logo-white { opacity: 0; }
.site-header.solid .brand .logo-navy { opacity: 1; }
.site-header.solid .nav a { color: var(--navy-800); }
.site-header.solid .nav a:hover, .site-header.solid .nav a.active { color: var(--accent-600); }
.site-header.solid .header-phone { color: var(--navy-800); }
.site-header.solid .header-phone svg { color: var(--accent-600); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; z-index: 110; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.site-header.scrolled .burger span, .site-header.solid .burger span { background: var(--navy-800); }
.menu-open .burger span { background: var(--navy-800); }
.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--header-h); overflow: hidden; background: var(--navy-900);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transform: scale(1.06); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,30,54,.55) 0%, rgba(8,30,54,.25) 35%, rgba(8,30,54,.9) 100%),
    linear-gradient(90deg, rgba(8,30,54,.75) 0%, rgba(8,30,54,.1) 60%);
}
/* valtsplekk vertikaaljooned hero peal */
.hero-seams { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(180deg, transparent, #000 40%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero-tag { color: var(--accent-300); margin-bottom: 1.4rem; }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--accent-500); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .accent {
    background: linear-gradient(118deg, var(--accent-300) 8%, var(--accent-500) 92%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
}
.hero-sub { color: rgba(255,255,255,.86); font-size: clamp(1.05rem,1.6vw,1.28rem); max-width: 52ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.7rem, 1.3vw, 1rem);
  margin-bottom: clamp(1.6rem, 3.5vw, 2.8rem);
}
.hero-stats .stat {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg); padding: clamp(1.05rem, 1.7vw, 1.5rem);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.hero-stats .stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.26); }
.stat .num { font-family: var(--display); font-weight: 900; font-size: clamp(1.9rem,3.2vw,2.7rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat .num .u { color: var(--accent-500); }
.stat .lbl { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: .5rem; letter-spacing: .02em; }

/* --- Hero: atmosfäär + sissetuleku animatsioon --- */
.hero::before {
  content:""; position: absolute; z-index: 1; top: -12%; right: -8%;
  width: 55%; height: 65%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(79,146,207,.20), transparent 72%);
}
.hero-tag, .hero h1, .hero-sub, .hero-trust, .hero-actions { animation: heroRise .9s var(--ease) both; }
.hero-tag    { animation-delay: .10s; }
.hero h1     { animation-delay: .22s; }
.hero-sub    { animation-delay: .38s; }
.hero-actions{ animation-delay: .52s; }
.hero-trust  { animation-delay: .64s; }
.hero-stats  { animation: heroRise 1s var(--ease) .78s both; }
.scroll-hint { animation: heroRise 1s var(--ease) 1s both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* --- Hero usaldusriba --- */
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.5rem; margin-bottom: 2rem; }
.hero-trust .t-item { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.82); font-family: var(--display); font-weight: 500; font-size: .9rem; }
.hero-trust .t-item svg { width: 18px; height: 18px; color: var(--accent-300); flex: none; }

.scroll-hint { position: absolute; bottom: 1.4rem; right: var(--gut); z-index: 2; color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; display: flex; align-items: center; gap: 1rem; }
.scroll-hint::after { content:""; width: 1px; height: 50px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* Page hero (sisemised lehed) */
.page-hero { position: relative; background: var(--navy-800); color: #fff; padding-top: calc(var(--header-h) + clamp(2.5rem,5vw,4rem)); padding-bottom: clamp(2.5rem,5vw,4rem); overflow: hidden; }
.page-hero.has-img { min-height: 56vh; display: flex; align-items: flex-end; }
.page-hero .ph-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero .ph-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,30,54,.6), rgba(8,30,54,.92)); }
.page-hero-seams { position: absolute; inset: 0; z-index: 1; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 56px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 60ch; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent-300); }
.breadcrumb span { opacity: .5; }

/* ==========================================================================
   AVALEHE: TUTVUSTUS / NUMBRID
   ========================================================================== */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.intro-figure { position: relative; }
.intro-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.intro-badge {
  position: absolute; bottom: -28px; left: -28px; background: var(--accent-600); color: #fff;
  padding: 1.4rem 1.6rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center;
}
.intro-badge .b-num { font-family: var(--display); font-weight: 900; font-size: 2.6rem; line-height: 1; }
.intro-badge .b-lbl { font-size: .8rem; letter-spacing: .06em; opacity: .9; margin-top: .3rem; }
.quote-card { border-left: 3px solid var(--accent-600); padding: .4rem 0 .4rem 1.5rem; margin: 1.8rem 0; }
.quote-card p { font-size: 1.15rem; font-style: italic; color: var(--ink); }
.quote-card .who { margin-top: .8rem; font-family: var(--display); font-weight: 700; color: var(--navy-800); font-style: normal; }
.quote-card .who small { display: block; color: var(--ink-faint); font-weight: 400; font-style: normal; }

/* ==========================================================================
   TEENUSTE RUUDUSTIK
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .35s var(--ease); display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card .img { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .img img { transform: scale(1.07); }
.svc-card .img::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,30,54,.35)); }
.svc-card .num { position: absolute; top: 1rem; left: 1rem; font-family: var(--display); font-weight: 800; font-size: .85rem; color: #fff; background: rgba(8,30,54,.55); backdrop-filter: blur(4px); padding: .25rem .6rem; border-radius: 3px; letter-spacing: .05em; z-index: 2; }
.svc-card .body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { margin-bottom: .6rem; }
.svc-card p { font-size: .95rem; flex: 1; }
.svc-card .more { margin-top: 1.1rem; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--accent-600); display: inline-flex; align-items: center; gap: .5rem; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* lihtne nimekiri-teenused (kompaktne) */
.svc-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.svc-list a { background: #fff; padding: 1.6rem; display: flex; gap: 1.1rem; align-items: flex-start; transition: background .25s; }
.svc-list a:hover { background: var(--bg); }
.svc-list .ic { width: 42px; height: 42px; flex: none; color: var(--accent-600); }
.svc-list h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); font-size: 1.1rem; margin-bottom: .25rem; }
.svc-list p { font-size: .9rem; }

/* ==========================================================================
   PROTSESS / MIKS MEIE
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; counter-reset: s; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { counter-increment: s; content: "0" counter(s); position: absolute; top: 0; left: 0; font-family: var(--display); font-weight: 900; font-size: 2.4rem; color: var(--steel-100); line-height: 1; }
.step h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; font-size: 1.15rem; }
.step p { font-size: .94rem; }
.step .bar { width: 36px; height: 3px; background: var(--accent-600); margin-bottom: 1rem; }

.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; transition: all .3s var(--ease); }
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature .ic { width: 46px; height: 46px; color: var(--accent-600); margin-bottom: 1.1rem; }
.feature h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; font-size: 1.18rem; }
.feature p { font-size: .95rem; }

/* ==========================================================================
   PROJEKTID
   ========================================================================== */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.proj-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-sm); }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj-card:hover img { transform: scale(1.08); }
.proj-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,30,54,.92)); }
.proj-card .meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; z-index: 2; transform: translateY(8px); transition: transform .35s var(--ease); }
.proj-card:hover .meta { transform: translateY(0); }
.proj-card .tag { display: inline-block; font-family: var(--display); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-300); margin-bottom: .5rem; }
.proj-card h4 { color: #fff; font-size: 1.15rem; font-weight: 700; line-height: 1.25; }
.proj-card.big { grid-column: span 2; aspect-ratio: auto; }

/* projektide aastate nimekiri */
.year-block { border-top: 1px solid var(--line); padding: 1.8rem 0; display: grid; grid-template-columns: 140px 1fr; gap: 2rem; }
.year-block .yr { font-family: var(--display); font-weight: 900; font-size: 1.8rem; color: var(--accent-600); line-height: 1; }
.year-block ul { display: grid; gap: .55rem; }
.year-block li { color: var(--ink-soft); padding-left: 1.3rem; position: relative; font-size: .98rem; }
.year-block li::before { content:""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border: 1.5px solid var(--accent-500); }

/* ==========================================================================
   KLIENDID / USALDUS
   ========================================================================== */
.clients { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem,5vw,4.5rem); }
.clients img { height: clamp(48px, 6vw, 70px); width: auto; opacity: .7; filter: grayscale(1); transition: all .3s; }
.clients img:hover { opacity: 1; filter: grayscale(0); }

/* ==========================================================================
   ISELOOMUSTUSED
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; position: relative; }
.testi .stars { color: var(--accent-500); margin-bottom: 1rem; letter-spacing: .15em; font-size: 1.05rem; }
.testi p { color: var(--ink); font-size: 1.05rem; line-height: 1.6; }
.testi .who { margin-top: 1.3rem; font-family: var(--display); font-weight: 700; color: var(--navy-800); }
.testi .who small { display: block; color: var(--ink-faint); font-weight: 400; }
.testi::before { content: "\201C"; position: absolute; top: 1rem; right: 1.6rem; font-family: var(--display); font-size: 4rem; color: var(--steel-100); line-height: 1; }

/* ==========================================================================
   CTA RIBA
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--navy-800); color: #fff; }
.cta-band .seams { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 60px); }
.cta-band .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: .6rem; }

/* ==========================================================================
   TEENUSE DETAILILEHT
   ========================================================================== */
.svc-detail { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2rem,4vw,4rem); align-items: start; }
.svc-body h2 { margin: 2rem 0 1rem; }
.svc-body h3 { font-size: 1.3rem; color: var(--navy-800); margin: 1.8rem 0 .8rem; }
.svc-body p { margin-bottom: 1.1rem; }
.svc-body ul.ticks { display: grid; gap: .8rem; margin: 1.2rem 0 1.6rem; }
.svc-body ul.ticks li { padding-left: 2rem; position: relative; color: var(--ink-soft); }
.svc-body ul.ticks li::before {
  content:""; position: absolute; left: 0; top: .15em; width: 20px; height: 20px;
  background: var(--accent-600); border-radius: 3px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.svc-hero-img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; box-shadow: var(--shadow-md); }

.svc-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.4rem; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.aside-card.dark { background: var(--navy-800); color: #fff; }
.aside-card.dark h4, .aside-card.dark h3 { color: #fff; }
.aside-card .ac-eyebrow { font-family: var(--display); font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-500); }
.aside-card h3 { font-size: 1.35rem; margin: .5rem 0 1rem; }
.aside-list { display: grid; gap: .2rem; }
.aside-list a { padding: .7rem .8rem; border-radius: var(--radius); display: flex; justify-content: space-between; align-items: center; color: var(--navy-800); font-weight: 500; font-size: .95rem; transition: all .2s; }
.aside-list a:hover { background: var(--bg); color: var(--accent-700); }
.aside-list a.current { background: var(--navy-700); color: #fff; }
.aside-list a svg { width: 15px; height: 15px; opacity: .5; }
.aside-contact .row { display: flex; gap: .8rem; align-items: center; padding: .55rem 0; color: rgba(255,255,255,.9); font-size: .95rem; }
.aside-contact .row svg { width: 18px; height: 18px; color: var(--accent-300); flex: none; }

/* ==========================================================================
   VORM
   ========================================================================== */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: .85rem; color: var(--navy-800); letter-spacing: .01em; }
.field label .req { color: var(--accent-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--steel-100); border-radius: var(--radius);
  background: var(--bg); transition: all .2s; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-600); background: #fff; box-shadow: 0 0 0 3px rgba(21,86,140,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5C6E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.checks { display: grid; grid-template-columns: repeat(2,1fr); gap: .55rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem .85rem; border: 1.5px solid var(--steel-100); border-radius: var(--radius); cursor: pointer; transition: all .2s; background: var(--bg); font-size: .92rem; }
.check:hover { border-color: var(--accent-300); }
.check input { width: 18px; height: 18px; accent-color: var(--accent-600); margin-top: .1rem; flex: none; }
.check.sel { border-color: var(--accent-600); background: rgba(21,86,140,.06); }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.consent input { width: 20px; height: 20px; accent-color: var(--accent-600); margin-top: .1rem; flex: none; }
.consent a { color: var(--accent-700); text-decoration: underline; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: .4rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: .95rem; display: none; margin-top: 1rem; }
.form-status.ok { display: block; background: #E6F4EA; color: #1E6B3A; border: 1px solid #B5DCC2; }
.form-status.err { display: block; background: #FCEBEA; color: #B23B30; border: 1px solid #F2C4BF; }

/* ==========================================================================
   KALKULAATOR
   ========================================================================== */
.calc-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.calc-head { background: var(--navy-800); color: #fff; padding: 1.6rem clamp(1.4rem,3vw,2.4rem); position: relative; overflow: hidden; }
.calc-head .seams { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px); }
.calc-head .ch-inner { position: relative; z-index: 2; }
.calc-head h3 { color: #fff; font-size: 1.4rem; }
.calc-head p { color: rgba(255,255,255,.75); font-size: .92rem; margin-top: .3rem; }
.calc-progress { display: flex; margin-top: 1.4rem; gap: .5rem; position: relative; z-index: 2; }
.calc-progress .pstep { flex: 1; }
.calc-progress .pbar { height: 4px; background: rgba(255,255,255,.2); border-radius: 4px; overflow: hidden; }
.calc-progress .pbar i { display: block; height: 100%; width: 0; background: var(--accent-500); transition: width .4s var(--ease); }
.calc-progress .plbl { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .45rem; letter-spacing: .03em; }
.calc-progress .pstep.active .plbl { color: #fff; }
.calc-progress .pstep.done .pbar i { width: 100%; }
.calc-progress .pstep.active .pbar i { width: 100%; }

.calc-body { padding: clamp(1.6rem,3vw,2.6rem); }
.calc-step { display: none; animation: fadeUp .4s var(--ease); }
.calc-step.active { display: block; }
.calc-step h4 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--navy-800); margin-bottom: .4rem; }
.calc-step .step-hint { color: var(--ink-faint); font-size: .92rem; margin-bottom: 1.5rem; }

.opt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.opt {
  border: 1.5px solid var(--steel-100); border-radius: var(--radius-lg); padding: 1.4rem; cursor: pointer;
  transition: all .25s var(--ease); display: flex; gap: 1rem; align-items: flex-start; background: var(--bg); position: relative;
}
.opt:hover { border-color: var(--accent-300); transform: translateY(-2px); }
.opt.sel { border-color: var(--accent-600); background: #fff; box-shadow: 0 0 0 3px rgba(21,86,140,.12); }
.opt .opt-ic { width: 40px; height: 40px; flex: none; color: var(--accent-600); }
.opt h5 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--navy-800); margin-bottom: .25rem; }
.opt p { font-size: .85rem; color: var(--ink-faint); line-height: 1.4; }
.opt .price-hint { font-size: .8rem; color: var(--accent-700); font-weight: 600; margin-top: .4rem; }
.opt .tick { position: absolute; top: 1rem; right: 1rem; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-600); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.5); transition: all .25s var(--ease); }
.opt.sel .tick { opacity: 1; transform: scale(1); }
.opt .tick svg { width: 13px; height: 13px; color: #fff; }

.calc-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-bottom: 1rem; }
.calc-field label { font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--navy-800); display: block; margin-bottom: .5rem; }
.calc-field .unit-input { position: relative; }
.calc-field .unit-input input { width: 100%; padding: .9rem 3rem .9rem 1rem; border: 1.5px solid var(--steel-100); border-radius: var(--radius); background: var(--bg); font-size: 1.05rem; font-family: var(--display); font-weight: 600; }
.calc-field .unit-input input:focus { outline: none; border-color: var(--accent-600); background: #fff; box-shadow: 0 0 0 3px rgba(21,86,140,.14); }
.calc-field .unit-input .u { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--ink-faint); font-size: .9rem; font-weight: 600; }

.pitch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.pitch-opt { border: 1.5px solid var(--steel-100); border-radius: var(--radius); padding: 1rem; text-align: center; cursor: pointer; background: var(--bg); transition: all .2s; }
.pitch-opt:hover { border-color: var(--accent-300); }
.pitch-opt.sel { border-color: var(--accent-600); background: #fff; box-shadow: 0 0 0 3px rgba(21,86,140,.12); }
.pitch-opt svg { width: 48px; height: 30px; margin: 0 auto .4rem; color: var(--navy-700); display: block; }
.pitch-opt strong { display: block; font-family: var(--display); color: var(--navy-800); font-size: .95rem; }
.pitch-opt small { color: var(--ink-faint); font-size: .78rem; }

.addon-grid { display: grid; gap: .7rem; }
.addon { display: flex; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border: 1.5px solid var(--steel-100); border-radius: var(--radius); cursor: pointer; transition: all .2s; background: var(--bg); }
.addon:hover { border-color: var(--accent-300); }
.addon.sel { border-color: var(--accent-600); background: #fff; }
.addon .ad-check { width: 22px; height: 22px; border: 1.5px solid var(--steel-300); border-radius: 4px; flex: none; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.addon.sel .ad-check { background: var(--accent-600); border-color: var(--accent-600); }
.addon .ad-check svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.addon.sel .ad-check svg { opacity: 1; }
.addon .ad-txt { flex: 1; }
.addon .ad-txt strong { font-family: var(--display); color: var(--navy-800); font-weight: 600; display: block; font-size: .98rem; }
.addon .ad-txt small { color: var(--ink-faint); font-size: .82rem; }
.addon .ad-price { font-family: var(--display); font-weight: 700; color: var(--accent-700); font-size: .9rem; white-space: nowrap; }

.calc-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }

/* result */
.result-est { background: var(--bg); border: 1.5px dashed var(--accent-300); border-radius: var(--radius-lg); padding: 1.8rem; text-align: center; margin-bottom: 1.6rem; }
.result-est .r-lbl { font-family: var(--display); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-700); }
.result-est .r-val { font-family: var(--display); font-weight: 900; font-size: clamp(2rem,5vw,3rem); color: var(--navy-800); line-height: 1.1; margin: .4rem 0; }
.result-est .r-area { color: var(--ink-soft); font-size: .95rem; }
.result-breakdown { display: grid; gap: .1rem; margin-bottom: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.result-breakdown .bd-row { display: flex; justify-content: space-between; padding: .8rem 1.1rem; background: #fff; font-size: .94rem; }
.result-breakdown .bd-row:nth-child(even) { background: var(--bg); }
.result-breakdown .bd-row span:first-child { color: var(--ink-soft); }
.result-breakdown .bd-row span:last-child { font-family: var(--display); font-weight: 600; color: var(--navy-800); }
.result-disclaimer { font-size: .82rem; color: var(--ink-faint); background: var(--bg-3); padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.6rem; line-height: 1.5; }

/* ==========================================================================
   KONTAKTLEHT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.contact-info .ci-item { display: flex; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-item:last-child { border-bottom: none; }
.contact-info .ci-ic { width: 48px; height: 48px; flex: none; background: var(--navy-700); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.contact-info .ci-ic svg { width: 22px; height: 22px; color: var(--accent-300); }
.contact-info .ci-item h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }
.contact-info .ci-item a, .contact-info .ci-item p { color: var(--ink); font-size: 1.05rem; font-weight: 500; display: block; }
.contact-info .ci-item a:hover { color: var(--accent-700); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.2); }

/* ==========================================================================
   TIIMI KAARDID
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card .ph { aspect-ratio: 3/3.4; background: var(--bg-3); overflow: hidden; position: relative; }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .ph .ph-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 900; font-size: 3.5rem; color: var(--steel-100); }
.team-card .info { padding: 1.4rem 1.5rem; }
.team-card h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); font-size: 1.2rem; }
.team-card .role { color: var(--accent-700); font-family: var(--display); font-weight: 600; font-size: .9rem; margin-top: .25rem; }

/* values */
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.value { display: flex; gap: 1.1rem; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.value .v-num { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--accent-500); line-height: 1; flex: none; }
.value h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); margin-bottom: .4rem; }
.value p { font-size: .94rem; }

/* certificates */
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.cert-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.cert-card .c-ic { width: 52px; height: 52px; flex: none; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.cert-card .c-ic svg { width: 26px; height: 26px; color: var(--accent-600); }
.cert-card h4 { font-family: var(--display); font-weight: 700; color: var(--navy-800); font-size: 1.1rem; margin-bottom: .3rem; }
.cert-card .code { font-family: var(--display); font-weight: 600; color: var(--accent-700); font-size: .95rem; margin-bottom: .4rem; }
.cert-card p { font-size: .9rem; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--navy-800); }
.faq-q .ic { width: 28px; height: 28px; flex: none; border: 1.5px solid var(--line-strong); border-radius: 50%; position: relative; transition: all .3s; }
.faq-q .ic::before, .faq-q .ic::after { content:""; position: absolute; background: var(--accent-600); top: 50%; left: 50%; transition: all .3s; }
.faq-q .ic::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .ic::after { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .ic { background: var(--accent-600); border-color: var(--accent-600); }
.faq-item.open .faq-q .ic::before { background: #fff; }
.faq-item.open .faq-q .ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 1.4rem; color: var(--ink-soft); }

/* ==========================================================================
   JALUS
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem,6vw,5rem); position: relative; overflow: hidden; }
.site-footer .f-seams { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: repeating-linear-gradient(90deg, var(--accent-600) 0 30px, transparent 30px 60px); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 28px; margin-bottom: 1.3rem; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .94rem; max-width: 32ch; }
.footer-col h5 { font-family: var(--display); font-weight: 700; color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent-300); }
.footer-contact .fc-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .94rem; color: rgba(255,255,255,.8); }
.footer-contact .fc-row svg { width: 17px; height: 17px; color: var(--accent-300); flex: none; margin-top: .15rem; }
.footer-licenses { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; border-top: 1px solid rgba(255,255,255,.1); padding: 1.6rem 0; }
.footer-licenses strong { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom .made { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--accent-300); }

/* ==========================================================================
   ANIMATSIOONID
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* mobile nav drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 105; background: var(--navy-900); transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; padding: calc(var(--header-h) + 1rem) var(--gut) 2rem; overflow-y: auto; }
.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a { color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.4rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a.sub { font-size: 1.05rem; padding-left: 1.2rem; color: rgba(255,255,255,.75); font-weight: 500; }
.mobile-nav .m-cta { margin-top: 1.5rem; }
.mobile-nav .m-contact { margin-top: auto; padding-top: 2rem; color: rgba(255,255,255,.7); }
.mobile-nav .m-contact a { font-size: 1rem; border: none; padding: .4rem 0; display: flex; gap: .6rem; align-items: center; }
.mobile-nav .m-contact svg { width: 18px; height: 18px; color: var(--accent-300); }

/* ==========================================================================
   RESPONSIIVSUS
   ========================================================================== */
@media (max-width: 1080px) {
  .svc-grid, .features, .proj-grid, .testi-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 2.2rem; }
  .proj-card.big { grid-column: span 2; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-aside { position: static; grid-template-columns: 1fr 1fr; display: grid; }
}
@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .intro-grid, .contact-grid, .cta-band .inner { grid-template-columns: 1fr; }
  .calc-cta-grid { grid-template-columns: 1fr !important; }
  .cta-band .inner { text-align: center; }
  .cta-band .inner .btn { justify-self: center; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stats .stat { border-right: none; }
  .intro-figure { max-width: 460px; margin-inline: auto; }
  .intro-badge { left: 0; }
  .year-block { grid-template-columns: 1fr; gap: .8rem; }
}
@media (max-width: 680px) {
  .svc-grid, .features, .proj-grid, .testi-grid, .team-grid, .svc-list, .opt-grid, .checks, .cert-grid, .values, .calc-row, .form-grid, .svc-aside { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .proj-card.big { grid-column: span 1; }
  .pitch-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
  .intro-badge { position: static; display: inline-flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}
