/* =====================================================
   KRTKOSERVIS - Main Stylesheet
   Drain Cleaning Service Prague
   Color Palette: Green (#16a34a) + Orange (#f97316)
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  /* Primary - Green (Clean Pipes) */
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --primary-pale: #dcfce7;
  --primary-gradient: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);

  /* Accent - Orange (CTA/Emergency) */
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;
  --accent-pale: #ffedd5;
  --accent-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);

  /* Semantic Colors */
  --teal: #0d9488;
  --green: #16a34a;
  --blue: #2563eb;
  --orange: #ea580c;
  --red: #dc2626;
  --purple: #7c3aed;

  /* Emergency Red */
  --emergency: #dc2626;
  --emergency-light: #fef2f2;
  --emergency-dark: #b91c1c;

  /* Success */
  --success: #10b981;
  --success-light: #d1fae5;

  /* Water Blue */
  --water: #0891b2;
  --water-light: #cffafe;
  --water-dark: #0e7490;

  /* Neutrals */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Dark Theme */
  --dark-bg: #0c1a0f;
  --dark-card: #162419;
  --dark-border: #2d4a35;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-padding: 24px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-green: 0 10px 30px rgba(22, 163, 74, 0.3);
  --shadow-orange: 0 10px 30px rgba(249, 115, 22, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1400px;
  --site-max-width: 1920px;
  --site-min-width: 375px;
}

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

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  min-width: var(--site-min-width);
  max-width: var(--site-max-width);
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* =====================================================
   HEADER - Unique Pipeline Theme Design
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

/* Emergency Top Bar */
.header__emergency {
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
  padding: 6px 0;
  position: relative;
  overflow: hidden;
}

.header__emergency::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: emergencyShine 3s infinite;
}

@keyframes emergencyShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header__emergency-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header__emergency-pulse {
  width: 8px;
  height: 8px;
  background: #fef08a;
  border-radius: 50%;
  animation: emergencyPulse 1.5s infinite;
  box-shadow: 0 0 10px #fef08a;
}

@keyframes emergencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.header__emergency img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.header__emergency span {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.header__emergency a {
  color: #fef08a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__emergency a:hover {
  color: var(--white);
  text-decoration: underline;
}

.header__emergency-badge {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Header */
.header__main {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Logo with Pipe Design */
.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header__logo-pipe {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid #4b5563;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

.header__logo-pipe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(180deg, #1f2937 0%, #111827 50%, #1f2937 100%);
  transform: translateY(-50%);
  border-top: 2px solid #374151;
  border-bottom: 2px solid #374151;
}

.header__logo-flow {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: translateY(-50%);
  border-radius: 4px;
  animation: pipeFlow 2s infinite linear;
  box-shadow: 0 0 10px var(--primary-light);
}

@keyframes pipeFlow {
  0% { left: -20px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 40px; opacity: 0; }
}

.header__logo-content {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.header__logo-name strong {
  color: var(--accent-light);
  font-weight: 800;
}

.header__logo-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 2px;
}

/* Center Navigation */
.header__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition-fast);
}

.header__menu-link::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transform: translateX(-50%);
  transition: var(--transition-base);
  border-radius: 2px;
}

.header__menu-link:hover {
  background: rgba(255,255,255,0.1);
}

.header__menu-link:hover::before {
  width: calc(100% - 32px);
}

.header__menu-link--accent {
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 16px;
}

.header__menu-link--accent::before {
  display: none;
}

.header__menu-link--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.header__menu-link--accent img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* Action Zone */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__call:hover {
  background: rgba(255,255,255,0.2);
}

.header__call-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

.header__call-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header__call-text {
  display: flex;
  flex-direction: column;
}

.header__call-text small {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.header__call-text strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.header__order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.header__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.header__order img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
}

.header__order:hover img {
  transform: translateX(3px);
}

/* Mobile Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.header__burger:hover {
  background: rgba(255,255,255,0.2);
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.header__drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0a3d1f 100%);
  z-index: 1001;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.header__drawer.active {
  right: 0;
}

.header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header__drawer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.header__drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.header__drawer-close:hover {
  background: rgba(255,255,255,0.2);
}

.header__drawer-close img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.header__drawer-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.header__drawer-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.header__drawer-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.header__drawer-cta {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}

.header__drawer-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--accent);
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__drawer-phone:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

.header__drawer-phone img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.header__drawer-phone div {
  display: flex;
  flex-direction: column;
}

.header__drawer-phone small {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.header__drawer-phone strong {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: var(--transition-fast);
}

.header__drawer-btn:hover {
  background: rgba(255,255,255,0.2);
}

.header__drawer-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header__drawer-info {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__drawer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
}

.header__drawer-badge img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Overlay */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header Responsive */
@media (max-width: 1200px) {
  .header__menu-list {
    gap: 4px;
  }

  .header__menu-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header__call-text {
    display: none;
  }

  .header__call {
    padding: 8px;
    border-radius: 50%;
  }
}

@media (max-width: 1024px) {
  .header__menu,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__container {
    height: 64px;
  }
}

@media (max-width: 768px) {
  .header__emergency-badge {
    display: none;
  }

  .header__emergency-inner {
    gap: 8px;
  }

  .header__emergency span {
    font-size: 12px;
  }

  .header__drawer {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .header__emergency {
    padding: 6px 0;
  }

  .header__emergency-pulse {
    display: none;
  }

  .header__emergency img {
    width: 14px;
    height: 14px;
  }

  .header__container {
    height: 60px;
    padding: 0 16px;
  }

  .header__logo-pipe {
    width: 40px;
    height: 40px;
  }

  .header__logo-name {
    font-size: 18px;
  }

  .header__logo-tagline {
    display: none;
  }

  .header__burger {
    width: 40px;
    height: 40px;
  }
}

/* =====================================================
   HERO SECTION - Emergency Response Design
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Animated Background */
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f4a2c 0%, #1a5d38 30%, #0d3d24 70%, #082818 100%);
}

.hero__gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-5%, 5%) scale(1.1); opacity: 0.8; }
}

/* Animated Pipes */
.hero__pipes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.1;
}

.hero__pipe {
  position: absolute;
  background: linear-gradient(90deg, #4b5563, #374151);
  border-radius: 8px;
}

.hero__pipe--1 {
  top: 20%;
  left: -10%;
  width: 60%;
  height: 20px;
  transform: rotate(-5deg);
}

.hero__pipe--2 {
  top: 50%;
  right: -5%;
  width: 40%;
  height: 16px;
  transform: rotate(8deg);
}

.hero__pipe--3 {
  bottom: 25%;
  left: 10%;
  width: 50%;
  height: 24px;
  transform: rotate(-3deg);
}

.hero__pipe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 60px;
  height: 60%;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), transparent);
  transform: translateY(-50%);
  border-radius: 4px;
  animation: pipeFlowHero 4s linear infinite;
}

.hero__pipe--2::after { animation-delay: 1.5s; }
.hero__pipe--3::after { animation-delay: 3s; }

@keyframes pipeFlowHero {
  0% { left: -20%; }
  100% { left: 120%; }
}

/* Water Drops */
.hero__drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__drops span {
  position: absolute;
  width: 8px;
  height: 12px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.6), rgba(96, 165, 250, 0.2));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall 3s ease-in infinite;
  opacity: 0;
}

.hero__drops span:nth-child(1) { left: 15%; animation-delay: 0s; }
.hero__drops span:nth-child(2) { left: 35%; animation-delay: 0.8s; }
.hero__drops span:nth-child(3) { left: 55%; animation-delay: 1.6s; }
.hero__drops span:nth-child(4) { left: 75%; animation-delay: 2.4s; }
.hero__drops span:nth-child(5) { left: 90%; animation-delay: 0.4s; }

@keyframes dropFall {
  0% { top: -5%; opacity: 0; transform: scale(0.5); }
  10% { opacity: 0.8; transform: scale(1); }
  90% { opacity: 0.3; }
  100% { top: 105%; opacity: 0; transform: scale(0.8); }
}

/* Container */
.hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Main Content */
.hero__main {
  color: var(--white);
}

/* Emergency Tag */
.hero__emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__emergency-icon {
  width: 36px;
  height: 36px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emergencyPulseHero 2s infinite;
}

@keyframes emergencyPulseHero {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
}

.hero__emergency-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.hero__emergency-text {
  font-size: 14px;
  font-weight: 600;
  color: #fca5a5;
}

.hero__emergency-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #dc2626;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__emergency-dot {
  width: 6px;
  height: 6px;
  background: #fef08a;
  border-radius: 50%;
  animation: liveDot 1s infinite;
}

@keyframes liveDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Headline */
.hero__headline-wrapper {
  margin-bottom: 24px;
}

.hero__headline-question {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.hero__headline {
  margin: 0 0 16px;
}

.hero__headline-main {
  display: block;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
}

.hero__headline-sub {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
}

.hero__headline-sub em {
  font-style: normal;
  color: var(--accent-light);
  position: relative;
}

.hero__headline-sub em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero__headline-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.hero__headline-location img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Subtitle */
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* CTA Group */
.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  transition: var(--transition-base);
  text-decoration: none;
}

.hero__cta--call {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.hero__cta--call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.hero__cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__cta-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.hero__cta-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero__cta-content small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.hero__cta-content strong {
  font-size: 18px;
  font-weight: 700;
}

.hero__cta--form {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.hero__cta--form:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.hero__cta--form img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Trust Badges */
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.hero__trust-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* Visual Card */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image Wrapper */
.hero__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.1);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

.hero__image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.hero__image-wrapper:hover .hero__image {
  transform: scale(1.03);
}

/* Image Badge */
.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  z-index: 3;
}

.hero__image-badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Rating */
.hero__image-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero__rating-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.hero__rating-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.hero__rating-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Wave */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
}

