/* ============================================
   RIOS HVAC SERVICES - DESIGN SYSTEM
   Temperature Gradient Flow Theme
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors - Temperature System */
  --color-cool-deep: #0f172a;
  --color-cool-mid: #1e3a8a;
  --color-cool-light: #3b82f6;
  --color-cool-pale: #dbeafe;

  --color-warm-deep: #991b1b;
  --color-warm-mid: #dc2626;
  --color-warm-light: #f87171;
  --color-warm-pale: #fef2f2;

  /* Neutrals */
  --color-bg: #fafbfc;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-inverse: #ffffff;
  --color-border: #e2e8f0;
  --color-border-subtle: #f1f5f9;

  /* Gradient */
  --gradient-temperature: linear-gradient(135deg, var(--color-cool-pale) 0%, var(--color-warm-pale) 100%);
  --gradient-cta: linear-gradient(135deg, var(--color-warm-mid) 0%, var(--color-warm-deep) 100%);
  --gradient-hero: linear-gradient(180deg, var(--color-cool-deep) 0%, #1e293b 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --section-padding-y: var(--space-20);
  --section-padding-x: var(--space-6);

  /* Borders & Shadows */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow-red: 0 0 30px rgba(220, 38, 38, 0.3);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}

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;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   STICKY CALL BAR
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gradient-cta);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-bar__text {
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 500;
  display: none;
}

.sticky-bar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-inverse);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sticky-bar__phone svg {
  width: 20px;
  height: 20px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  5%, 15% { transform: rotate(-15deg); }
  10%, 20% { transform: rotate(15deg); }
  25% { transform: rotate(0deg); }
}

@media (min-width: 640px) {
  .sticky-bar__text { display: block; }
}

@media (min-width: 1024px) {
  .sticky-bar { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md), var(--shadow-glow-red);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(220, 38, 38, 0.4);
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-cool-mid);
  border: 2px solid var(--color-cool-mid);
}

.btn--secondary:hover {
  background: var(--color-cool-mid);
  color: var(--color-text-inverse);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--large {
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-lg);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) 0;
}

.header--solid {
  position: relative;
  background: var(--color-cool-deep);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.header__logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.header__nav {
  display: none;
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__logo { height: 60px; }
  .header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  .header__phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-inverse);
    font-weight: 600;
  }
  .header__phone-label {
    font-size: var(--text-sm);
    opacity: 0.8;
    font-weight: 400;
  }
  .header__phone-number {
    font-size: var(--text-xl);
    letter-spacing: 0.01em;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
  .header__nav-link {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
  }
  .header__nav-link:hover,
  .header__nav-link--active {
    color: var(--color-text-inverse);
    background: rgba(255, 255, 255, 0.1);
  }
  .header__nav-dropdown {
    position: relative;
  }
  .header__nav-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--duration-normal) var(--ease-out);
  }
  .header__dropdown-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
  }
  .header__dropdown-link:hover {
    background: var(--color-bg);
  }
}

/* ============================================
   PAGE HERO (Interior Pages) - Premium Compact Design
   ============================================ */
.page-hero {
  background: var(--color-cool-deep);
  padding: var(--space-8) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh background */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative frost crystals */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' viewBox='0 0 400 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b82f6' stroke-width='1' opacity='0.15'%3E%3Cpath d='M350 150 L350 50 M350 150 L350 250 M350 150 L280 100 M350 150 L420 100 M350 150 L280 200 M350 150 L420 200'/%3E%3Cpath d='M350 50 L330 70 M350 50 L370 70'/%3E%3Cpath d='M350 250 L330 230 M350 250 L370 230'/%3E%3Cpath d='M280 100 L290 80 M280 100 L260 110'/%3E%3Cpath d='M280 200 L290 220 M280 200 L260 190'/%3E%3Ccircle cx='350' cy='150' r='8'/%3E%3Ccircle cx='350' cy='50' r='4'/%3E%3Ccircle cx='350' cy='250' r='4'/%3E%3Ccircle cx='280' cy='100' r='4'/%3E%3Ccircle cx='280' cy='200' r='4'/%3E%3C/g%3E%3Cg fill='none' stroke='%23dc2626' stroke-width='1' opacity='0.12'%3E%3Cpath d='M100 80 L100 30 M100 80 L100 130 M100 80 L60 50 M100 80 L140 50 M100 80 L60 110 M100 80 L140 110'/%3E%3Ccircle cx='100' cy='80' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  pointer-events: none;
  opacity: 0.8;
}

