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

:root {
  --orange: #D4111E;
  --orange-dark: #b00d18;
  --orange-light: #FFD100;
  --dark: #2D2D2D;
  --dark-2: #1a1a1a;
  --gray: #374151;
  --gray-mid: #6b7280;
  --gray-light: #d1d5db;
  --bg: #f8f8f8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark { flex-shrink: 0; }

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
}
.logo-text strong { font-weight: 800; }
.navbar.scrolled .logo-text { color: var(--dark); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.navbar-nav a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.navbar.scrolled .navbar-nav a { color: var(--gray); }
.navbar.scrolled .navbar-nav a:hover { color: var(--orange); background: #fef2f2; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-phone:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.navbar.scrolled .btn-phone { color: var(--gray); }
.navbar.scrolled .btn-phone:hover { color: var(--orange); background: #fef2f2; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(212,17,30,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,17,30,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-light);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-menu a:hover, .mobile-menu a:active { background: #fef2f2; color: var(--orange); }
.mobile-menu .mobile-phone {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.82) 0%, rgba(45,45,45,0.55) 60%, rgba(212,17,30,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,17,30,0.2);
  border: 1px solid rgba(212,17,30,0.5);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(212,17,30,0.45);
  transition: all var(--transition);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,17,30,0.55);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 32px;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 999px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}

/* ============================================================
   SECTIONS COMMONS
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: #fef2f2;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 96px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.06s; }
.service-card:nth-child(5) { transition-delay: 0.12s; }
.service-card:nth-child(6) { transition-delay: 0.18s; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  grid-row: span 1;
  border: 2px solid var(--orange);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.service-body {
  padding: 24px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 14px;
}
.service-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

.services-extra {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.extra-label { font-size: 14px; color: var(--gray-mid); font-weight: 500; }
.extra-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: default;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-float {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(212,17,30,0.4);
}
.float-number {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.float-label { font-size: 11px; font-weight: 500; margin-top: 4px; opacity: 0.95; }

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.4s ease;
}
.about-feature.visible { opacity: 1; transform: translateX(0); }
.about-feature:nth-child(2) { transition-delay: 0.1s; }
.about-feature:nth-child(3) { transition-delay: 0.2s; }
.about-feature:nth-child(4) { transition-delay: 0.3s; }

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-feature span { font-size: 14px; color: var(--gray-mid); }

.about-cta { margin-top: 8px; }

/* ============================================================
   NUMBERS
============================================================ */
.numbers {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.number-card {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.number-card:last-child { border-right: none; }
.number-card.visible { opacity: 1; transform: translateY(0); }
.number-card:nth-child(2) { transition-delay: 0.1s; }
.number-card:nth-child(3) { transition-delay: 0.2s; }
.number-card:nth-child(4) { transition-delay: 0.3s; }

.number-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.number-suffix {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--orange-light);
  margin-left: 4px;
}
.number-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  line-height: 1.4;
}

/* ============================================================
   GALLERY
============================================================ */
.realisations {
  padding: 96px 0;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.4s ease;
}
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-item:nth-child(4) { transition-delay: 0.05s; }
.gallery-item:nth-child(5) { transition-delay: 0.12s; }
.gallery-item:nth-child(6) { transition-delay: 0.2s; }

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  width: fit-content;
}
.gallery-overlay p { font-size: 14px; color: var(--white); font-weight: 500; }

.gallery-cta { text-align: center; margin-top: 40px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 96px 0;
  background: var(--white);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:nth-child(3) { transition-delay: 0.15s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }
.process-step:nth-child(7) { transition-delay: 0.45s; }

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: #fef2f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  border-top: 2px dashed var(--gray-light);
  margin-top: 40px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 96px 0;
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
}
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card.featured-review {
  border-color: var(--orange);
  position: relative;
}
.review-card.featured-review::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: 'Sora', serif;
  font-size: 80px;
  color: var(--orange);
  line-height: 1;
  opacity: 0.15;
}

.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.review-author span { font-size: 12px; color: var(--gray-mid); }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.summary-score { text-align: center; flex-shrink: 0; }
.score-big { font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 800; color: var(--dark); line-height: 1; }
.score-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin: 4px 0; }
.score-count { font-size: 12px; color: var(--gray-mid); }

.summary-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-row > span:first-child { font-size: 13px; color: var(--gray-mid); width: 32px; flex-shrink: 0; }
.bar-row > span:last-child { font-size: 13px; color: var(--gray-mid); width: 32px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 6px; background: #f0f0f0; border-radius: 999px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 999px; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.85) 0%, rgba(212,17,30,0.45) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(212,17,30,0.5);
  transition: all var(--transition);
}
.btn-cta-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 96px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.contact-intro { font-size: 16px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.contact-item span, .contact-item p { font-size: 14px; color: var(--gray-mid); line-height: 1.5; }
.contact-item a { color: var(--orange); font-weight: 600; font-size: 15px; }
.contact-item a:hover { text-decoration: underline; }

.contact-map { border-radius: 12px; overflow: hidden; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,17,30,0.12);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.form-check label { font-size: 13px; color: var(--gray-mid); line-height: 1.5; cursor: pointer; }

.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(212,17,30,0.35);
  transition: all var(--transition);
}
.btn-form-submit:hover:not(:disabled) {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(212,17,30,0.45);
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.85); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 280px; margin-bottom: 20px; }

.footer-certifs { display: flex; gap: 8px; flex-wrap: wrap; }
.certif-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--orange); }

.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.footer-contact-info svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-info a { color: var(--orange-light); font-weight: 600; }
.footer-contact-info a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212,17,30,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 100;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 540px; margin: 0 auto; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-card { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .number-card:nth-child(2) { border-right: none; }
  .number-card:nth-child(3), .number-card:nth-child(4) { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 0; }
  .hero-stat { padding: 12px 0; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .hero-content { max-width: 100%; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 32px; border-top: none; border-left: 2px dashed var(--gray-light); margin-top: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; padding: 24px; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge-float { left: 12px; top: 12px; }
  .trust-inner { gap: 20px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .trust-item { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-outline { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-cta-primary, .btn-cta-outline { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { display: none; }
}