/* Hero Responsive */
@media (max-width: 1100px) {
  .hero__container {
    gap: 40px;
  }

  .hero__headline-main {
    font-size: 48px;
  }

  .hero__headline-sub {
    font-size: 28px;
  }

  .hero__image {
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 160px 0 100px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    max-width: 600px;
    text-align: center;
  }

  .hero__main {
    order: 1;
  }

  .hero__emergency-tag {
    justify-content: center;
  }

  .hero__headline-location {
    justify-content: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    order: 2;
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero__headline-question {
    font-size: 18px;
  }

  .hero__headline-main {
    font-size: 40px;
  }

  .hero__headline-sub {
    font-size: 24px;
  }

  .hero__headline-location {
    font-size: 16px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero__cta--call {
    padding: 14px 24px;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 130px 0 60px;
  }

  .hero__emergency-tag {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  .hero__emergency-icon {
    width: 32px;
    height: 32px;
  }

  .hero__emergency-text {
    font-size: 13px;
  }

  .hero__headline-main {
    font-size: 32px;
  }

  .hero__headline-sub {
    font-size: 20px;
  }

  .hero__headline-sub em::after {
    height: 2px;
  }

  .hero__cta-icon {
    width: 40px;
    height: 40px;
  }

  .hero__cta-content strong {
    font-size: 16px;
  }

  .hero__wave {
    height: 60px;
  }
}

@media (max-width: 375px) {
  .hero {
    padding: 120px 0 50px;
  }

  .hero__container {
    padding: 0 16px;
  }

  .hero__emergency-tag {
    padding: 8px 10px;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero__emergency-icon {
    width: 28px;
    height: 28px;
  }

  .hero__emergency-icon img {
    width: 16px;
    height: 16px;
  }

  .hero__emergency-text {
    font-size: 12px;
  }

  .hero__emergency-live {
    font-size: 10px;
    padding: 3px 8px;
  }

  .hero__headline-question {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero__headline-main {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero__headline-sub {
    font-size: 18px;
    margin-top: 8px;
  }

  .hero__headline-location {
    font-size: 14px;
    margin-top: 12px;
    gap: 6px;
  }

  .hero__headline-location img {
    width: 18px;
    height: 18px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin: 20px auto 24px;
    line-height: 1.6;
  }

  .hero__cta-group {
    gap: 12px;
  }

  .hero__cta {
    max-width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  .hero__cta--call {
    padding: 12px 16px;
  }

  .hero__cta-icon {
    width: 36px;
    height: 36px;
  }

  .hero__cta-icon img {
    width: 18px;
    height: 18px;
  }

  .hero__cta-content small {
    font-size: 11px;
  }

  .hero__cta-content strong {
    font-size: 14px;
  }

  .hero__cta--form {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero__cta--form img {
    width: 18px;
    height: 18px;
  }

  .hero__trust {
    gap: 10px;
    margin-top: 24px;
  }

  .hero__trust-item {
    font-size: 13px;
    gap: 6px;
  }

  .hero__trust-item img {
    width: 16px;
    height: 16px;
  }

  .hero__wave {
    height: 40px;
  }
}

/* =====================================================
   TRUST SECTION - Bento Grid Design
   ===================================================== */
.trust {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #f8faf8 0%, var(--white) 100%);
}

.trust__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Bento Grid */
.trust__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Main Feature Card */
.trust__main {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  padding: 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust__main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.trust__main-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.trust__main-badge img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.trust__main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.trust__main-title strong {
  color: var(--accent-light);
}

.trust__main-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 400px;
}

.trust__main-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust__metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust__metric-bar {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.trust__metric-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  border-radius: 4px;
  transition: width 1s ease-out;
}

.trust__metric-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust__metric-info span {
  font-size: 13px;
  opacity: 0.8;
}

.trust__metric-info strong {
  font-size: 18px;
  font-weight: 700;
}

/* Stats Card */
.trust__stats-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.trust__stats-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust__stats-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.trust__stats-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust__stats-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust__stats-sub {
  font-size: 12px;
  opacity: 0.6;
}

/* Speed Card */
.trust__speed-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d1f 100%);
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust__speed-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}

.trust__speed-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.trust__speed-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.trust__speed-value strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.trust__speed-value span {
  font-size: 14px;
  opacity: 0.8;
}

.trust__speed-text {
  font-size: 13px;
  text-align: center;
  opacity: 0.9;
}

/* Feature Pills */
.trust__pills {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust__pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  border: 1px solid var(--gray-100);
}

.trust__pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--primary-light);
}

.trust__pill img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg);
}

.trust__pill span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

/* Coverage Card */
.trust__coverage {
  grid-column: span 2;
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
}

.trust__coverage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.trust__coverage-header img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg);
}

.trust__coverage-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.trust__coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.trust__coverage-item {
  padding: 8px 14px;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition-fast);
}

.trust__coverage-item--active {
  background: var(--primary);
  color: var(--white);
}

.trust__coverage-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.trust__coverage-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.trust__coverage-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg);
  transition: var(--transition-fast);
}

/* Review Card */
.trust__review {
  grid-column: span 2;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.trust__review::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0,0,0,0.08);
  line-height: 1;
}

.trust__review-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.trust__review-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.5;
  margin: 0 0 20px;
  font-style: italic;
}

.trust__review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust__review-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.trust__review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.trust__review-author span {
  font-size: 13px;
  color: var(--gray-600);
}

/* Trust Responsive */
@media (max-width: 1200px) {
  .trust__bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .trust__stats-card,
  .trust__speed-card {
    grid-column: span 1;
  }

  .trust__pills {
    grid-column: span 2;
  }

  .trust__coverage,
  .trust__review {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .trust {
    padding: 60px 20px;
  }

  .trust__bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust__main,
  .trust__stats-card,
  .trust__speed-card,
  .trust__pills,
  .trust__coverage,
  .trust__review {
    grid-column: span 1;
  }

  .trust__main {
    padding: 28px;
  }

  .trust__main-title {
    font-size: 26px;
  }

  .trust__pills {
    grid-template-columns: 1fr;
  }

  .trust__stats-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .trust__main-title {
    font-size: 22px;
  }

  .trust__main-text {
    font-size: 14px;
  }

  .trust__speed-ring {
    width: 100px;
    height: 100px;
  }

  .trust__speed-value strong {
    font-size: 28px;
  }

  .trust__review-text {
    font-size: 16px;
  }
}

/* =====================================================
   SERVICES SECTION - Hub Design
   ===================================================== */
.services {
  padding: var(--section-padding) var(--container-padding);
  background: var(--white);
}

.services__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Section Top */
.services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.services__intro {
  flex-shrink: 0;
}

.services__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}

.services__label img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.services__heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1.1;
}

.services__heading strong {
  color: var(--primary);
}

.services__lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 400px;
  text-align: right;
  margin: 0;
}

/* Emergency Hero Card - Horizontal Layout */
.services__hero {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 28px;
  padding: 32px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.services__hero--horizontal .services__hero-content {
  flex: 1;
  max-width: 600px;
}

.services__hero--horizontal .services__hero-features--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.services__hero-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.services__hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.services__hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.services__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.services__hero-dot {
  width: 8px;
  height: 8px;
  background: #fef08a;
  border-radius: 50%;
  animation: heroDotPulse 1.5s infinite;
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(254, 240, 138, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(254, 240, 138, 0); }
}

.services__hero-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.services__hero-text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 24px;
}

.services__hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.services__hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.services__hero-features li img {
  width: 18px;
  height: 18px;
}

.services__hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--white);
  color: #dc2626;
  border-radius: 14px;
  transition: var(--transition-base);
  text-decoration: none;
}

.services__hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services__hero-btn img {
  width: 22px;
  height: 22px;
}

.services__hero-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.services__hero-btn small {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.services__hero-btn strong {
  font-size: 18px;
  font-weight: 700;
}

.services__hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.services__hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__hero-icon img {
  width: 64px;
  height: 64px;
  filter: brightness(0) invert(1);
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.services__hero-stats {
  display: flex;
  gap: 20px;
}

.services__hero-stat {
  text-align: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
}

.services__hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.services__hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Services Cards Grid */
.services__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.services__cards--full {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services__card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
}

.services__card:hover {
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.12);
  transform: translateY(-4px);
}

.services__card-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
}

.services__card:hover .services__card-icon {
  background: var(--primary);
  transform: rotate(-5deg) scale(1.05);
}

.services__card-icon img {
  width: 32px;
  height: 32px;
  transition: var(--transition-base);
}

.services__card:hover .services__card-icon img {
  filter: brightness(0) invert(1);
}

.services__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.services__card-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
}

.services__card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.services__card:hover .services__card-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* Bottom CTA */
.services__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  margin-top: 32px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.services__bottom-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.services__bottom-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__bottom-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.services__bottom-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.services__bottom-text span {
  font-size: 14px;
  color: var(--gray-600);
}

