/* ========================================
   IDEAL SYSTEME — Light Modern Theme
   White & Blue Design
   ======================================== */

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

:root {
  --bg: #ffffff;
  --bg-secondary: #f4f7fb;
  --bg-blue: #eef3ff;
  --surface: #ffffff;
  --surface-hover: #f8fafc;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --primary: #1e56a0;
  --primary-light: #2563eb;
  --primary-dark: #163172;
  --secondary: #0891b2;
  --accent: #f97316;
  --accent-dark: #d97706;
  --success: #16a34a;
  --gradient: linear-gradient(135deg, #1e56a0, #2563eb);
  --gradient-alt: linear-gradient(135deg, #0891b2, #06b6d4);
  --gradient-warm: linear-gradient(135deg, #f97316, #f59e0b);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(0, 0, 0, 0.06);
  --shadow-blue: 0 4px 20px rgba(30, 86, 160, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

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

/* --- Cursor Glow (hidden in light theme) --- */
.cursor-glow { display: none; }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; transition: var(--transition);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  padding: 8px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.logo-img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.85rem;
  font-weight: 500; color: var(--text-secondary); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--bg-blue); }
.nav-link.active { color: var(--primary); background: var(--bg-blue); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap;
}
.nav-phone:hover { background: var(--bg-blue); }
.nav-cta {
  padding: 10px 22px; background: var(--gradient); color: white;
  font-size: 0.85rem; font-weight: 600; border-radius: var(--radius);
  white-space: nowrap; box-shadow: var(--shadow-blue);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(30, 86, 160, 0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 74vh; display: flex; align-items: center;
  overflow: hidden; padding: 88px 0 44px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    #03081e 0%,
    #0b1e52 18%,
    #142f80 35%,
    #1e56a0 52%,
    #1d4ed8 68%,
    #5b21b6 85%,
    #7c3aed 100%
  );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orbs { position: absolute; inset: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: float 20s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: rgba(37, 99, 235, 0.2); top: -10%; right: -5%; }
.orb-2 { width: 400px; height: 400px; background: rgba(8, 145, 178, 0.15); bottom: -5%; left: -5%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: rgba(249, 115, 22, 0.08); top: 40%; left: 50%; animation-delay: -14s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Hero Image Overlay */
.hero-image-overlay {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  z-index: 1;
}
.hero-image-overlay img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image-overlay::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, #1e3a5f 0%, rgba(30, 58, 95, 0.7) 40%, rgba(30, 58, 95, 0.3) 100%);
}

.hero-content {
  position: relative; z-index: 3; max-width: 600px; padding: 0 24px 0 48px;
  color: white;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(124,58,237,0.25);
}
.badge-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 16px; color: white;
}
.hero .gradient-text { background: linear-gradient(135deg, #fbbf24, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .gradient-text-alt { background: linear-gradient(135deg, #67e8f9, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .gradient-title-full {
  background: linear-gradient(100deg,
    #ffffff 0%,
    #bfdbfe 20%,
    #7dd3fc 38%,
    #67e8f9 52%,
    #fde68a 68%,
    #fb923c 84%,
    #f97316 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: 28px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

/* Trust Badges in Hero */
.trust-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.9);
}
.trust-badge i { color: #fbbf24; font-size: 0.85rem; }
.trust-img { height: 22px; width: auto; filter: brightness(0) invert(1); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
  font-weight: 600; font-size: 0.95rem; border-radius: var(--radius); transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-warm); color: white;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45); }
.btn-blue {
  background: var(--gradient); color: white;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(30, 86, 160, 0.35); }
.btn-glass {
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25);
  color: white; backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-ghost { color: var(--text-secondary); padding: 12px 20px; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* CTA Banner */
.cta-banner {
  padding: 48px 0;
  background: var(--gradient);
  text-align: center;
}
.cta-banner h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  color: white; margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; }
.cta-banner .btn-primary { background: white; color: var(--primary-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.cta-banner .btn-primary:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* --- Section Common --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; padding: 5px 16px; background: var(--bg-blue);
  border: 1px solid #c7d2fe; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
  color: var(--text);
}
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-alt { background: var(--gradient-alt); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Aides Section --- */
.aides-section { padding: 80px 0; background: var(--bg-secondary); }
.aides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aide-card {
  padding: 32px 24px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); text-align: center; transition: var(--transition);
  box-shadow: var(--shadow);
}
.aide-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.aide-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg); margin: 0 auto 16px; font-size: 1.3rem;
}
.aide-icon.green { background: #dcfce7; color: #16a34a; }
.aide-icon.blue { background: #dbeafe; color: #2563eb; }
.aide-icon.orange { background: #ffedd5; color: #ea580c; }
.aide-icon.purple { background: #ede9fe; color: #7c3aed; }
.aide-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.aide-amount {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--primary); margin-bottom: 4px;
}
.aide-card p { font-size: 0.82rem; color: var(--text-muted); }

/* --- Simulator Section --- */
.simulator-section { padding: 80px 0; }
.simulator-wrapper {
  border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); background: #fff;
}
.simulator-wrapper iframe { width: 100%; height: 700px; display: block; border: none; transition: height 0.3s ease; }

/* --- Content Sections --- */
.content-section { padding: 100px 0; }
.content-section.alt-bg { background: var(--bg-secondary); }

/* Section with image */
.section-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 40px;
}
.section-intro-text { }
.section-intro-image {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.section-intro-image img { width: 100%; height: 320px; object-fit: cover; }

.content-block {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 36px 32px; margin-bottom: 24px; transition: var(--transition);
  box-shadow: var(--shadow);
}
.content-block:hover { border-color: #93c5fd; box-shadow: var(--shadow-lg); }
.content-block-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.cb-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: 1.2rem; flex-shrink: 0;
}
.cb-icon.blue { background: #dbeafe; color: #2563eb; }
.cb-icon.cyan { background: #cffafe; color: #0891b2; }
.cb-icon.green { background: #dcfce7; color: #16a34a; }
.content-block-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.cb-subtitle { font-size: 0.82rem; color: var(--text-muted); }
.cb-intro { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.block-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.sub-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 24px 0 16px; color: var(--primary); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-item {
  display: flex; gap: 14px; padding: 18px; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition);
}
.feature-item:hover { border-color: #93c5fd; background: var(--bg-blue); transform: translateY(-2px); }
.feature-item > i { color: var(--primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.feature-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.feature-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* Types Grid */
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.types-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.type-card {
  position: relative; padding: 28px 24px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); text-align: center; transition: var(--transition); box-shadow: var(--shadow);
}
.type-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.type-card.featured { border-color: var(--primary); background: var(--bg-blue); }
.type-badge {
  position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: var(--gradient);
  color: white; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; border-radius: 100px;
}
.type-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 14px; }
.type-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.type-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* FAQ */
.faq-block { margin-top: 24px; }
.faq-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--text);
}
.faq-title i { color: var(--primary); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.faq-item:hover { border-color: #93c5fd; }
.faq-item summary {
  padding: 16px 20px; font-weight: 600; font-size: 0.9rem; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--primary); font-weight: 300; transition: var(--transition); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] { border-color: var(--primary); background: var(--bg-blue); }
.faq-item p { padding: 0 20px 16px; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* --- Zone Section --- */
.zone-section { padding: 100px 0; background: var(--bg-secondary); }
.zone-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 48px; background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.zone-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.zone-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  padding: 6px 14px; background: var(--bg-blue); border: 1px solid #c7d2fe;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--primary);
}
.zone-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* --- Why Us --- */
.why-us { padding: 100px 0; }
.why-us.alt-bg { background: var(--bg-secondary); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  position: relative; padding: 32px 24px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); transition: var(--transition); overflow: hidden; box-shadow: var(--shadow);
}
.why-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--primary); opacity: 0.08; position: absolute; top: 16px; right: 20px; line-height: 1;
}
.why-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-blue); border: 1px solid #c7d2fe;
  border-radius: var(--radius); color: var(--primary); margin-bottom: 18px; font-size: 1.1rem;
}
.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Articles Grid --- */
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.article-card {
  padding: 28px 24px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); transition: var(--transition); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.article-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.article-date i { color: var(--primary); font-size: 0.7rem; }
.article-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; color: var(--text); }
.article-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.article-link { margin-top: 16px; font-size: 0.85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.article-card:hover .article-link { gap: 10px; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.contact-form-card {
  padding: 36px 32px; background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; background: var(--bg-secondary); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.1); background: white;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group textarea { resize: vertical; }

.contact-info-card {
  padding: 32px 28px; background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow);
}
.info-block { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-blue); border-radius: var(--radius); color: var(--primary);
  flex-shrink: 0; font-size: 0.9rem;
}
.info-block strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.info-block p, .info-block a { font-size: 0.85rem; color: var(--text-secondary); }
.info-block a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* --- Footer --- */
.footer {
  padding: 64px 0 0; background: var(--primary-dark); color: white;
}
.footer .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-img { filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-links-col h4, .footer-contact h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: white; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-links-col a:hover { color: white; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.contact-item i { color: rgba(255,255,255,0.5); margin-top: 3px; }
.contact-item a { color: rgba(255,255,255,0.7); }
.contact-item a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

/* --- Animations --- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .aides-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image-overlay { width: 45%; }
  .section-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 20px;
    border-bottom: 1px solid var(--border); gap: 4px; box-shadow: var(--shadow);
  }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-content { max-width: 100%; padding: 0 24px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-overlay { display: none; }
  .trust-badges { justify-content: center; }
  .hero-title { font-size: 1.8rem; }
  .aides-grid { grid-template-columns: 1fr; }
  .features-grid, .features-grid.cols-3 { grid-template-columns: 1fr; }
  .types-grid, .types-grid.cols-2 { grid-template-columns: 1fr; }
  .zone-card { grid-template-columns: 1fr; padding: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .content-section, .why-us, .zone-section { padding: 60px 0; }
  .section-intro { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; align-items: center; }
}