/* Grid pattern overlay */
.page-hero .container {
  position: relative;
}

.page-hero .container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  right: -20%;
  bottom: -50%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-text-inverse);
}

.page-hero__breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-3);
}

.page-hero__subtitle {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-5);
  max-width: 520px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.page-hero__actions .btn {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
}

.page-hero__actions .btn--large {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
}

/* Floating service indicator */
.page-hero__indicator {
  display: none;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: var(--space-10) 0 var(--space-12);
  }

  .page-hero__indicator {
    display: flex;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .page-hero__indicator-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    min-width: 160px;
  }

  .page-hero__indicator-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-cool-mid), var(--color-cool-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
  }

  .page-hero__indicator-icon--warm {
    background: linear-gradient(135deg, var(--color-warm-deep), var(--color-warm-mid));
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
  }

  .page-hero__indicator-icon svg {
    width: 32px;
    height: 32px;
    color: white;
  }

  .page-hero__indicator-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding-y) 0;
}

.section--gray {
  background: var(--color-bg);
}

.section--white {
  background: var(--color-surface);
}

.section--gradient {
  background: var(--gradient-temperature);
}

.section--dark {
  background: var(--color-cool-deep);
  color: var(--color-text-inverse);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cool-mid);
  margin-bottom: var(--space-4);
}

.section--dark .section__label {
  color: var(--color-cool-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTENT GRID
   ============================================ */
.content-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
  .content-grid--reverse > :first-child {
    order: 2;
  }
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  margin-top: var(--space-8);
}

.content-block h3:first-child {
  margin-top: 0;
}

.content-block p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.content-block ul {
  margin-bottom: var(--space-6);
}

.content-block li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.content-block li svg {
  width: 20px;
  height: 20px;
  color: var(--color-cool-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.content-block--warm li svg {
  color: var(--color-warm-mid);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-cards {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--color-cool-pale);
  color: var(--color-cool-mid);
}

.service-card--warm .service-card__icon {
  background: var(--color-warm-pale);
  color: var(--color-warm-mid);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.service-card__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  gap: var(--space-4);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--color-cool-pale);
  color: var(--color-cool-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item--warm .feature-item__icon {
  background: var(--color-warm-pale);
  color: var(--color-warm-mid);
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
}

.feature-item__content h4 {
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.feature-item__content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================
   PRICING / PLAN CARDS
   ============================================ */
.plan-cards {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  position: relative;
}

.plan-card--featured {
  border-color: var(--color-cool-mid);
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-cool-mid);
  color: var(--color-text-inverse);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

.plan-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.plan-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.plan-card__features {
  margin-bottom: var(--space-6);
}

.plan-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border-subtle);
}

.plan-card__feature:last-child {
  border-bottom: none;
}

.plan-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-cool-mid);
  flex-shrink: 0;
}

.plan-card .btn {
  width: 100%;
}

/* ============================================
   TEAM / ABOUT
   ============================================ */
.about-image {
  background: var(--gradient-temperature);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.about-image__placeholder {
  text-align: center;
  padding: var(--space-8);
}

.about-image__placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--color-cool-mid);
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.about-image__placeholder p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   SERVICE AREA MAP
   ============================================ */
.area-map {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.area-map__placeholder {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.area-map__placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  opacity: 0.4;
}

.area-map__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.area-map__tag {
  background: var(--color-cool-pale);
  color: var(--color-cool-mid);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.area-map__tag:hover {
  background: var(--color-cool-mid);
  color: var(--color-text-inverse);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  transition: background var(--duration-fast);
}

.faq-item__question:hover {
  background: var(--color-bg);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item--open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  display: none;
}

.faq-item--open .faq-item__answer {
  display: block;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: var(--space-16) 0;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-text-inverse);
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-band__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .cta-band__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-band__phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  color: var(--color-warm-mid);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-xl);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.cta-band__phone:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cta-band__phone svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.form__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: inherit;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-cool-mid);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__row {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__submit {
  width: 100%;
  margin-top: var(--space-4);
}

.form__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-cool-deep);
  color: var(--color-text-inverse);
  padding: var(--space-12) 0 calc(var(--space-12) + 60px);
}