.services__bottom-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services__bottom-phone {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.services__bottom-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.services__bottom-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.services__bottom-link:hover {
  color: var(--primary-dark);
}

/* Services Responsive */
@media (max-width: 1200px) {
  .services__cards,
  .services__cards--full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services__lead {
    text-align: left;
    max-width: 100%;
  }

  .services__hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
  }

  .services__hero--horizontal .services__hero-content {
    max-width: 100%;
  }

  .services__hero--horizontal .services__hero-features--inline {
    flex-direction: column;
    gap: 12px;
  }

  .services__hero-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services__hero-stats {
    width: 100%;
  }

  .services__cards,
  .services__cards--full {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .services__bottom-content {
    flex-direction: column;
    gap: 16px;
  }

  .services__bottom-actions {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 20px;
  }

  .services__heading {
    font-size: 32px;
  }

  .services__hero {
    padding: 24px;
  }

  .services__hero-title {
    font-size: 24px;
  }

  .services__hero-text {
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  .services__cards,
  .services__cards--full {
    grid-template-columns: 1fr;
  }

  .services__card {
    padding: 20px;
  }

  .services__hero-stats {
    flex-direction: row;
    gap: 12px;
  }

  .services__hero-btn {
    width: 100%;
    justify-content: center;
  }

  .services__bottom {
    padding: 24px;
  }
}

@media (max-width: 375px) {
  .services {
    padding: 50px 16px;
  }

  .services__label {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }

  .services__label img {
    width: 14px;
    height: 14px;
  }

  .services__heading {
    font-size: 26px;
  }

  .services__lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .services__hero {
    padding: 20px;
  }

  .services__hero-badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .services__hero-title {
    font-size: 22px;
  }

  .services__hero-text {
    font-size: 14px;
  }

  .services__hero-features {
    gap: 10px;
  }

  .services__hero-features li {
    font-size: 13px;
    gap: 8px;
  }

  .services__hero-features li img {
    width: 16px;
    height: 16px;
  }

  .services__hero-btn {
    padding: 12px 16px;
    gap: 10px;
  }

  .services__hero-btn img {
    width: 20px;
    height: 20px;
  }

  .services__hero-btn small {
    font-size: 11px;
  }

  .services__hero-btn strong {
    font-size: 15px;
  }

  .services__hero-icon {
    width: 64px;
    height: 64px;
  }

  .services__hero-icon img {
    width: 36px;
    height: 36px;
  }

  .services__hero-stat strong {
    font-size: 28px;
  }

  .services__hero-stat span {
    font-size: 11px;
  }

  .services__card {
    padding: 16px;
  }

  .services__card-icon {
    width: 48px;
    height: 48px;
  }

  .services__card-icon img {
    width: 24px;
    height: 24px;
  }

  .services__card-title {
    font-size: 16px;
  }

  .services__card-text {
    font-size: 13px;
  }

  .services__bottom {
    padding: 20px 16px;
  }

  .services__bottom-icon {
    width: 44px;
    height: 44px;
  }

  .services__bottom-icon img {
    width: 22px;
    height: 22px;
  }

  .services__bottom-text strong {
    font-size: 15px;
  }

  .services__bottom-text span {
    font-size: 13px;
  }

  .services__bottom-phone {
    font-size: 16px;
    padding: 10px 20px;
  }

  .services__bottom-link {
    font-size: 13px;
  }
}

/* =====================================================
   METHODS SECTION - Comparison Design
   ===================================================== */
.methods {
  padding: var(--section-padding) var(--container-padding);
  background: var(--gray-50);
}

.methods__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Intro Section */
.methods__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.methods__intro-content {
  flex: 1;
}

.methods__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 2px solid var(--primary-light);
}

.methods__label img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

.methods__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.methods__title strong {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.methods__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 500px;
  line-height: 1.6;
}

/* Help Box */
.methods__intro-help {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-light);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.methods__help-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.methods__help-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.methods__help-text strong {
  font-size: 15px;
  color: var(--gray-900);
}

.methods__help-text span {
  font-size: 13px;
  color: var(--gray-500);
}

.methods__help-btn {
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: var(--transition-base);
}

.methods__help-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Methods Comparison Grid */
.methods__comparison {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Method Card */
.methods__item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.methods__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

/* Featured Card */
.methods__item--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.methods__item--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25);
}

/* Badge */
.methods__item-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.methods__item-badge img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.methods__item-badge--pro {
  background: var(--green);
}

/* Card Header */
.methods__item-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.methods__item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.methods__item:hover .methods__item-icon {
  transform: rotate(8deg) scale(1.05);
}

.methods__item-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.methods__item-icon--blue {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
}

.methods__item-icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.methods__item-icon--orange {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
}

.methods__item-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 2px;
}

.methods__item-type {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.methods__item-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Meters */
.methods__item-meters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.methods__meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.methods__meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.methods__meter-header span {
  font-size: 12px;
  color: var(--gray-600);
}

.methods__meter-header strong {
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 700;
}

.methods__meter-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.methods__meter-bar span {
  display: block;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

.methods__meter-bar--price span {
  background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 100%);
}

/* Uses */
.methods__item-uses {
  margin-bottom: 16px;
}

.methods__uses-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.methods__uses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.methods__uses-tags span {
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.methods__item:hover .methods__uses-tags span {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* Price */
.methods__item-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.methods__item-price span {
  font-size: 13px;
  color: var(--gray-500);
}

.methods__item-price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

/* Bottom Note */
.methods__note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.methods__note-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.methods__note-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

.methods__note p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.methods__note strong {
  color: var(--gray-900);
}

/* Methods Responsive */
@media (max-width: 1200px) {
  .methods__comparison {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .methods__intro {
    flex-direction: column;
    gap: 24px;
  }

  .methods__intro-help {
    width: 100%;
    justify-content: center;
  }

  .methods__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .methods {
    padding: 60px 20px;
  }

  .methods__title {
    font-size: 28px;
  }

  .methods__comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .methods__intro-help {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .methods__help-text {
    align-items: center;
  }

  .methods__note {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .methods__item {
    padding: 20px;
  }

  .methods__item-price strong {
    font-size: 20px;
  }

  .methods__help-btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   PROBLEMS SECTION - Diagnostic Flow Design
   ===================================================== */
.problems {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.problems__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Top Header Area */
.problems__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.problems__header {
  flex: 1;
}

.problems__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problems__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: problemPulse 2s ease-in-out infinite;
}

@keyframes problemPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.problems__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.problems__title strong {
  color: var(--red);
}

.problems__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 480px;
  line-height: 1.6;
}

/* Stats */
.problems__stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.problems__stat {
  text-align: center;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.problems__stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.problems__stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Flow Grid */
.problems__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Diagnostic Card */
.problems__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  transition: var(--transition-base);
}

.problems__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Status Variants */
.problems__card--critical {
  border-left-color: var(--red);
}

.problems__card--critical .problems__status-indicator {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.problems__card--critical .problems__status-text {
  color: var(--red);
}

.problems__card--warning {
  border-left-color: var(--accent);
}

.problems__card--warning .problems__status-indicator {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.problems__card--warning .problems__status-text {
  color: var(--accent);
}

/* Card Status */
.problems__card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.problems__status-indicator {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.problems__status-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Main */
.problems__card-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.problems__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.problems__card:hover .problems__card-icon {
  background: var(--primary-light);
  transform: rotate(8deg);
}

.problems__card-icon img {
  width: 28px;
  height: 28px;
}

.problems__card-info {
  flex: 1;
  min-width: 0;
}

.problems__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.25;
}

.problems__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.problems__meta-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.problems__meta-time img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.problems__meta-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* Card Details */
.problems__card-details {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: flex-start;
}

.problems__detail {
  padding: 12px;
  border-radius: var(--radius-md);
}

.problems__detail--cause {
  background: rgba(239, 68, 68, 0.06);
}

.problems__detail--solution {
  background: rgba(22, 163, 74, 0.06);
}

.problems__detail-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.problems__detail--cause .problems__detail-header {
  color: var(--red);
}

.problems__detail--cause .problems__detail-header img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(89%) saturate(1095%) hue-rotate(331deg) brightness(91%) contrast(97%);
}

.problems__detail--solution .problems__detail-header {
  color: var(--primary);
}

.problems__detail--solution .problems__detail-header img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

.problems__detail-header img {
  width: 16px;
  height: 16px;
}

.problems__detail p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}

.problems__detail-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 20px;
}

/* Emergency CTA */
.problems__emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1f2937 100%);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.problems__emergency-pulse {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: emergencyGlow 3s ease-in-out infinite;
}

@keyframes emergencyGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.problems__emergency-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.problems__emergency-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-8deg); }
  20%, 40% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
}

.problems__emergency-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.problems__emergency-text {
  color: var(--white);
}

.problems__emergency-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.problems__emergency-text span {
  font-size: 14px;
  opacity: 0.8;
}

.problems__emergency-btn {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.problems__emergency-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

/* Problems Responsive */
@media (max-width: 1200px) {
  .problems__flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .problems__top {
    flex-direction: column;
    gap: 24px;
  }

  .problems__stats {
    width: 100%;
    justify-content: center;
  }

  .problems__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .problems {
    padding: 60px 20px;
  }

  .problems__title {
    font-size: 28px;
  }

  .problems__flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problems__card-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .problems__detail-arrow {
    transform: rotate(90deg);
    margin: 4px auto;
  }

  .problems__emergency {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .problems__emergency-content {
    flex-direction: column;
  }

  .problems__emergency-btn {
    width: 100%;
  }

  .problems__stats {
    flex-direction: column;
    gap: 12px;
  }

  .problems__stat {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .problems__card {
    padding: 20px;
  }

  .problems__stat-value {
    font-size: 28px;
  }

  .problems__card-title {
    font-size: 16px;
  }
}

/* =====================================================
   WHYUS SECTION - Trust Pillars Design
   ===================================================== */
.whyus {
  padding: var(--section-padding) var(--container-padding);
  background: var(--gray-50);
}

.whyus__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Two Column Layout */
.whyus__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Left Column - Trust Statement */
.whyus__trust {
  position: sticky;
  top: 100px;
}

.whyus__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.whyus__trust-badge img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

.whyus__trust-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.whyus__trust-title strong {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whyus__trust-text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Trust Metrics - Circular Progress */
.whyus__metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.whyus__metric {
  text-align: center;
}

.whyus__metric-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
}

.whyus__metric-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.whyus__ring-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 3;
}

.whyus__ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
}

.whyus__metric-ring--orange .whyus__ring-fill {
  stroke: var(--accent);
}

.whyus__metric-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.whyus__metric-label {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Trust CTA */
.whyus__trust-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  color: var(--white);
  transition: var(--transition-base);
}

.whyus__trust-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.whyus__cta-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.whyus__cta-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.whyus__cta-text {
  display: flex;
  flex-direction: column;
}

.whyus__cta-text strong {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.whyus__cta-text span {
  font-size: 20px;
  font-weight: 800;
}

/* Right Column - Pillars */
.whyus__pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Pillar Card */
.whyus__pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
  position: relative;
}

.whyus__pillar:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.whyus__pillar--highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, var(--white) 100%);
}

.whyus__pillar--highlight:hover {
  border-color: var(--accent);
}

.whyus__pillar-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.whyus__pillar-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-300);
  min-width: 28px;
}

.whyus__pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.whyus__pillar:hover .whyus__pillar-icon {
  transform: rotate(8deg) scale(1.05);
}

.whyus__pillar-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* Icon Color Variants */
.whyus__pillar-icon--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.whyus__pillar-icon--orange {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
}

.whyus__pillar-icon--blue {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
}

