/* =====================================================
   ARCHITECTE PRO - Design Premium Unique
   Palette: Bleu profond + Orange vif
   Style: Moderne, professionnel, confiance
   ===================================================== */

/* CSS Variables */
:root {
  /* Primary Blue - Confiance & Expertise */
  --primary-50: #eef4ff;
  --primary-100: #d9e5ff;
  --primary-200: #bcd2ff;
  --primary-300: #8eb5ff;
  --primary-400: #598cff;
  --primary-500: #3366ff;
  --primary-600: #1a4fd6;
  --primary-700: #163eb3;
  --primary-800: #183693;
  --primary-900: #1a3178;
  --primary-950: #0f1d47;

  /* Accent Orange - Action & Energie */
  --accent-50: #fff8ed;
  --accent-100: #fff0d4;
  --accent-200: #ffdca8;
  --accent-300: #ffc170;
  --accent-400: #ff9b37;
  --accent-500: #ff7a10;
  --accent-600: #f05d06;
  --accent-700: #c74407;
  --accent-800: #9e360e;
  --accent-900: #7f300f;
  --accent-950: #451505;

  /* Neutrals - Elegance */
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f2f4f7;
  --gray-200: #e4e7ec;
  --gray-300: #d0d5dd;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --gray-900: #101828;
  --gray-950: #0c111d;

  /* Success/Warning/Error */
  --success-500: #12b76a;
  --success-600: #039855;
  --warning-500: #f79009;
  --error-500: #f04438;

  /* Gradients Premium */
  --gradient-hero: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
  --gradient-hero-accent: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  --gradient-dark: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Shadows Premium */
  --shadow-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-xl: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
  --shadow-2xl: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
  --shadow-3xl: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
  --shadow-card: 0 4px 24px rgba(16, 24, 40, 0.06);
  --shadow-card-hover: 0 16px 40px rgba(16, 24, 40, 0.12);
  --shadow-button: 0 4px 12px rgba(255, 122, 16, 0.35);
  --shadow-button-primary: 0 4px 12px rgba(26, 79, 214, 0.35);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1280px;
  --container-lg: 1024px;
  --container-md: 768px;

  /* Border radius */
  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

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

/* 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-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--gray-25);
}

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

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-700);
}

/* Typography Premium */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

/* =====================================================
   HEADER & NAVIGATION PREMIUM
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--gray-900);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.375rem;
  font-weight: 800;
  box-shadow: var(--shadow-button-primary);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-item a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.nav-item a:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-item.active a {
  color: var(--primary-600);
  background: var(--primary-50);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}

.nav-dropdown-menu a:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover .nav-dropdown-icon {
  background: var(--primary-100);
}

/* =====================================================
   BUTTONS PREMIUM
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-button-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 79, 214, 0.4);
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-button);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 16, 0.45);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary-700);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--primary-800);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-200);
  padding: 0.75rem 1.625rem;
}

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-700);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1.625rem;
}

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

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* =====================================================
   BREADCRUMB PREMIUM
   ===================================================== */
.breadcrumb {
  background: var(--gray-50);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-left: 0.25rem;
}

.breadcrumb-item a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--primary-600);
}

.breadcrumb-item:last-child {
  color: var(--primary-600);
  font-weight: 600;
}

/* =====================================================
   HERO SECTION PREMIUM
   ===================================================== */
.hero {
  background: var(--gradient-hero);
  color: white;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(51, 102, 255, 0.3), transparent),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(255, 122, 16, 0.15), transparent);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(15, 29, 71, 0.5), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-300);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--accent-300);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.hero-stat-number span {
  color: var(--accent-400);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Form Card */
.hero-form-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-3xl);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-400), var(--primary-500));
  border-radius: calc(var(--radius-2xl) + 2px);
  z-index: -1;
  opacity: 0.3;
}

.hero-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-form-title {
  color: var(--gray-900);
  font-size: 1.5rem;
  margin-bottom: 0.375rem;
}