@media (min-width: 1024px) {
  .footer {
    padding-bottom: var(--space-12);
  }
}

.footer__inner {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
  }
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  height: 50px;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  opacity: 0.7;
}

.footer__nav-title {
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__nav-link {
  font-size: var(--text-sm);
  opacity: 0.7;
  transition: opacity var(--duration-fast);
}

.footer__nav-link:hover {
  opacity: 1;
}

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-size: var(--text-sm);
  opacity: 0.6;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.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;
}

:focus-visible {
  outline: 2px solid var(--color-cool-mid);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   HERO (Homepage specific)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: var(--space-24) 0 var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__airflow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
}

.hero__airflow svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-cool-light) 0%, var(--color-warm-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__trust {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-cool-light);
}

.hero__temp-indicator {
  display: none;
}

@media (min-width: 1024px) {
  .hero__temp-indicator {
    display: block;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
  }

  .temp-gauge {
    width: 200px;
    height: 200px;
    position: relative;
  }

  .temp-gauge__ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
      from 180deg,
      var(--color-cool-light) 0deg,
      var(--color-cool-pale) 90deg,
      var(--color-warm-pale) 180deg,
      var(--color-warm-light) 270deg,
      var(--color-warm-mid) 360deg
    );
    padding: 12px;
    animation: rotate-slow 30s linear infinite;
  }

  @keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .temp-gauge__inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-cool-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .temp-gauge__value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text-inverse);
  }

  .temp-gauge__label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-1);
  }
}

/* ============================================
   HERO V2 - PREMIUM REDESIGN
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-cool-deep);
  overflow: hidden;
  padding: calc(var(--space-24) + 60px) 0 var(--space-16);
}

@media (min-width: 768px) {
  .hero-v2 {
    min-height: auto;
    padding: calc(var(--space-24) + 80px) 0 var(--space-20);
  }
}

/* Background Effects */
.hero-v2__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-v2__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-cool-deep) 0%, #0c1929 100%);
}

.hero-v2__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 70%);
}

.hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 20s ease-in-out infinite;
}

.hero-v2__orb--blue {
  width: 400px;
  height: 400px;
  background: var(--color-cool-light);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-v2__orb--red {
  width: 300px;
  height: 300px;
  background: var(--color-warm-mid);
  bottom: -50px;
  right: -50px;
  animation-delay: -10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.hero-v2__frost {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  opacity: 0.08;
  animation: frost-spin 60s linear infinite;
}

.hero-v2__frost-crystal {
  width: 100%;
  height: 100%;
  color: white;
}

@keyframes frost-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Container */
.hero-v2__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .hero-v2__container {
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto auto;
    gap: var(--space-8) var(--space-12);
    align-items: start;
  }
}

/* Main Content */
.hero-v2__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .hero-v2__main {
    padding-top: var(--space-8);
  }
}

/* Badge */
.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-v2__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-v2__badge-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
}

/* Title */
.hero-v2__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text-inverse);
  margin: 0;
}

.hero-v2__title-gradient {
  background: linear-gradient(135deg, var(--color-cool-light) 0%, var(--color-warm-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-v2__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .hero-v2__subtitle {
    font-size: var(--text-xl);
  }
}

/* Actions */
.hero-v2__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
}

@media (min-width: 480px) {
  .hero-v2__actions {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

.hero-v2__cta-primary {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, var(--color-warm-mid) 0%, var(--color-warm-deep) 100%);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(220, 38, 38, 0.3);
  transition: all var(--duration-normal) var(--ease-out);
}

.hero-v2__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(220, 38, 38, 0.4);
}

.hero-v2__cta-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.hero-v2__cta-icon svg {
  width: 20px;
  height: 20px;
}

.hero-v2__cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-v2__cta-label {
  font-size: var(--text-xs);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-v2__cta-number {
  font-size: var(--text-lg);
  font-weight: 700;
}

.hero-v2__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--duration-normal) var(--ease-out);
  justify-content: center;
}

.hero-v2__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-v2__cta-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.hero-v2__cta-secondary:hover svg {
  transform: translateX(3px);
}

/* Service Cards */
.hero-v2__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .hero-v2__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-v2__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }
}