.whyus__pillar-icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.whyus__pillar-icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.whyus__pillar-content {
  flex: 1;
  min-width: 0;
}

.whyus__pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.whyus__pillar-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.whyus__pillar-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-base);
}

.whyus__pillar:hover .whyus__pillar-arrow {
  opacity: 1;
  transform: translateX(0);
}

.whyus__pillar-arrow img {
  width: 18px;
  height: 18px;
}

/* Bottom Stats Bar */
.whyus__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 32px 48px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.whyus__stat-item {
  text-align: center;
}

.whyus__stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.whyus__stat-text {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.whyus__stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-200);
}

/* WhyUs Responsive */
@media (max-width: 1100px) {
  .whyus__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whyus__trust {
    position: static;
    text-align: center;
  }

  .whyus__trust-text {
    max-width: 600px;
    margin: 0 auto 32px;
  }

  .whyus__metrics {
    justify-content: center;
  }

  .whyus__trust-cta {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .whyus {
    padding: 60px 20px;
  }

  .whyus__trust-title {
    font-size: 32px;
  }

  .whyus__pillar {
    padding: 16px 20px;
  }

  .whyus__pillar-content {
    flex: 1;
  }

  .whyus__pillar-arrow {
    display: none;
  }

  .whyus__bottom {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }

  .whyus__stat-divider {
    display: none;
  }

  .whyus__stat-item {
    flex: 1;
    min-width: 120px;
  }

  .whyus__stat-num {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .whyus__metrics {
    flex-direction: column;
    gap: 24px;
  }

  .whyus__pillar-icon {
    width: 42px;
    height: 42px;
  }

  .whyus__pillar-icon img {
    width: 22px;
    height: 22px;
  }

  .whyus__pillar-number {
    display: none;
  }

  .whyus__trust-cta {
    flex-direction: column;
    text-align: center;
  }

  .whyus__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .whyus__stat-item {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .whyus {
    padding: 50px 16px;
  }

  .whyus__trust-title {
    font-size: 26px;
  }

  .whyus__bottom {
    padding: 20px 16px;
    gap: 16px 12px;
  }

  .whyus__stat-num {
    font-size: 24px;
  }

  .whyus__stat-text {
    font-size: 11px;
  }

  .whyus__pillar {
    padding: 14px 16px;
  }

  .whyus__pillar-icon {
    width: 38px;
    height: 38px;
  }

  .whyus__pillar-icon img {
    width: 20px;
    height: 20px;
  }

  .whyus__pillar-title {
    font-size: 15px;
  }

  .whyus__pillar-text {
    font-size: 13px;
  }
}

/* =====================================================
   PORTFOLIO SECTION - Case Study Timeline Design
   ===================================================== */
.portfolio {
  padding: var(--section-padding) var(--container-padding);
  background: var(--white);
}

.portfolio__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Top Header with Counter */
.portfolio__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
}

.portfolio__header {
  flex: 1;
}

.portfolio__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio__label-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: portfolioPulse 2s ease-in-out infinite;
}

@keyframes portfolioPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.portfolio__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.portfolio__title strong {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 500px;
  line-height: 1.6;
}

/* Counter */
.portfolio__counter {
  text-align: center;
  padding: 28px 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-2xl);
  color: var(--white);
  flex-shrink: 0;
}

.portfolio__counter-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.portfolio__counter-num span {
  color: var(--accent-light);
}

.portfolio__counter-text {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

/* Timeline Container */
.portfolio__timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

/* Case Study Item */
.portfolio__case {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: stretch;
}

.portfolio__case--reverse .portfolio__case-card {
  flex-direction: row-reverse;
}

/* Timeline Marker */
.portfolio__case-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.portfolio__marker-line {
  position: absolute;
  top: 48px;
  width: 3px;
  height: calc(100% + 32px);
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-full);
}

.portfolio__case:last-child .portfolio__marker-line {
  display: none;
}

.portfolio__marker-dot {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.portfolio__marker-dot--red {
  background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.portfolio__marker-dot--orange {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Case Card */
.portfolio__case-card {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition-base);
}

.portfolio__case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-light);
}

/* Case Image */
.portfolio__case-image {
  width: 380px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.portfolio__case-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio__case-card:hover .portfolio__case-image img {
  transform: scale(1.08);
}

.portfolio__case-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.portfolio__case-badge img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

.portfolio__case-badge--green {
  background: var(--primary);
  color: var(--white);
}

.portfolio__case-badge--red {
  background: var(--red);
  color: var(--white);
}

.portfolio__case-badge--orange {
  background: var(--accent);
  color: var(--white);
}

/* Case Content */
.portfolio__case-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio__case-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.portfolio__case-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.portfolio__case-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio__case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portfolio__detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

.portfolio__detail img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* Bottom Action CTA */
.portfolio__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--gray-200);
}

.portfolio__action-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.portfolio__action-text {
  font-size: 15px;
  color: var(--gray-600);
}

.portfolio__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-orange);
  transition: var(--transition-base);
  white-space: nowrap;
}

.portfolio__action-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.portfolio__action-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: var(--transition-base);
}

.portfolio__action-btn:hover img {
  transform: translateX(4px);
}

/* Portfolio Responsive */
@media (max-width: 1100px) {
  .portfolio__case-card {
    flex-direction: column;
  }

  .portfolio__case-image {
    width: 100%;
    height: 220px;
  }

  .portfolio__case-image img {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .portfolio__top {
    flex-direction: column;
    gap: 24px;
  }

  .portfolio__counter {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
  }

  .portfolio__counter-num {
    font-size: 36px;
  }

  .portfolio__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 20px;
  }

  .portfolio__title {
    font-size: 28px;
  }

  .portfolio__case {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .portfolio__case-marker {
    display: none;
  }

  .portfolio__case-content {
    padding: 24px;
  }

  .portfolio__case-title {
    font-size: 18px;
  }

  .portfolio__action {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .portfolio__action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .portfolio__counter {
    flex-direction: column;
    gap: 8px;
  }

  .portfolio__case-details {
    flex-direction: column;
    gap: 10px;
  }
}

/* =====================================================
   REGIONS SECTION - Coverage Map Design
   ===================================================== */

/* Pulse animation for badge */
@keyframes coveragePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.regions {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.regions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.regions__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.regions__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.regions__header-content {
  flex: 1;
}

.regions__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.regions__badge-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.regions__badge-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: coveragePulse 2s ease-out infinite;
}

.regions__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.regions__title strong {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.regions__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 500px;
  line-height: 1.6;
}

/* Stats */
.regions__stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.regions__stat {
  text-align: center;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  min-width: 100px;
}

.regions__stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.regions__stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Zones Layout */
.regions__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Zone Card */
.regions__zone {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.regions__zone:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Zone Header */
.regions__zone-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.regions__zone--primary .regions__zone-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.regions__zone--secondary .regions__zone-header {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
}

.regions__zone-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.regions__zone-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.regions__zone-info {
  flex: 1;
}

.regions__zone-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.regions__zone-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.regions__zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.regions__zone-tag--primary {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.regions__zone-tag--secondary {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.regions__zone-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.regions__zone-time img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Districts (Prague) */
.regions__districts {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.regions__district {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  cursor: default;
}

.regions__district:hover {
  background: var(--primary-pale);
  transform: translateX(4px);
}

.regions__district-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.regions__district-check img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

.regions__district span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Cities (Czech Republic) */
.regions__cities {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.regions__city-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.regions__city-region {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-pale);
}

.regions__city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.regions__city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition-base);
}

.regions__city::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.regions__city:hover {
  background: var(--accent-pale);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

/* Zone Footer */
.regions__zone-footer {
  padding: 20px 32px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.regions__footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.regions__footer-tag img {
  width: 16px;
  height: 16px;
}

.regions__footer-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

.regions__footer-note img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* CTA */
.regions__cta {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1f2937 100%);
  border-radius: var(--radius-2xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.regions__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(22, 163, 74, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.regions__cta-content {
  position: relative;
  z-index: 1;
}

.regions__cta-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.regions__cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.regions__cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.regions__cta-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.regions__cta-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.regions__cta-phone-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.regions__cta-phone-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.regions__cta-or {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.regions__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: var(--transition-base);
}

.regions__cta-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.regions__cta-btn img {
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
}

.regions__cta-btn:hover img {
  filter: brightness(0) invert(1);
}

/* Regions Responsive */
@media (max-width: 1200px) {
  .regions__header {
    flex-direction: column;
    text-align: center;
  }

  .regions__subtitle {
    margin: 0 auto;
  }

  .regions__stats {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .regions__zones {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .regions__districts {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .regions__cta {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .regions__cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .regions__cta-phone,
  .regions__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .regions {
    padding: 60px 20px;
  }

  .regions__title {
    font-size: 32px;
  }

  .regions__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .regions__stat {
    min-width: 80px;
    padding: 16px 20px;
  }

  .regions__stat-value {
    font-size: 26px;
  }

  .regions__districts {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
  }

  .regions__zone-header {
    padding: 20px 24px;
  }

  .regions__zone-title {
    font-size: 20px;
  }

  .regions__zone-icon {
    width: 52px;
    height: 52px;
  }

  .regions__cities {
    padding: 20px 24px;
  }

  .regions__zone-footer {
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
  }

  .regions__cta-title {
    font-size: 22px;
  }
}

@media (max-width: 540px) {
  .regions__districts {
    grid-template-columns: 1fr;
  }

  .regions__city-list {
    flex-direction: column;
  }

  .regions__city {
    width: 100%;
  }

  .regions__zone-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .regions__title {
    font-size: 26px;
  }

  .regions__subtitle {
    font-size: 16px;
  }

  .regions__stat {
    flex: 1;
    min-width: 0;
  }

  .regions__zone-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .regions__zone-icon {
    width: 48px;
    height: 48px;
  }

  .regions__zone-icon img {
    width: 24px;
    height: 24px;
  }

  .regions__cta {
    padding: 24px 20px;
  }

  .regions__cta-title {
    font-size: 20px;
  }

  .regions__cta-phone-number {
    font-size: 18px;
  }
}

/* =====================================================
   PROCESS SECTION - Pipeline Flow Design
   ===================================================== */

/* Animations */
@keyframes pipelineFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
  }
}

.process {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 163, 74, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.process__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__header-badge {
  margin-bottom: 20px;
}

.process__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.process__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  padding: 4px;
}

.process__badge-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.process__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.process__title strong {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Stats */
.process__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.process__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.process__stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
}

.process__stat-icon img {
  width: 20px;
  height: 20px;
}

.process__stat-info {
  display: flex;
  flex-direction: column;
}

.process__stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.process__stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pipeline Visualization */
.process__pipeline {
  position: relative;
  margin-bottom: 48px;
}

/* Track */
.process__track {
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 8px;
  z-index: 1;
}

.process__track-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gray-300) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.process__track-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  border-radius: var(--radius-full);
  animation: pipelineFlow 3s ease-in-out infinite;
}

/* Steps */
.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step Node */
.process__step-node {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 4px solid var(--gray-300);
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.process__step:hover .process__step-node {
  border-color: var(--primary);
  transform: scale(1.1);
}

.process__step-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-600);
  transition: var(--transition-base);
}

.process__step:hover .process__step-num {
  color: var(--primary);
}

.process__step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.process__step:hover .process__step-pulse {
  animation: nodePulse 1.5s ease-out infinite;
}

/* Final Node */
.process__step-node--final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  animation: successPulse 2s ease-out infinite;
}

.process__step-node--final .process__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__step-node--final .process__step-num img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.process__step-pulse--success {
  border-color: var(--primary);
  animation: nodePulse 2s ease-out infinite;
}

/* Step Card */
.process__step-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
  width: 100%;
  border: 1px solid var(--gray-100);
}

.process__step:hover .process__step-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-pale);
}

.process__step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.process__step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.process__step:hover .process__step-icon {
  background: var(--primary);
}

.process__step-icon img {
  width: 24px;
  height: 24px;
  transition: var(--transition-base);
}

.process__step:hover .process__step-icon img {
  filter: brightness(0) invert(1);
}

.process__step-icon--final {
  background: var(--accent-pale);
}

.process__step--final:hover .process__step-icon--final {
  background: var(--accent);
}

.process__step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
}

.process__step-time img {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.process__step-time--highlight {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

.process__step-time--highlight img {
  opacity: 1;
}

.process__step-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--accent-pale);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
}

.process__step-guarantee strong {
  font-weight: 800;
}

.process__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process__step-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Final Card */
.process__step-card--final {
  background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
  border-color: var(--primary-pale);
}

/* Result Block */
.process__result {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  border: 2px solid var(--primary-pale);
}

.process__result-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.process__result-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.process__result-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.process__result-info {
  display: flex;
  flex-direction: column;
}

.process__result-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.process__result-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}

.process__result-features {
  display: flex;
  gap: 24px;
}

.process__result-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--primary-pale);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.process__result-feature img {
  width: 16px;
  height: 16px;
}