.hero-form-subtitle {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-900);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: white;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(51, 102, 255, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23667085' 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 1rem center;
  padding-right: 3rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.hero-form-card .btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
}

.form-privacy {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.form-privacy-icon {
  color: var(--success-500);
}

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

.section-sm {
  padding: 4rem 0;
}

.section-white {
  background: white;
}

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

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

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

.section-primary {
  background: var(--gradient-hero);
  color: white;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid var(--primary-100);
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-300);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-title {
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: white;
}

.section-description {
  color: var(--gray-500);
  font-size: 1.125rem;
  line-height: 1.7;
}

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

/* =====================================================
   SERVICES GRID PREMIUM
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: var(--shadow-button-primary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-600);
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* =====================================================
   STEPS / PROCESS PREMIUM
   ===================================================== */
.steps-wrapper {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

.steps-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 88px;
  height: 88px;
  background: white;
  border: 3px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: all var(--transition);
  position: relative;
}

.step-card:hover .step-number {
  background: var(--gradient-primary);
  border-color: var(--primary-600);
  color: white;
  box-shadow: var(--shadow-button-primary);
  transform: scale(1.05);
}

.step-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border: 3px solid white;
}

.step-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  max-width: 240px;
  margin: 0 auto;
}

/* =====================================================
   WHY US / BENEFITS PREMIUM
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin: 0;
}

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

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gray-200);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--primary-600);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-500);
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-600);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =====================================================
   TESTIMONIALS PREMIUM
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--gray-100);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-star {
  color: var(--accent-400);
  font-size: 1.125rem;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-100);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

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

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* =====================================================
   CITIES / NEARBY LOCATIONS PREMIUM
   ===================================================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.city-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--gray-700);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
  color: var(--primary-600);
}

.city-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--primary-600);
  flex-shrink: 0;
  transition: all var(--transition);
}

.city-card:hover .city-icon {
  background: var(--primary-100);
}

.city-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
  color: inherit;
}

.city-info span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Region/Department Cards */
.region-card,
.department-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.region-card::after,
.department-card::after {
  content: '→';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  color: var(--gray-300);
  transition: all var(--transition);
}

.region-card:hover,
.department-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

.region-card:hover::after,
.department-card:hover::after {
  color: var(--primary-500);
  transform: translateX(4px);
}

