/*
 Theme Name:   Mec. Дочерняя тема
 Author:       НаВиду
 Author URI:   https://marketingwedo.ru/
 Template:     gervent-main
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/


/* ===== FONTS ===== */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/gervent/assets/fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/gervent/assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/gervent/assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/gervent/assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }

/* ===== SECTIONS ===== */
.section-light { background: #f8fafc; }
.section-dark  { background: #0f172a; }
.section-orange { background: linear-gradient(135deg, #ea580c, #dc2626); }

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.hero-section {
	margin-top: -30px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-link {
  color: #fff; text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
#navbar.scrolled .nav-link { color: #374151; text-shadow: none; }
.nav-link:hover { color: #ea580c !important; }
.nav-btn-nav {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff !important; text-decoration: none;
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s; text-shadow: none !important;
  box-shadow: 0 4px 16px rgba(234,88,12,0.35);
}
.nav-btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,0.45); }

/* Burger */
.burger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
#navbar.scrolled .burger span { background: #1e293b; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { background: #fff; border-top: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.mobile-link {
  display: block; padding: 13px 0; color: #374151; text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.2s;
}
.mobile-link:hover { color: #ea580c; }
.mobile-link-cta {
  margin-top: 12px; background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff !important; text-align: center; border-radius: 10px;
  padding: 13px 0; border-bottom: none; font-weight: 700;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; padding-bottom: 0; position: relative;
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.35);
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(30,41,59,0.5) 60%, rgba(234,88,12,0.2) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
  padding: 80px 0 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(234,88,12,0.2); border: 1px solid rgba(234,88,12,0.5);
  color: #fb923c; padding: 6px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.05; color: #fff; margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, #fb923c, #f97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.8);
  margin-bottom: 28px; max-width: 520px; font-weight: 400;
}
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; }
.trust-icon { font-size: 1rem; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; text-decoration: none; padding: 14px 32px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,88,12,0.5); }
.btn-call {
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.4);
  color: #fff; text-decoration: none; padding: 14px 28px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-call:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* Hero Form */
.hero-form-wrap { position: relative; z-index: 2; }
.hero-form-card {
  background: #fff; border-radius: 20px;
  padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-title { font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.hero-form-sub { font-size: 0.8rem; color: #64748b; margin-bottom: 20px; }
.hero-form { display: flex; flex-direction: column; gap: 14px; }
.hf-group { display: flex; flex-direction: column; gap: 5px; }
.hf-group label { font-size: 0.75rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.04em; }
.hf-group input, .hf-group select {
  background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: 8px; padding: 10px 14px;
  color: #1e293b; font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.hf-group input:focus, .hf-group select:focus { border-color: #ea580c; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hf-submit {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; border: none; padding: 14px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(234,88,12,0.35);
}
.hf-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,0.45); }
.hf-note { font-size: 0.72rem; color: #94a3b8; text-align: center; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 3; }
.hero-wave svg { width: 100%; display: block; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 40px 0; border-bottom: 1px solid #e2e8f0; }
.stats-grid {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-block { text-align: center; padding: 0 48px; }
.stat-num {
  display: block; font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.82rem; color: #64748b; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: #e2e8f0; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: rgba(234,88,12,0.1); border: 1px solid rgba(234,88,12,0.25);
  color: #ea580c; padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title-dark { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #0f172a; margin-bottom: 14px; line-height: 1.2; }
.section-title-light { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.section-desc-dark { font-size: 1rem; color: #64748b; max-width: 580px; margin: 0 auto; }
.section-desc-light { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.service-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f1f5f9;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.service-img-wrap { position: relative; height: 200px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.5));
}
.service-body { padding: 24px; }
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-body h3 { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.service-body p { font-size: 0.875rem; color: #64748b; margin-bottom: 14px; line-height: 1.6; }
.service-list { list-style: none; margin-bottom: 16px; }
.service-list li { font-size: 0.82rem; color: #475569; padding: 3px 0; }
.service-link {
  color: #ea580c; text-decoration: none; font-size: 0.875rem; font-weight: 700;
  transition: gap 0.2s; display: inline-block;
}
.service-link:hover { color: #dc2626; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; }
.about-badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; border-radius: 16px; padding: 16px 20px;
  text-align: center; box-shadow: 0 8px 24px rgba(234,88,12,0.4);
}
.abf-num { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.abf-text { font-size: 0.75rem; font-weight: 600; opacity: 0.9; line-height: 1.3; }
.about-text { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.75; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.about-feat { display: flex; align-items: flex-start; gap: 14px; }
.af-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.af-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.af-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.btn-primary-dark {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; text-decoration: none; padding: 14px 32px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}
.btn-primary-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,88,12,0.5); }

/* ===== WHY US ===== */
.utp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.utp-card {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 18px; padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.utp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); border-color: rgba(234,88,12,0.2); }
.utp-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.utp-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.utp-card p { font-size: 0.875rem; color: #64748b; line-height: 1.65; }

/* ===== PROCESS ===== */
.process-steps {
  display: flex; align-items: flex-start;
  gap: 16px; flex-wrap: wrap; justify-content: center;
}
.process-step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center;
}
.step-num {
  font-size: 3rem; font-weight: 700;
  color: rgba(234,88,12,0.15); line-height: 1; margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.process-arrow {
  font-size: 1.5rem; color: rgba(234,88,12,0.5);
  align-self: center; margin-top: -20px; flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px;
}
.review-card {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 18px; padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.875rem; color: #475569; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #e2e8f0; }
.review-name { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.review-loc { font-size: 0.75rem; color: #94a3b8; }
.reviews-logos {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.review-platform {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 50px;
  padding: 8px 20px; font-size: 0.85rem; font-weight: 700; color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== AREAS ===== */
.areas-inner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.areas-text { flex: 1; min-width: 240px; }
.areas-text h2 { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.areas-text p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.areas-tags { display: flex; gap: 10px; flex-wrap: wrap; flex: 2; }
.areas-tags span {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 7px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.faq-item.open { border-color: rgba(234,88,12,0.35); box-shadow: 0 4px 16px rgba(234,88,12,0.1); }
.faq-q {
  width: 100%; background: none; border: none; color: #0f172a;
  font-size: 0.95rem; font-weight: 600; padding: 20px 24px;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Montserrat', sans-serif; transition: color 0.2s;
}
.faq-q:hover { color: #ea580c; }
.faq-arrow { font-size: 0.72rem; color: #94a3b8; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: #ea580c; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.875rem; color: #64748b; line-height: 1.75; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== QUOTE FORM ===== */
.quote-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 48px;
}
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.qf-group { display: flex; flex-direction: column; gap: 7px; }
.qf-group label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.qf-group input,
.qf-group select,
.qf-group textarea {
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.qf-group input::placeholder, .qf-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.qf-group input:focus, .qf-group select:focus, .qf-group textarea:focus { border-color: #ea580c; }
.qf-group select option { background: #1e293b; color: #fff; }
.qf-group textarea { resize: vertical; }
.qf-checks { display: flex; gap: 16px; flex-wrap: wrap; }
.qf-check {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 0.875rem; cursor: pointer;
}
.qf-check input { accent-color: #ea580c; width: 16px; height: 16px; }
.qf-submit {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; border: none; padding: 16px 32px;
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(234,88,12,0.4);
}
.qf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,88,12,0.5); }
.qf-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }
.form-success {
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
  color: #34d399; padding: 14px 20px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
}
.form-success.hidden { display: none; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(234,88,12,0.2);
  border-bottom: 1px solid rgba(234,88,12,0.2);
  padding: 48px 0;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-text h2 { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-call {
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.2);
  color: #fff; text-decoration: none; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: background 0.2s;
}
.cta-call:hover { background: rgba(255,255,255,0.14); }
.cta-btn {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff; text-decoration: none; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(234,88,12,0.35);
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,0.45); }

/* ===== FOOTER ===== */
.footer { background: #020617; padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 0.85rem; color: #475569; line-height: 1.65; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.footer-contact a { color: #64748b; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact a:hover { color: #ea580c; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { color: #475569; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: #ea580c; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #334155; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #334155; text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-legal a:hover { color: #ea580c; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .hero-form-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .utp-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-grid { gap: 0; }
  .stat-block { padding: 16px 24px; }
  .stat-divider { display: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: 0; }
  .utp-grid { grid-template-columns: 1fr; }
  .qf-row { grid-template-columns: 1fr; }
  .quote-wrap { padding: 28px 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .areas-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-call { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hf-row { grid-template-columns: 1fr; }
}