/* CTA Bar */
.process__cta {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1f2937 100%);
  border-radius: var(--radius-2xl);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.process__cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.process__cta-step {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.process__cta-step-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.process__cta-text {
  display: flex;
  flex-direction: column;
}

.process__cta-text strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.process__cta-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.process__cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: var(--transition-base);
}

.process__cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.process__cta-btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.process__cta-btn-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.process__cta-btn-text {
  display: flex;
  flex-direction: column;
}

.process__cta-btn-number {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.process__cta-btn-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process Responsive */
@media (max-width: 1200px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process__track {
    display: none;
  }

  .process__step-node {
    width: 56px;
    height: 56px;
  }

  .process__step-num {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .process__result {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .process__result-content {
    flex-direction: column;
  }

  .process__result-features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process__cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .process__cta-left {
    flex-direction: column;
  }

  .process__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 60px 20px;
  }

  .process__title {
    font-size: 32px;
  }

  .process__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .process__stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .process__result-title {
    font-size: 20px;
  }

  .process__result-features {
    gap: 12px;
  }

  .process__result-feature {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 540px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process__step {
    flex-direction: row;
    gap: 16px;
  }

  .process__step-node {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process__step-num {
    font-size: 18px;
  }

  .process__step-card {
    text-align: left;
    padding: 16px;
  }

  .process__step-header {
    justify-content: flex-start;
    gap: 12px;
  }

  .process__step-icon {
    width: 36px;
    height: 36px;
  }

  .process__step-icon img {
    width: 18px;
    height: 18px;
  }

  .process__step-title {
    font-size: 14px;
  }

  .process__step-text {
    font-size: 12px;
  }

  .process__result-icon {
    width: 56px;
    height: 56px;
  }

  .process__result-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .process__title {
    font-size: 26px;
  }

  .process__subtitle {
    font-size: 16px;
  }

  .process__badge {
    padding: 8px 16px;
    font-size: 11px;
  }

  .process__cta-text strong {
    font-size: 16px;
  }

  .process__cta-btn-number {
    font-size: 16px;
  }
}

/* =====================================================
   PRICING SECTION - Service Menu Design
   ===================================================== */

/* Emergency pulse animation */
@keyframes emergencyPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.pricing {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.pricing__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.pricing__header-content {
  flex: 1;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing__badge img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(350deg);
}

.pricing__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pricing__title strong {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__subtitle {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 450px;
  line-height: 1.6;
}

/* Trust Badges */
.pricing__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.pricing__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
}

.pricing__trust-item img {
  width: 20px;
  height: 20px;
}

/* Emergency Banner */
.pricing__emergency {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: var(--radius-2xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.pricing__emergency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  pointer-events: none;
}

.pricing__emergency-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.pricing__emergency-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  position: relative;
}

.pricing__emergency-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  animation: emergencyPulse 2s ease-out infinite;
}

.pricing__emergency-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.pricing__emergency-info {
  display: flex;
  flex-direction: column;
}

.pricing__emergency-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
  width: fit-content;
}

.pricing__emergency-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing__emergency-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.pricing__emergency-right {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pricing__emergency-price {
  text-align: right;
}

.pricing__emergency-from {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.pricing__emergency-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.pricing__emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  color: #dc2626;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: var(--transition-base);
}

.pricing__emergency-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing__emergency-btn img {
  width: 18px;
  height: 18px;
}

/* Price Menu */
.pricing__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

/* Category */
.pricing__category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: 28px;
}

.pricing__category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pricing__category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
}

.pricing__category-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.pricing__category-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.pricing__category-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  border-radius: var(--radius-full);
}

/* Items */
.pricing__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.pricing__item:hover {
  background: rgba(22, 163, 74, 0.1);
  transform: translateX(4px);
}

.pricing__item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.pricing__item:hover .pricing__item-icon {
  background: var(--primary);
}

.pricing__item-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: var(--transition-base);
}

.pricing__item:hover .pricing__item-icon img {
  filter: brightness(0) invert(1);
}

.pricing__item-info {
  flex: 1;
  min-width: 0;
}

.pricing__item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.pricing__item-desc {
  font-size: 13px;
  color: var(--gray-500);
}

.pricing__item-price {
  text-align: right;
  flex-shrink: 0;
}

.pricing__item-from {
  font-size: 11px;
  color: var(--gray-500);
  margin-right: 4px;
}

.pricing__item-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-light);
}

.pricing__item-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

/* Free Service Card */
.pricing__free {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-2xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.pricing__free-badge {
  position: absolute;
  top: 16px;
  right: 24px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.pricing__free-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.pricing__free-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.pricing__free-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.pricing__free-info {
  display: flex;
  flex-direction: column;
}

.pricing__free-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing__free-text {
  font-size: 15px;
  color: var(--gray-400);
}

.pricing__free-features {
  display: flex;
  gap: 16px;
}

.pricing__free-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
}

.pricing__free-feature img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(69%) saturate(459%) hue-rotate(93deg) brightness(95%) contrast(92%);
}

/* Footer */
.pricing__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pricing__notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  flex: 1;
}

.pricing__notice-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.pricing__notice-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(350deg);
}

.pricing__notice-text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
}

.pricing__notice-text strong {
  color: var(--accent-light);
}

.pricing__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.pricing__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.pricing__cta-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.pricing__cta-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.pricing__cta-text {
  display: flex;
  flex-direction: column;
}

.pricing__cta-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.pricing__cta-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing__cta-arrow {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: var(--transition-base);
}

.pricing__cta:hover .pricing__cta-arrow {
  transform: translateX(4px);
}

/* Pricing Responsive */
@media (max-width: 1100px) {
  .pricing__header {
    flex-direction: column;
    text-align: center;
  }

  .pricing__subtitle {
    margin: 0 auto;
  }

  .pricing__trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .pricing__menu {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing__emergency {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .pricing__emergency-left {
    flex-direction: column;
  }

  .pricing__emergency-right {
    flex-direction: column;
    gap: 16px;
  }

  .pricing__emergency-price {
    text-align: center;
  }

  .pricing__emergency-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .pricing__free {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .pricing__free-badge {
    position: relative;
    top: auto;
    right: auto;
    order: -1;
    margin-bottom: 16px;
  }

  .pricing__free-content {
    flex-direction: column;
  }

  .pricing__free-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing__footer {
    flex-direction: column;
    gap: 20px;
  }

  .pricing__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 20px;
  }

  .pricing__title {
    font-size: 32px;
  }

  .pricing__category {
    padding: 20px;
  }

  .pricing__item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .pricing__item-info {
    flex: 1 1 calc(100% - 60px);
  }

  .pricing__item-price {
    width: 100%;
    text-align: left;
    padding-left: 60px;
  }
}

@media (max-width: 540px) {
  .pricing__trust {
    flex-direction: column;
    width: 100%;
  }

  .pricing__trust-item {
    justify-content: center;
  }

  .pricing__emergency-title {
    font-size: 18px;
  }

  .pricing__emergency-amount {
    font-size: 26px;
  }

  .pricing__free-title {
    font-size: 18px;
  }

  .pricing__free-features {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .pricing__title {
    font-size: 26px;
  }

  .pricing__category-header {
    flex-wrap: wrap;
  }

  .pricing__category-line {
    display: none;
  }

  .pricing__item-icon {
    width: 36px;
    height: 36px;
  }

  .pricing__item-icon img {
    width: 18px;
    height: 18px;
  }

  .pricing__item-name {
    font-size: 14px;
  }

  .pricing__item-amount {
    font-size: 18px;
  }

  .pricing__item-price {
    padding-left: 48px;
  }
}

/* =====================================================
   WARRANTY SECTION - Guarantee Certificate Design
   ===================================================== */

/* Certificate seal rotation animation */
@keyframes sealRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Certificate glow animation */
@keyframes certGlow {
  0%, 100% { box-shadow: 0 20px 60px rgba(22, 163, 74, 0.15); }
  50% { box-shadow: 0 25px 80px rgba(22, 163, 74, 0.25); }
}

.warranty {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #f0fdf4 0%, #fafaf8 100%);
  position: relative;
  overflow: hidden;
}

.warranty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.warranty__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Two-Column Layout */
.warranty__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

/* Left Column - Content */
.warranty__content {
  padding-top: 20px;
}

.warranty__header {
  margin-bottom: 40px;
}

.warranty__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.warranty__badge img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.warranty__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.warranty__title strong {
  color: var(--primary-color);
  position: relative;
}

.warranty__title strong::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent-color);
  opacity: 0.3;
  border-radius: 3px;
}

.warranty__subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Guarantee Points */
.warranty__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.warranty__point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22, 163, 74, 0.1);
  transition: var(--transition-base);
}