.hero-v2__card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-v2__card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-v2__card--cool::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, transparent 100%);
}

.hero-v2__card--warm::before {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, transparent 100%);
}

.hero-v2__card--neutral::before {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.2) 0%, transparent 100%);
}

.hero-v2__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-v2__card:hover::before {
  opacity: 1;
}

.hero-v2__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-v2__card--cool .hero-v2__card-icon {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-cool-light);
}

.hero-v2__card--warm .hero-v2__card-icon {
  background: rgba(220, 38, 38, 0.2);
  color: var(--color-warm-light);
}

.hero-v2__card--neutral .hero-v2__card-icon {
  background: rgba(100, 116, 139, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.hero-v2__card-icon svg {
  width: 22px;
  height: 22px;
}

.hero-v2__card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-v2__card-title {
  font-weight: 600;
  color: var(--color-text-inverse);
  font-size: var(--text-base);
}

.hero-v2__card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.hero-v2__card-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  z-index: 1;
}

.hero-v2__card-arrow svg {
  width: 16px;
  height: 16px;
}

.hero-v2__card:hover .hero-v2__card-arrow {
  color: rgba(255, 255, 255, 0.8);
  transform: translate(2px, -2px);
}

/* Stats Card */
.hero-v2__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  grid-column: 1 / -1;
}

.hero-v2__stat {
  text-align: center;
}

.hero-v2__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-inverse);
  line-height: 1;
}

.hero-v2__stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-v2__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Trust Bar */
.hero-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .hero-v2__trust {
    grid-column: 1;
    grid-row: 2;
  }
}

.hero-v2__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.hero-v2__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-cool-light);
  flex-shrink: 0;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .bento__item--featured {
    grid-column: span 2;
  }
}

.bento__item {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.bento__item--featured {
  background: var(--color-cool-deep);
  color: var(--color-text-inverse);
  border: none;
}

.bento__item--featured:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
}

.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--color-cool-pale);
  color: var(--color-cool-mid);
}

.bento__item--featured .bento__icon {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-cool-light);
}

.bento__item--warm .bento__icon {
  background: var(--color-warm-pale);
  color: var(--color-warm-mid);
}

.bento__icon svg {
  width: 24px;
  height: 24px;
}

.bento__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.bento__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

.bento__item--featured .bento__text {
  color: rgba(255, 255, 255, 0.8);
}

.bento__list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bento__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.bento__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cool-light);
  flex-shrink: 0;
}

.bento__item--warm .bento__list-item::before {
  background: var(--color-warm-mid);
}

/* ============================================
   TIMELINE / PROCESS
   ============================================ */
.timeline {
  display: grid;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--color-border);
  }
}

.timeline__step {
  text-align: center;
  position: relative;
}

.timeline__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cool-mid);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
}

.timeline__step:nth-child(2) .timeline__number { background: var(--color-cool-light); }
.timeline__step:nth-child(3) .timeline__number { background: var(--color-warm-light); }
.timeline__step:nth-child(4) .timeline__number { background: var(--color-warm-mid); }

.timeline__title {
  font-weight: 600;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.timeline__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================================
   PROMISE SECTION
   ============================================ */
.promise__inner {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .promise__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}

.promise__problem {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.promise__problem-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-warm-mid);
  background: var(--color-warm-pale);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.promise__problem-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.promise__problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.promise__problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.promise__problem-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-warm-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.promise__solution {
  background: var(--color-cool-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--color-text-inverse);
}

.promise__solution-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cool-light);
  background: rgba(59, 130, 246, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.promise__solution-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.promise__solution-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  opacity: 0.85;
  margin-bottom: var(--space-6);
}

.promise__solution-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-cool-light);
  transition: gap var(--duration-normal) var(--ease-out);
}

.promise__solution-cta:hover {
  gap: var(--space-3);
}

.promise__solution-cta svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__inner {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.contact__info > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--color-cool-pale);
  color: var(--color-cool-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact__detail-content {
  padding-top: var(--space-1);
}

.contact__detail-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact__detail-value {
  font-weight: 600;
}

.contact__detail-value a {
  color: var(--color-cool-mid);
  transition: color var(--duration-fast);
}

.contact__detail-value a:hover {
  color: var(--color-warm-mid);
}