/* =====================================================================
   DOUKAS ELEVATORS COMPANY — Shared stylesheet
   Brand: orange (#ef7d18) + graphite grey (#3a3a3c)
   ===================================================================== */

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

:root {
  --orange: #ef7d18;
  --orange-dark: #d96c0c;
  --orange-soft: #fef2e6;
  --ink: #353537;
  --ink-soft: #5c5c60;
  --grey: #74747a;
  --line: #e6e7ea;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --bg-dark: #2a2a2c;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(20,20,25,.06);
  --shadow: 0 14px 40px rgba(20,20,25,.10);
  --shadow-lg: 0 24px 60px rgba(20,20,25,.16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
/* lock scroll while preloader active */
body.is-loading { overflow: hidden; height: 100vh; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

::selection { background: var(--orange); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #d9d9dd; }
.section--tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}
.section--dark .section-title { color: #fff; }
.section-lead {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section--dark .section-lead { color: #b6b6bd; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin: 0 auto; }

.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(239,125,24,.30); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(239,125,24,.42); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color:#fff; }
.btn--outline-light:hover { background:#fff; color: var(--ink); }

/* ===================================================================
   PRELOADER  (elevator-shaft loader)
   =================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pl-logo { width: 150px; opacity: 0; transform: translateY(8px); animation: plFade .7s var(--ease) forwards; }
.pl-shaft {
  position: relative;
  width: 4px; height: 90px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pl-car {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0;
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(239,125,24,.18);
  animation: plRide 1.5s var(--ease) infinite;
}
.pl-text {
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  font-size: .68rem; color: var(--grey);
  opacity: 0; animation: plFade .7s .2s var(--ease) forwards;
}
@keyframes plRide {
  0% { bottom: 0; } 50% { bottom: calc(100% - 16px); } 100% { bottom: 0; }
}
@keyframes plFade { to { opacity: 1; transform: none; } }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header.solid {
  background: rgba(255,255,255,.98);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.site-header.scrolled { height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand img { height: 62px; width: auto; transition: height .35s var(--ease); }
.scrolled .brand img { height: 50px; }

/* top contact strip inside header (desktop) */
.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--ink); position: relative; padding: 6px 0;
  transition: color .25s;
}
/* on transparent header over hero, links are white */
.site-header:not(.scrolled):not(.solid) .nav-links a,
.site-header:not(.scrolled):not(.solid) .brand .brand-fallback { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--ink);
}
.site-header:not(.scrolled):not(.solid) .nav-phone { color:#fff; }
.nav-phone svg { width: 18px; height: 18px; color: var(--orange); }

/* burger */
.burger { display: none; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; position: relative; z-index: 1100; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px auto; border-radius: 2px; transition: .3s var(--ease); }
.site-header:not(.scrolled):not(.solid) .burger span { background: #fff; }
.burger.open span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1050;
  background: #fff;
  padding: calc(var(--header-h) + 20px) 28px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 600; font-size: 1.4rem;
  color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a.active { color: var(--orange); }
.mobile-contact { margin-top: 28px; color: var(--ink-soft); font-size: .95rem; line-height: 2; }
.mobile-contact strong { color: var(--ink); }

/* ===================================================================
   HERO + SLIDER
   =================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: calc(var(--header-h) + 70px) 0 90px; }
@media (min-width: 861px) { .hero { align-items: flex-start; padding-top: calc(var(--header-h) + 90px); } }
.slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 9vh) 0 80px;
}
@media (max-width: 860px) { .slide { align-items: flex-start; } }
.slide .container { width: 100%; position: relative; z-index: 3; }
.slide.active { opacity: 1; visibility: visible; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,22,28,.86) 0%, rgba(20,22,28,.62) 42%, rgba(20,22,28,.18) 100%);
}
.slide__zoom { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s linear; }
.slide.active .slide__zoom { transform: scale(1); }

.hero__content { position: relative; z-index: 3; color: #fff; max-width: 720px; }
.hero__eyebrow {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .26em;
  font-size: .8rem; font-weight: 700; color: var(--orange);
  display: inline-block; margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.08; margin-bottom: 22px;
}
.hero p { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* animate text per active slide */
.slide-anim { opacity: 0; transform: translateY(26px); }
.slide.active .hero__content .slide-anim { animation: heroUp .9s var(--ease) forwards; }
.slide.active .hero__content .slide-anim:nth-child(1){ animation-delay:.15s }
.slide.active .hero__content .slide-anim:nth-child(2){ animation-delay:.30s }
.slide.active .hero__content .slide-anim:nth-child(3){ animation-delay:.45s }
.slide.active .hero__content .slide-anim:nth-child(4){ animation-delay:.60s }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* slider controls */
.slider-dots { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 12px; }
.slider-dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; padding: 0; transition: .3s; }
.slider-dots button.active { background: var(--orange); border-color: var(--orange); transform: scale(1.15); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); background: rgba(0,0,0,.15);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: .3s; backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 26px; } .slider-arrow.next { right: 26px; }
.slider-arrow svg { width: 20px; height: 20px; }

.hero__tagline {
  position: absolute; right: 34px; bottom: 36px; z-index: 4;
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  color: rgba(255,255,255,.92); font-size: 1.05rem;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px;
  background: linear-gradient(100deg, #2a2a2c 0%, #3a3a3c 60%, #4a4a4d 100%);
  color: #fff; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(239,125,24,.35), transparent 70%);
}
.page-hero__bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.22; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 620px; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ===================================================================
   GRIDS / CARDS
   =================================================================== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* service card */
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--orange); transition: width .4s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  color: var(--orange); transition: .35s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--orange); color: #fff; transform: rotate(-6deg); }
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.svc-card p { color: var(--ink-soft); font-size: .96rem; }

/* image feature card */
.feature-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.feature-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .7s var(--ease); }
.feature-card:hover img { transform: scale(1.06); }
.feature-card__body {
  position: absolute; inset: auto 0 0 0; padding: 28px 26px;
  background: linear-gradient(0deg, rgba(20,20,24,.92), rgba(20,20,24,.0));
  color: #fff;
}
.feature-card__body h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.feature-card__body p { color: rgba(255,255,255,.82); font-size: .92rem; }

/* split image+text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 480px; object-fit: cover; }
.split__media .badge {
  position: absolute; left: 24px; bottom: 24px; background: var(--orange); color: #fff;
  padding: 14px 22px; border-radius: 12px; font-family: var(--font-head); box-shadow: var(--shadow);
}
.split__media .badge strong { display: block; font-size: 1.8rem; line-height: 1; }
.split__media .badge span { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 20px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: .98rem; }
.checklist li svg { flex: none; width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--orange); line-height: 1; }
.stat__label { margin-top: 8px; font-size: .92rem; color: var(--ink-soft); font-family: var(--font-head); font-weight:600; }
.section--dark .stat__label { color: #b6b6bd; }

/* ---------- process steps ---------- */
.process { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 0 8px; }
.step__circle {
  width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--orange); position: relative; transition: .35s var(--ease);
}
.step__circle svg { width: 34px; height: 34px; }
.step::after { counter-increment: step; content: "0" counter(step); position: absolute; top: -6px; left: 50%; transform: translateX(28px); font-family: var(--font-head); font-weight: 800; font-size: .8rem; color: var(--orange); }
.step:hover .step__circle { background: var(--orange); color: #fff; transform: translateY(-4px); box-shadow: 0 12px 26px rgba(239,125,24,.3); }
.step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { font-size: .85rem; color: var(--ink-soft); }
/* connector line */
.process { position: relative; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(110deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.08); }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .cta-band__text { position: relative; z-index: 2; }

/* ---------- news cards ---------- */
.news-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; transition:.35s var(--ease); display:flex; flex-direction:column; }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.news-card__img { height: 210px; overflow:hidden; }
.news-card__img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.news-card:hover .news-card__img img { transform: scale(1.07); }
.news-card__body { padding: 26px 24px 30px; display:flex; flex-direction:column; flex:1; }
.news-date { font-family: var(--font-head); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color: var(--orange); margin-bottom: 12px; }
.news-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.news-card p { color: var(--ink-soft); font-size:.95rem; flex:1; }
.news-card .more { margin-top: 18px; font-family:var(--font-head); font-weight:600; color: var(--orange); display:inline-flex; align-items:center; gap:6px; }
.news-card .more svg { width:16px; height:16px; transition: transform .3s; }
.news-card:hover .more svg { transform: translateX(4px); }

/* ---------- timeline ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before { content:""; position:absolute; left: 28px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 40px 80px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position:absolute; left: 18px; top: 2px; width: 22px; height:22px; border-radius:50%; background:#fff; border:3px solid var(--orange); }
.tl-year { font-family: var(--font-head); font-weight:800; color: var(--orange); font-size: 1.15rem; margin-bottom:4px; }
.tl-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.tl-item p { color: var(--ink-soft); font-size:.96rem; }

/* ---------- partners / values ---------- */
.value-list { display:grid; gap: 18px; }
.value-item { display:flex; gap:16px; align-items:flex-start; padding: 22px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); transition:.3s var(--ease); }
.value-item:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.value-item .vi-icon { flex:none; width:48px; height:48px; border-radius:12px; background:var(--orange-soft); color:var(--orange); display:flex; align-items:center; justify-content:center; }
.value-item .vi-icon svg { width:24px; height:24px; }
.value-item h4 { font-size:1.05rem; margin-bottom:4px; }
.value-item p { color: var(--ink-soft); font-size:.93rem; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display:grid; gap: 18px; }
.info-card { display:flex; gap:18px; align-items:flex-start; padding: 24px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.info-card .ic-icon { flex:none; width:50px; height:50px; border-radius:12px; background:var(--orange); color:#fff; display:flex; align-items:center; justify-content:center; }
.info-card .ic-icon svg { width:24px; height:24px; }
.info-card h4 { font-size:1.02rem; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size:.96rem; }
.info-card a:hover { color: var(--orange); }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-family: var(--font-head); font-weight:600; font-size:.88rem; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 16px; border:1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background:#fff;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,125,24,.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color:#e03b3b; box-shadow:0 0 0 3px rgba(224,59,59,.12); }
.field .err { display:none; color:#e03b3b; font-size:.82rem; margin-top:6px; }
.field.invalid .err { display:block; }
.checkbox { display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color:var(--ink-soft); }
.checkbox input { width:auto; margin-top:3px; }
.form-note { font-size:.84rem; color: var(--grey); margin-top: 14px; }
.form-status { margin-top: 18px; padding: 14px 18px; border-radius: 10px; font-size:.94rem; display:none; }
.form-status.show { display:block; }
.form-status.ok { background:#e8f7ec; color:#1f7a3a; border:1px solid #bfe7c9; }
.form-status.err { background:#fdeaea; color:#b42525; border:1px solid #f4caca; }

.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); }
.map-embed iframe { width:100%; height: 420px; border:0; display:block; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--bg-dark); color: #b9b9c0; padding: 70px 0 0; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .f-logo { font-family: var(--font-head); font-weight:800; font-size:1.6rem; color:#fff; letter-spacing:-.02em; }
.footer-brand .f-logo span { color: var(--orange); }
.footer-brand .f-sub { font-family: var(--font-head); text-transform:uppercase; letter-spacing:.2em; font-size:.7rem; color: var(--orange); margin-top:-4px; margin-bottom:18px; }
.footer-brand p { font-size:.95rem; color:#9a9aa2; max-width: 320px; }
.footer-col h4 { color:#fff; font-size:1rem; margin-bottom: 20px; }
.footer-col ul { display:grid; gap:12px; }
.footer-col a, .footer-col li { color:#9a9aa2; font-size:.94rem; transition: color .25s; }
.footer-col a:hover { color: var(--orange); }
.footer-col .with-icon { display:flex; gap:10px; align-items:flex-start; }
.footer-col .with-icon svg { flex:none; width:18px; height:18px; color: var(--orange); margin-top:3px; }
.social { display:flex; gap:12px; margin-top:18px; }
.social a { width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; color:#cfcfd5; transition:.3s; }
.social a:hover { background: var(--orange); color:#fff; transform: translateY(-3px); }
.social svg { width:18px; height:18px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding: 22px 0; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:.85rem; color:#7d7d85; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- floating phone button (mobile) ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color:#fff; display:none; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(239,125,24,.5);
  animation: pulse 2.2s infinite;
}
.float-call svg { width: 24px; height:24px; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(239,125,24,.5);} 70%{ box-shadow:0 0 0 16px rgba(239,125,24,0);} 100%{ box-shadow:0 0 0 0 rgba(239,125,24,0);} }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(3,1fr); gap: 28px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split__media img { height: 400px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .burger { display: block; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { padding: 40px 30px; text-align: center; justify-content: center; }
  .float-call { display: flex; }
  .hero__tagline { display: none; }
  .slider-arrow { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .form, .form-row { grid-template-columns: 1fr; }
  .form { padding: 26px 20px; }
  .form-row { display:block; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92vh; }
  .cta-band { padding: 34px 22px; }
  .section { padding: 54px 0; }
}

/* ---------- smaller header CTA + language switcher ---------- */
.nav-cta .btn--primary { padding: 10px 20px; font-size: .86rem; }
.lang {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  color: var(--ink); padding: 6px 10px; border: 1px solid var(--line); border-radius: 50px;
  transition: all .25s var(--ease);
}
.lang:hover { border-color: var(--orange); color: var(--orange); }
.lang .flag { width: 22px; height: 15px; border-radius: 3px; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.06); display:block; }
.lang .flag svg { width: 100%; height: 100%; display: block; }
.mobile-menu .lang { align-self: flex-start; margin-top: 22px; }

/* ---------- hero scroll cue ---------- */
.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: #fff; opacity: .9; animation: cueBob 2.4s var(--ease) infinite;
}
.scroll-cue__mouse { width: 25px; height: 40px; border: 2px solid rgba(255,255,255,.75); border-radius: 14px; position: relative; }
.scroll-cue__mouse span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.7s var(--ease) infinite; }
.scroll-cue__txt { font-family: var(--font-head); font-weight: 600; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; }
@keyframes scrollDot { 0%{ opacity: 0; transform: translate(-50%,0);} 35%{ opacity: 1;} 75%{ opacity: 0; transform: translate(-50%,12px);} 100%{ opacity:0; } }
@keyframes cueBob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,6px);} }

@media (max-width: 860px) {
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}