.warranty__point:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.warranty__point-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.warranty__point:hover .warranty__point-icon {
  background: var(--primary-gradient);
}

.warranty__point-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
  transition: var(--transition-base);
}

.warranty__point:hover .warranty__point-icon img {
  filter: brightness(0) invert(1);
}

.warranty__point-content {
  flex: 1;
}

.warranty__point-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.warranty__point-text {
  font-size: 14px;
  color: var(--gray-500);
}

.warranty__point-badge {
  padding: 8px 16px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Highlight Point */
.warranty__point--highlight {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-color: var(--accent-color);
}

.warranty__point--highlight .warranty__point-icon {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.warranty__point--highlight .warranty__point-icon img {
  filter: brightness(0) invert(1);
}

.warranty__point-badge--accent {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.35);
  font-weight: 800;
}

/* Right Column - Certificate */
.warranty__certificate {
  position: sticky;
  top: 100px;
}

.warranty__cert-inner {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 2px solid var(--primary-color);
  animation: certGlow 4s ease-in-out infinite;
  overflow: hidden;
}

/* Certificate Watermark */
.warranty__cert-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
}

.warranty__cert-watermark img {
  width: 200px;
  height: 200px;
}

/* Certificate Header */
.warranty__cert-header {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.warranty__cert-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.warranty__cert-company {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
}

/* Certificate Main Number */
.warranty__cert-main {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.warranty__cert-num {
  display: block;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.warranty__cert-unit {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-700);
  margin-top: -8px;
}

.warranty__cert-desc {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Certificate Coverage */
.warranty__cert-coverage {
  position: relative;
  z-index: 1;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 28px;
}

.warranty__cert-coverage-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.warranty__cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warranty__cert-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.warranty__cert-list li:last-child {
  border-bottom: none;
}

.warranty__cert-list li img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

/* Certificate Seal */
.warranty__cert-seal {
  position: relative;
  z-index: 1;
}

.warranty__cert-seal-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  position: relative;
}

.warranty__cert-seal-inner::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  border: 2px dashed var(--primary-color);
  animation: sealRotate 20s linear infinite;
}

.warranty__cert-seal-inner img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.warranty__cert-seal-inner span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Bar */
.warranty__trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.warranty__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.warranty__trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.warranty__trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
}

.warranty__trust-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

.warranty__trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Warranty Responsive */
@media (max-width: 1100px) {
  .warranty__layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .warranty__title {
    font-size: 36px;
  }

  .warranty__cert-num {
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .warranty__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .warranty__certificate {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .warranty__content {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .warranty {
    padding: 60px 20px;
  }

  .warranty__title {
    font-size: 30px;
  }

  .warranty__subtitle {
    font-size: 15px;
  }

  .warranty__point {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  .warranty__point-badge {
    margin-left: auto;
    margin-top: 8px;
    flex-basis: 100%;
    text-align: center;
  }

  .warranty__cert-num {
    font-size: 72px;
  }

  .warranty__cert-unit {
    font-size: 24px;
  }

  .warranty__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .warranty__trust-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .warranty__title {
    font-size: 26px;
  }

  .warranty__point-icon {
    width: 44px;
    height: 44px;
  }

  .warranty__point-icon img {
    width: 22px;
    height: 22px;
  }

  .warranty__cert-inner {
    padding: 32px 24px;
  }

  .warranty__cert-num {
    font-size: 60px;
  }

  .warranty__cert-coverage {
    padding: 16px;
  }
}

/* =====================================================
   ABOUT SECTION - Company Showcase Design
   ===================================================== */

/* Floating stats animation */
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about {
  padding: var(--section-padding) var(--container-padding);
  background: var(--white);
  position: relative;
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Company Card */
.about__card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  border-radius: var(--radius-2xl);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradient);
}

/* Visual Side */
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  width: fit-content;
}

.about__badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Main Image */
.about__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Floating Stats */
.about__floating-stats {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
}

.about__floating-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floatUp 4s ease-in-out infinite;
}

.about__floating-stat:nth-child(2) {
  animation-delay: 0.5s;
}

.about__floating-stat--accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
  color: var(--white);
}

.about__floating-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.about__floating-stat:not(.about__floating-stat--accent) .about__floating-num {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__floating-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

/* Quick Info */
.about__quick-info {
  display: flex;
  gap: 16px;
}

.about__quick-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about__quick-item img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

.about__quick-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Content Side */
.about__content {
  display: flex;
  flex-direction: column;
}

.about__header {
  margin-bottom: 24px;
}

.about__label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__title-company {
  font-size: 38px;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.about__title-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-600);
}

/* Description Text */
.about__text {
  margin-bottom: 28px;
}

.about__lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about__lead strong {
  color: var(--primary-color);
}

.about__text p:not(.about__lead) {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Values Timeline */
.about__values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border-left: 3px solid transparent;
}

.about__value:hover {
  border-left-color: var(--primary-color);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.about__value-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
  min-width: 28px;
}

.about__value-body {
  flex: 1;
}

.about__value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.about__value-text {
  font-size: 13px;
  color: var(--gray-500);
}

.about__value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.about__value:hover .about__value-icon {
  background: var(--primary-gradient);
}

.about__value-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
  transition: var(--transition-base);
}

.about__value:hover .about__value-icon img {
  filter: brightness(0) invert(1);
}

/* CTA Buttons */
.about__cta-wrap {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.about__cta--phone {
  background: var(--primary-gradient);
  color: var(--white);
  flex: 1;
}

.about__cta--phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.about__cta--phone img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.about__cta--form {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.about__cta--form:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.about__cta--form img {
  width: 18px;
  height: 18px;
  transition: var(--transition-base);
}

.about__cta--form:hover img {
  transform: translateX(4px);
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

/* Trust Badges */
.about__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about__trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.about__trust-badge:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about__trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.about__trust-badge:hover .about__trust-icon {
  background: var(--primary-gradient);
}

.about__trust-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
  transition: var(--transition-base);
}

.about__trust-badge:hover .about__trust-icon img {
  filter: brightness(0) invert(1);
}

.about__trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.about__trust-text {
  font-size: 13px;
  color: var(--gray-500);
}

/* About Responsive */
@media (max-width: 1100px) {
  .about__card {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 36px;
  }

  .about__title-company {
    font-size: 32px;
  }

  .about__trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about__card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image > img {
    height: 280px;
  }

  .about__trust-badge {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 20px;
  }

  .about__card {
    padding: 24px;
    margin-bottom: 32px;
  }

  .about__title-company {
    font-size: 28px;
  }

  .about__title-tagline {
    font-size: 17px;
  }

  .about__floating-stats {
    flex-direction: column;
    gap: 8px;
  }

  .about__floating-stat {
    padding: 12px;
  }

  .about__floating-num {
    font-size: 24px;
  }

  .about__quick-info {
    flex-direction: column;
    gap: 8px;
  }

  .about__cta-wrap {
    flex-direction: column;
  }

  .about__trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about__card {
    padding: 20px;
  }

  .about__title-company {
    font-size: 24px;
  }

  .about__image > img {
    height: 220px;
  }

  .about__value {
    padding: 14px 16px;
  }

  .about__value-icon {
    width: 36px;
    height: 36px;
  }

  .about__value-icon img {
    width: 18px;
    height: 18px;
  }
}

/* =====================================================
   REVIEWS SECTION - Testimonial Showcase Design
   ===================================================== */

/* Star pulse animation */
@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.reviews {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #fafaf8 0%, #f5f3f0 100%);
  position: relative;
}

.reviews__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Top Section */
.reviews__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.reviews__intro {
  flex: 1;
}

.reviews__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews__label img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1146%) hue-rotate(15deg) brightness(94%) contrast(91%);
}

.reviews__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.reviews__title strong {
  color: var(--primary-color);
}

.reviews__subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Rating Summary Card */
.reviews__summary {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 200px;
  border: 2px solid var(--primary-color);
  position: relative;
}

.reviews__summary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.reviews__summary-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.reviews__summary-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.reviews__summary-max {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
}

.reviews__summary-stars {
  font-size: 22px;
  color: #f59e0b;
  letter-spacing: 3px;
  margin-bottom: 8px;
  animation: starPulse 2s ease-in-out infinite;
}

.reviews__summary-count {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.reviews__summary-count strong {
  color: var(--gray-700);
}

.reviews__summary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.reviews__summary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.reviews__summary-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* Reviews Showcase Grid */
.reviews__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Review Card */
.reviews__card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.reviews__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.reviews__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: var(--transition-base);
}

.reviews__card:hover::before {
  opacity: 1;
}

/* Quote Icon */
.reviews__card-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  opacity: 0.6;
}

