/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1B3A2D;
  --primary-mid:  #254d3c;
  --primary-deep: #122a20;
  --accent:       #D4A843;
  --accent-dark:  #b8902e;
  --accent-light: rgba(212,168,67,0.12);
  --bg:           #FAFAF8;
  --bg2:          #F3F3EF;
  --bg3:          #EAEAE4;
  --dark-bg:      #1B3A2D;
  --text:         #2e3830;
  --muted:        #6b7d74;
  --border:       #DFE0D8;
  --white:        #ffffff;
  --radius:       8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(27,58,45,0.07);
  --shadow-md:    0 8px 32px rgba(27,58,45,0.11);
  --shadow-lg:    0 20px 60px rgba(27,58,45,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid var(--accent);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(27,58,45,0.05);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-block { width: 100%; text-align: center; }

/* ============================================================
   COOKIE BANNER & MODAL
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  background: var(--primary);
  color: #fff;
  z-index: 9999;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}
.cookie-content { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6; }
.cookie-content a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 480px; width: 92%;
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 26px; color: var(--primary); }
.cookie-option { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option label {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; color: var(--primary); margin-bottom: 5px;
}
.cookie-option p { font-size: 13px; color: var(--muted); padding-left: 26px; line-height: 1.55; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(27,58,45,0.13);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--primary);
  flex-shrink: 0; white-space: nowrap; letter-spacing: -0.02em;
}
.logo-dot { color: var(--accent); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 2px; list-style: none; }
.main-nav a {
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--bg2); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  font-size: 13px; font-weight: 700; color: var(--primary);
  white-space: nowrap;
}
.header-actions .btn-primary { padding: 9px 20px; font-size: 13px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 23px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 18px 28px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 11px 14px;
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius); color: var(--text);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--primary); }
.mobile-menu .btn-primary { margin-top: 10px; text-align: center; display: block; }

/* ============================================================
   PROCESS BANNER (top section - before hero)
   ============================================================ */
.process-banner {
  background: var(--primary);
  padding: 100px 0;
}
.process-banner .section-head { margin-bottom: 60px; }
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(212,168,67,0.3);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212,168,67,0.15);
  border: 2px solid rgba(212,168,67,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: var(--accent);
  margin: 0 auto 22px;
  transition: background 0.3s;
}
.process-step:hover .process-step-num {
  background: var(--accent);
  color: var(--primary);
}
.process-step h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(212,168,67,0.35);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 22px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-left h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-accent { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hstat strong { display: block; font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.hstat span { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 3px; display: block; }
.hstat-divider { width: 1px; height: 44px; background: var(--border); }

/* Calculator Card */
.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.calc-card-header { margin-bottom: 24px; }
.calc-card-header h3 {
  font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 4px;
}
.calc-card-header p { font-size: 13px; color: var(--muted); }

.calc-field { margin-bottom: 18px; }
.calc-field label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.calc-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--primary);
  background: var(--bg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7d74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calc-field select:focus { outline: none; border-color: var(--accent); }

.calc-result-box {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.calc-result-box .calc-label {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.calc-result-box .calc-price {
  font-size: 28px; font-weight: 800; color: var(--accent);
}
.calc-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ============================================================
   TRUSTED BRANDS
   ============================================================ */
.trusted {
  padding: 52px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.logo-pill {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.logo-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg2);
}

/* ============================================================
   SECTION HEADING UTILITY
   ============================================================ */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { font-size: 16px; color: var(--muted); max-width: 540px; margin: 16px auto 0; line-height: 1.7; }
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--accent-dark);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.section-head.light .section-tag {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.section-head h2,
.why-us-left h2,
.contact-info-col h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--primary);
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--accent);
}
.service-icon {
  width: 54px; height: 54px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 14px; font-weight: 700; color: var(--accent-dark);
  display: inline-block;
  background-image: linear-gradient(var(--accent-dark), var(--accent-dark));
  background-size: 0 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.25s ease;
}
.service-link:hover { background-size: 100% 2px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { padding: 100px 0; background: var(--bg2); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-left .section-tag { display: inline-block; }
.why-us-left h2 { margin: 16px 0 18px; }
.why-us-left > p { font-size: 15px; color: var(--muted); margin-bottom: 36px; max-width: 380px; line-height: 1.75; }
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.why-check svg { color: var(--accent); }
.why-item h4 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.why-us-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg3);
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.why-img:hover img { transform: scale(1.04); }
.why-img-tall { grid-row: 1 / 3; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-stars { font-size: 17px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card blockquote {
  font-size: 14px; color: var(--text);
  line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 800; color: var(--primary); }
.testi-author span { font-size: 13px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: rgba(212,168,67,0.5); }
.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(212,168,67,0.12);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; gap: 18px;
  cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-question span { font-size: 15px; font-weight: 700; color: var(--primary); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; color: var(--accent-dark);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer { display: none; padding: 0 24px 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col .section-tag { display: inline-block; }
.contact-info-col h2 { margin: 16px 0 18px; }
.contact-info-col > p { font-size: 15px; color: var(--muted); margin-bottom: 34px; line-height: 1.75; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.cd-item { display: flex; gap: 15px; align-items: flex-start; }
.cd-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent-dark);
}
.cd-item strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }
.cd-item span { font-size: 14px; color: var(--text); line-height: 1.6; }
.cd-item a { color: var(--accent-dark); }
.cd-item a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.contact-form-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-form-box h3 { font-size: 19px; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-policy { margin: 20px 0; }
.policy-label {
  display: flex; gap: 10px; cursor: pointer;
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.policy-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.policy-label a { color: var(--accent-dark); text-decoration: underline; }
.contact-form-box .btn-primary { padding: 15px; font-size: 15px; }
.form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: rgba(27,58,45,0.08);
  border: 1px solid rgba(27,58,45,0.2);
  border-radius: var(--radius);
  font-size: 14px; color: var(--primary);
  font-weight: 600; text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 72px 28px 56px;
  max-width: 1160px; margin: 0 auto;
}
.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.footer-logo-row span { color: var(--accent); }
.footer-brand-col p { font-size: 14px; line-height: 1.7; max-width: 290px; color: rgba(255,255,255,0.6); }
.footer-disclaimer { font-size: 12px !important; color: rgba(255,255,255,0.3) !important; margin-top: 14px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  max-width: 1160px; margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.cookie-pref-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-pref-btn:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-us-grid { gap: 48px; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner .calc-card { max-width: 460px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-right { grid-template-rows: 240px 180px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 64px 0; }
  .process-banner { padding: 72px 0; }
  .services { padding: 72px 0; }
  .why-us { padding: 72px 0; }
  .testimonials { padding: 72px 0; }
  .faq { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps-row { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .hstat-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
  .why-us-right { grid-template-columns: 1fr; grid-template-rows: 200px 200px 160px; }
  .why-img-tall { grid-row: auto; }
  .contact-form-box { padding: 28px 22px; }
}