.region-card h3,
.department-card h3 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.region-card .meta,
.department-card .meta {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* =====================================================
   STATS BAR PREMIUM
   ===================================================== */
.stats-bar {
  background: var(--gradient-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(255, 122, 16, 0.2), transparent),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(51, 102, 255, 0.2), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-number span {
  color: var(--accent-400);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   CTA SECTION PREMIUM
   ===================================================== */
.cta-section {
  background: var(--gradient-accent);
  padding: 5rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: white;
  color: var(--accent-600);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  margin-top: 1.5rem;
  transition: all var(--transition);
}

.cta-phone:hover {
  transform: scale(1.05);
  color: var(--accent-700);
  box-shadow: var(--shadow-2xl);
}

/* =====================================================
   CONTACT SECTION PREMIUM
   ===================================================== */
.contact-section {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-list-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  color: var(--primary-600);
}

.contact-list h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-list p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

/* =====================================================
   PROSE / CONTENT
   ===================================================== */
.content-prose {
  max-width: 800px;
  margin: 0 auto;
}

.content-prose h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.content-prose h3 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-prose p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-prose ul,
.content-prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-prose li {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.content-prose strong {
  color: var(--gray-800);
  font-weight: 600;
}

/* =====================================================
   FOOTER PREMIUM
   ===================================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: all var(--transition);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-500);
}

.footer-legal a:hover {
  color: white;
}

/* =====================================================
   RESPONSIVE PREMIUM
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 480px;
    margin: 3rem auto 0;
  }

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

  .steps-line {
    display: none;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-main {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .nav-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: max-content;
  }

  .header .btn-accent {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-number {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-phone {
    font-size: 1.125rem;
    padding: 0.875rem 1.5rem;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

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

  .hero-form-card {
    padding: 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s var(--ease-out);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-primary { color: var(--primary-600); }
.text-accent { color: var(--accent-500); }
.text-success { color: var(--success-500); }
.text-gray { color: var(--gray-500); }

.bg-primary { background: var(--primary-600); }
.bg-accent { background: var(--accent-500); }
.bg-white { background: white; }
.bg-gray { background: var(--gray-50); }

/* =====================================================
   INTRO CONTENT SECTION (SEO)
   ===================================================== */
.intro-section {
  background: white;
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.intro-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.intro-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.intro-content ul li::before {
  content: '✓';
  color: var(--success-500);
  font-weight: 700;
  flex-shrink: 0;
}

.intro-sidebar {
  position: sticky;
  top: 100px;
}

.intro-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

.intro-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.intro-card-list {
  list-style: none;
}

.intro-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.intro-card-list li:last-child {
  border-bottom: none;
}

.intro-card-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--primary-600);
  flex-shrink: 0;
}

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

  .intro-sidebar {
    position: static;
  }
}

/* =====================================================
   NEW STYLES - Phone Only CTA
   ===================================================== */

/* Hero Centered Layout */
.hero-inner.hero-centered {
  justify-content: center;
  text-align: center;
}

.hero-inner.hero-centered .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-inner.hero-centered .hero-features {
  justify-content: center;
}

.hero-inner.hero-centered .hero-stats {
  justify-content: center;
}

/* Hero CTA */
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Button XL */
.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Phone Big CTA */
.cta-phone-big,
.contact-phone-big {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent-500);
  text-decoration: none;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, var(--accent-50) 0%, var(--accent-100) 100%);
  border-radius: var(--radius-xl);
  border: 3px solid var(--accent-200);
  transition: var(--transition-normal);
  margin: 1.5rem 0;
}

.cta-phone-big:hover,
.contact-phone-big:hover {
  background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
  border-color: var(--accent-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

/* CTA Section Phone Big */
.cta-section .cta-phone-big {
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-section .cta-phone-big:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Simple */
.contact-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 0;
}

.contact-info-centered h2 {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-info-centered > p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.contact-hours {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-top: 0.5rem !important;
}

.contact-zone {
  color: var(--primary-600);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 1rem !important;
}

/* Footer Phone */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-400);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: var(--transition-fast);
}

.footer-phone:hover {
  color: var(--accent-300);
}

/* Intro Card Phone */
.intro-card-phone {
  background: var(--gradient-accent);
  border-color: var(--accent-600);
  text-align: center;
}

.intro-card-phone h4 {
  color: white;
}

.intro-card-phone p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.intro-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  text-decoration: none;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  margin: 1rem 0;
  transition: var(--transition-fast);
}

.intro-phone:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.region-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.region-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.region-card .meta {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Departments Grid */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.department-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.department-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.department-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  flex-shrink: 0;
}

.department-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.department-info .meta {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Cities Grid Full */
.cities-grid-full {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.cities-grid-full::-webkit-scrollbar {
  width: 6px;
}

.cities-grid-full::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}

.cities-grid-full::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

.cities-grid-full::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* Parent Links */
.parent-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-50);
  color: var(--primary-700);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1px solid var(--primary-100);
}

.parent-link:hover {
  background: var(--primary-100);
  color: var(--primary-800);
  border-color: var(--primary-200);
}

/* Intro Card Link */
.intro-card-list a {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: 500;
}

.intro-card-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cta .btn-xl {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .cta-phone-big,
  .contact-phone-big {
    font-size: 1.5rem;
    padding: 1.25rem 2rem;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .region-card {
    padding: 1.5rem 1rem;
  }

  .region-icon {
    font-size: 2rem;
  }

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

  .parent-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

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

  .cta-phone-big,
  .contact-phone-big {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
  }
}