.reviews__card-quote img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

/* Rating */
.reviews__card-rating {
  margin-bottom: 16px;
}

.reviews__card-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
}

/* Text */
.reviews__card-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

/* Card Footer */
.reviews__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.reviews__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__card-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
}

.reviews__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews__card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.reviews__card-service {
  font-size: 12px;
  color: var(--gray-500);
}

.reviews__card-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--primary-pale);
  border-radius: var(--radius-full);
}

.reviews__card-badge img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

.reviews__card-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Indicators */
.reviews__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.reviews__trust-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

.reviews__trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Reviews Responsive */
@media (max-width: 1024px) {
  .reviews__top {
    flex-direction: column;
    gap: 24px;
  }

  .reviews__summary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .reviews__showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 60px 20px;
  }

  .reviews__title {
    font-size: 30px;
  }

  .reviews__showcase {
    grid-template-columns: 1fr;
  }

  .reviews__card {
    padding: 24px;
  }

  .reviews__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .reviews__trust-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .reviews__title {
    font-size: 26px;
  }

  .reviews__summary {
    padding: 24px;
  }

  .reviews__summary-num {
    font-size: 40px;
  }

  .reviews__card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .reviews__card-badge {
    align-self: flex-start;
  }
}

/* =====================================================
   BLOG SECTION - Knowledge Hub Design
   ===================================================== */
.blog {
  padding: var(--section-padding) var(--container-padding);
  background: var(--white);
  position: relative;
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, #f0fdf4 0%, var(--white) 100%);
  pointer-events: none;
}

.blog__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}

/* Header */
.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.blog__intro {
  flex: 1;
}

.blog__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog__label img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.blog__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.blog__title strong {
  color: var(--primary-color);
}

.blog__subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
}

.blog__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.blog__all-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.blog__all-btn img {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.blog__all-btn:hover img {
  transform: translateX(4px);
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

/* Grid */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Card */
.blog__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Card Image */
.blog__card-image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog__card:hover .blog__card-image img {
  transform: scale(1.08);
}

.blog__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
}

/* Card Content */
.blog__card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog__card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}

.blog__card-date img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
  opacity: 0.7;
}

.blog__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog__card-title a {
  transition: var(--transition-fast);
}

.blog__card-title a:hover {
  color: var(--primary-color);
}

.blog__card-excerpt {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-fast);
  margin-top: auto;
}

.blog__card-link:hover {
  color: var(--primary-dark);
}

.blog__card-link img {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
}

.blog__card-link:hover img {
  transform: translateX(4px);
}

/* Blog CTA */
.blog__cta {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog__cta-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.blog__cta-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.blog__cta-content {
  flex: 1;
}

.blog__cta-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.blog__cta-text {
  font-size: 15px;
  color: var(--gray-600);
}

.blog__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.blog__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.blog__cta-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog {
    padding: 60px 20px;
  }

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog__title {
    font-size: 30px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .blog__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog__title {
    font-size: 26px;
  }

  .blog__card-content {
    padding: 20px;
  }

  .blog__cta {
    padding: 24px 20px;
  }

  .blog__cta-icon {
    width: 56px;
    height: 56px;
  }

  .blog__cta-title {
    font-size: 20px;
  }
}

/* =====================================================
   FAQ SECTION - Help Center Design
   ===================================================== */
.faq {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, var(--gray-50) 0%, #f5f3f0 100%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.faq__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__label {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.faq__subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Wrapper */
.faq__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Item */
.faq__item {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
}

.faq__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: var(--transition-base);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq__item:hover::before {
  background: var(--primary-color);
}

.faq__item.active {
  box-shadow: var(--shadow-lg);
}

.faq__item.active::before {
  background: var(--primary-gradient);
}

/* Question Button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* Icon */
.faq__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq__item:hover .faq__icon,
.faq__item.active .faq__icon {
  background: var(--primary-gradient);
}

.faq__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(397%) hue-rotate(93deg) brightness(94%) contrast(95%);
  transition: var(--transition-fast);
}

.faq__item:hover .faq__icon img,
.faq__item.active .faq__icon img {
  filter: brightness(0) invert(1);
}

/* Text */
.faq__text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
}

/* Toggle */
.faq__toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition-base);
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--gray-600);
  transition: var(--transition-fast);
}

.faq__toggle::before {
  width: 14px;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 14px;
}

.faq__item.active .faq__toggle {
  background: var(--primary-gradient);
  transform: rotate(180deg);
}

.faq__item.active .faq__toggle::before,
.faq__item.active .faq__toggle::after {
  background: var(--white);
}

.faq__item.active .faq__toggle::after {
  opacity: 0;
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding: 0 24px 24px;
  padding-left: 88px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* FAQ CTA */
.faq__cta {
  background: linear-gradient(135deg, #0d3320 0%, #1a4a30 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.faq__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.faq__cta-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.faq__cta-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.faq__cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.faq__cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq__cta-text {
  font-size: 15px;
  opacity: 0.85;
}

.faq__cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 36px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  flex-shrink: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq__cta-btn:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.faq__cta-btn span:first-child {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.faq__cta-phone {
  font-size: 20px;
  font-weight: 800;
}

/* FAQ Responsive */
@media (max-width: 900px) {
  .faq__wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }

  .faq__title {
    font-size: 30px;
  }

  .faq__question {
    padding: 18px 20px;
  }

  .faq__icon {
    width: 44px;
    height: 44px;
  }

  .faq__icon img {
    width: 22px;
    height: 22px;
  }

  .faq__answer p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq__cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .faq__cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq__title {
    font-size: 26px;
  }

  .faq__toggle {
    width: 28px;
    height: 28px;
  }

  .faq__toggle::before {
    width: 12px;
  }

  .faq__toggle::after {
    height: 12px;
  }

  .faq__cta {
    padding: 28px 20px;
  }

  .faq__cta-icon {
    width: 60px;
    height: 60px;
  }
}

/* =====================================================
   CONTACT SECTION - Service Request Hub
   ===================================================== */

/* Animated border gradient */
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating mesh animation */
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -10px) rotate(1deg); }
  50% { transform: translate(-5px, 5px) rotate(-1deg); }
  75% { transform: translate(-10px, -5px) rotate(0.5deg); }
}

.contact {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(160deg, #0d1f12 0%, #0a1a0d 40%, #0f2615 100%);
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: meshFloat 20s ease-in-out infinite;
}

.contact__glow--1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  top: -150px;
  left: -100px;
}

.contact__glow--2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  bottom: -100px;
  right: -50px;
  animation-delay: -10s;
}

/* Mesh pattern overlay */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(22, 163, 74, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__header {
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* Contact Info Panel */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

/* Animated border effect */
.contact__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  animation: borderGlow 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.contact__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact__card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

.contact__card-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.contact__card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.contact__card-text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Sliding background on hover */
.contact__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(22, 163, 74, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.contact__link:hover::before {
  transform: translateX(100%);
}

.contact__link:hover {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateX(4px);
}

.contact__link-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact__link:hover .contact__link-icon {
  transform: scale(1.05);
}

.contact__link-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact__link-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact__link-label {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact__link-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* Contact Badges - Horizontal strip */
.contact__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.contact__badge:hover {
  background: rgba(22, 163, 74, 0.15);
  transform: translateY(-2px);
}

.contact__badge img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(399%) hue-rotate(87deg) brightness(97%) contrast(91%);
}

.contact__badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
}

/* Contact Form - 3D Card Effect */
.contact__form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.5s ease;
}

.contact__form-wrap:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Corner decoration */
.contact__form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, transparent 60%);
  border-radius: 0 24px 0 100%;
}

.contact__form-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact__form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact__form-desc {
  font-size: 15px;
  color: var(--gray-500);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.contact__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact__form-group {
  position: relative;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 18px 22px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  transition: all 0.3s ease;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--gray-400);
}

.contact__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact__error {
  display: none;
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  padding-left: 4px;
}

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  margin-top: 8px;
}

.contact__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.4);
}

.contact__submit img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.contact__submit:hover img {
  transform: translateX(4px);
}

.contact__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--success);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
}

.contact__success img {
  width: 22px;
  height: 22px;
}

/* Contact Responsive */
@media (max-width: 1100px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form-wrap {
    transform: none;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 70px 20px;
  }

  .contact__title {
    font-size: 32px;
  }

  .contact__subtitle {
    font-size: 16px;
  }

  .contact__card {
    padding: 28px 24px;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__badges {
    flex-direction: column;
  }

  .contact__badge {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact__title {
    font-size: 26px;
  }

  .contact__card-icon {
    width: 50px;
    height: 50px;
  }

  .contact__card-icon img {
    width: 24px;
    height: 24px;
  }

  .contact__card-title {
    font-size: 20px;
  }

  .contact__link-icon {
    width: 40px;
    height: 40px;
  }

  .contact__form-wrap::before {
    display: none;
  }
}

/* =====================================================
   SEO SECTION - Knowledge Center
   ===================================================== */

/* Decorative line animation */
@keyframes lineExpand {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.seo {
  padding: var(--section-padding) var(--container-padding);
  background: linear-gradient(180deg, #f8faf8 0%, #f0f7f0 50%, #e8f5e8 100%);
  position: relative;
}

/* Subtle pattern overlay */
.seo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316a34a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.seo__container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.seo__header {
  text-align: center;
  margin-bottom: 56px;
}

.seo__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.seo__badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(370%) hue-rotate(87deg) brightness(91%) contrast(88%);
}

.seo__title {
  font-size: 44px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

/* Underline decoration */
.seo__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.seo__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

/* SEO Sidebar - Magazine Style */
.seo__sidebar {
  position: sticky;
  top: 100px;
}

.seo__nav {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.1);
}

.seo__nav-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

.seo__nav-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.seo__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  position: relative;
}

/* Number indicator */
.seo__nav-link::before {
  content: counter(nav-counter, decimal-leading-zero);
  counter-increment: nav-counter;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 24px;
}

.seo__nav {
  counter-reset: nav-counter;
}

.seo__nav-link:hover {
  background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(22, 163, 74, 0.08) 100%);
  color: var(--primary);
  transform: translateX(4px);
}

.seo__nav-link:hover::before {
  color: var(--primary);
}

.seo__nav-link:last-child {
  margin-bottom: 0;
}

/* SEO Content - Clean Card Layout */
.seo__content {
  background: var(--white);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Decorative corner */
.seo__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.seo__intro {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.seo__intro-lead {
  font-size: 20px;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.seo__intro-lead strong {
  color: var(--primary);
  font-weight: 700;
}

.seo__intro p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
}

.seo__article {
  margin-bottom: 40px;
  padding: 0 0 40px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.seo__article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Highlight article with left border */
.seo__article--highlight {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06) 0%, rgba(22, 163, 74, 0.02) 100%);
  padding: 32px;
  border-radius: 16px;
  border-bottom: none;
  border-left: 4px solid var(--primary);
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 60px;
}

.seo__article-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Decorative bullet before title */
.seo__article-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.seo__article p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
}

.seo__article p strong {
  color: var(--gray-800);
  font-weight: 600;
}

/* SEO CTA - Gradient Border Card */
.seo__cta {
  margin-top: 48px;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  background: linear-gradient(135deg, #0f5132 0%, #0a3622 100%);
  overflow: hidden;
}

/* Animated gradient border */
.seo__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Glow effect */
.seo__cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.3) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.seo__cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.seo__cta-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.seo__cta-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.seo__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.seo__cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.seo__cta-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.seo__cta-btn:hover img {
  transform: rotate(15deg);
}

/* SEO Responsive */
@media (max-width: 1024px) {
  .seo__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seo__sidebar {
    position: static;
  }

  .seo__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px;
  }

  .seo__nav-label {
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .seo__nav-link {
    padding: 10px 16px;
    margin-bottom: 0;
    background: var(--gray-50);
  }

  .seo__article--highlight {
    margin-left: 0;
    margin-right: 0;
    padding-left: 32px;
  }
}

@media (max-width: 768px) {
  .seo {
    padding: 70px 20px;
  }

  .seo__title {
    font-size: 30px;
  }

  .seo__title::after {
    bottom: -10px;
    width: 60px;
    height: 3px;
  }

  .seo__content {
    padding: 32px 24px;
  }

  .seo__intro-lead {
    font-size: 17px;
  }

  .seo__article-title {
    font-size: 20px;
  }

  .seo__article--highlight {
    padding: 24px;
    padding-left: 24px;
    border-left-width: 3px;
  }

  .seo__cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .seo__cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .seo__title {
    font-size: 26px;
  }

  .seo__badge {
    padding: 8px 18px;
    font-size: 12px;
  }

  .seo__nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .seo__article-title::before {
    display: none;
  }

  .seo__cta-title {
    font-size: 20px;
  }

  .seo__cta {
    padding: 24px 20px;
    gap: 20px;
  }

  .seo__cta-text {
    font-size: 13px;
  }

  .seo__cta-btn {
    padding: 14px 24px;
    font-size: 16px;
    gap: 10px;
  }

  .seo__cta-btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 375px) {
  .seo {
    padding: 50px 16px;
  }

  .seo__title {
    font-size: 22px;
  }

  .seo__badge {
    padding: 6px 14px;
    font-size: 11px;
  }

  .seo__cta {
    padding: 20px 16px;
    gap: 16px;
    margin-top: 32px;
    border-radius: 16px;
  }

  .seo__cta-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .seo__cta-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .seo__cta-btn {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
    border-radius: 12px;
  }

  .seo__cta-btn img {
    width: 16px;
    height: 16px;
  }

  .seo__article-title {
    font-size: 18px;
  }

  .seo__article-content {
    font-size: 14px;
  }

  .seo__nav {
    padding: 16px;
    gap: 6px;
  }

  .seo__nav-link {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* =====================================================
   FOOTER - Unique Drain Cleaning Design
   ===================================================== */
.footer {
  background: linear-gradient(180deg, #0a1a0d 0%, #071209 100%);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.footer::before {
  content: '';
  position: absolute;
  top: 100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px var(--container-padding) 0;
  position: relative;
  z-index: 1;
}

/* Main Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer__brand-col {
  padding-right: 24px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.footer__logo-icon img {
  width: 32px;
  height: 32px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
}

.footer__logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer__logo-tagline {
  font-size: 12px;
  color: var(--accent-light);
  font-weight: 500;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: 24px;
}

/* Contact Box */
.footer__contact-box {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  padding: 20px;
}

.footer__hotline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__hotline-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  flex-shrink: 0;
}

.footer__hotline-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer__hotline-content {
  display: flex;
  flex-direction: column;
}

.footer__hotline-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer__hotline-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--primary-light);
}

.footer__contact-link img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* Columns */
.footer__col {
  padding-top: 4px;
}

.footer__col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(22, 163, 74, 0.3);
}

.footer__col-title img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(399%) hue-rotate(87deg) brightness(97%) contrast(91%);
}

/* Navigation Links */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--gray-400);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer__nav a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer__nav a:hover {
  color: var(--primary-light);
  padding-left: 16px;
}

.footer__nav a:hover::before {
  opacity: 1;
  left: 0;
}

/* Regions Grid - All Czech Republic */
.footer__regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.footer__region-item {
  font-size: 13px;
  color: var(--gray-400);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}

.footer__region-item:hover {
  background: rgba(22, 163, 74, 0.15);
  color: var(--primary-light);
}

/* Trust Strip */
.footer__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.footer__trust-item:hover {
  border-color: rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
}

.footer__trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.footer__trust-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__trust-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer__trust-text span {
  font-size: 12px;
  color: var(--gray-500);
}

/* Related Links */
.footer__related {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__related-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

.footer__related-label img {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.footer__related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__related-link {
  font-size: 13px;
  color: var(--gray-400);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.footer__related-link:hover {
  background: rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.3);
  color: var(--primary-light);
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
  color: var(--gray-500);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--primary-light);
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer__brand-col {
    grid-column: span 2;
    padding-right: 0;
  }

  .footer__trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__container {
    padding-top: 80px;
  }

  .footer__wave {
    height: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand-col {
    grid-column: span 1;
  }

  .footer__regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer__trust-item {
    padding: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding-top: 60px;
  }

  .footer__logo-name {
    font-size: 18px;
  }

  .footer__hotline-number {
    font-size: 16px;
  }

  .footer__regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__related {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal {
    gap: 12px;
  }

  .footer__legal a {
    font-size: 12px;
  }
}

/* =====================================================
   FIXED CALL BUTTON
   ===================================================== */
.fixed-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #c2410c 100%);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: fixedCallPulse 2s ease-in-out infinite;
}

@keyframes fixedCallPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.6), 0 0 0 12px rgba(249, 115, 22, 0.1);
  }
}

.fixed-call:hover {
  background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%);
  transform: scale(1.1);
  animation: none;
}

.fixed-call img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* 24/7 Badge */
.fixed-call__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 4px 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
  border: 2px solid var(--white);
}

/* Fixed Call Responsive */
@media (max-width: 768px) {
  .fixed-call {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
  }

  .fixed-call img {
    width: 26px;
    height: 26px;
  }

  .fixed-call__badge {
    top: -4px;
    right: -4px;
    font-size: 9px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .fixed-call {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .fixed-call img {
    width: 24px;
    height: 24px;
  }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

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

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

/* Page padding for fixed header */
.page-content {
  padding-top: 72px;
}

@media (max-width: 480px) {
  .page-content {
    padding-top: 64px;
  }
}

/* =====================================================
   BEFORE/AFTER SECTION
   ===================================================== */
.beforeafter {
  padding: var(--section-padding) var(--container-padding);
  background: var(--gray-50);
}

.beforeafter__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Header */
.beforeafter__header {
  text-align: center;
  margin-bottom: 48px;
}

.beforeafter__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 2px solid var(--primary-light);
}

.beforeafter__label img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

.beforeafter__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.beforeafter__title strong {
  color: var(--primary);
}

.beforeafter__subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.beforeafter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Item */
.beforeafter__item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beforeafter__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Slider */
.beforeafter__slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.beforeafter__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.beforeafter__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.beforeafter__image--before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.beforeafter__image--after {
  z-index: 0;
}

/* Tags */
.beforeafter__tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  z-index: 3;
}

.beforeafter__tag--before {
  left: 16px;
  background: var(--gray-800);
  color: var(--white);
}

.beforeafter__tag--after {
  right: 16px;
  background: var(--primary);
  color: var(--white);
}

/* Handle */
.beforeafter__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.beforeafter__handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.beforeafter__handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.beforeafter__handle-circle img {
  width: 12px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
}

/* Caption */
.beforeafter__caption {
  padding: 20px 24px;
}

.beforeafter__caption h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.beforeafter__caption p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .beforeafter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .beforeafter__item:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .beforeafter {
    padding: 60px 20px;
  }

  .beforeafter__title {
    font-size: 32px;
  }

  .beforeafter__subtitle {
    font-size: 16px;
  }

  .beforeafter__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .beforeafter__item:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .beforeafter__slider {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .beforeafter__title {
    font-size: 28px;
  }

  .beforeafter__slider {
    height: 220px;
  }

  .beforeafter__handle-circle {
    width: 38px;
    height: 38px;
  }

  .beforeafter__caption {
    padding: 16px 20px;
  }

  .beforeafter__caption h3 {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .beforeafter {
    padding: 50px 16px;
  }

  .beforeafter__title {
    font-size: 24px;
  }

  .beforeafter__subtitle {
    font-size: 14px;
  }

  .beforeafter__slider {
    height: 200px;
  }

  .beforeafter__tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .beforeafter__handle-circle {
    width: 34px;
    height: 34px;
  }

  .beforeafter__handle-circle img {
    width: 10px;
    height: 10px;
  }
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.back-to-top img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(401%) hue-rotate(87deg) brightness(101%) contrast(87%);
  transition: filter 0.3s ease;
}

.back-to-top:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .back-to-top img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 375px) {
  .back-to-top {
    bottom: 85px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .back-to-top img {
    width: 16px;
    height: 16px;
  }
}
