/* =============================================
   FinNova AG – Global Stylesheet
   Version 2026 | DSGVO & BITV konform
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  color: #1e2a3a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- CSS Variables --- */
:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2347;
  --accent: #00b8a2;
  --accent-light: #e0faf6;
  --accent2: #f5a623;
  --dark: #0d1b3e;
  --gray: #6b7a99;
  --light: #f4f7fc;
  --white: #ffffff;
  --border: #dde3ef;
  --shadow: 0 4px 24px rgba(26,60,110,0.10);
  --shadow-hover: 0 8px 36px rgba(26,60,110,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: #4a5568; }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,60,110,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
}
.logo span { color: var(--accent); }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #344563;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: var(--light);
}
.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}
.btn-nav:hover { background: var(--accent) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
.dropdown:hover .dropdown-menu { display: flex; flex-direction: column; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 0;
}
.dropdown-menu li a:hover { background: var(--light); color: var(--primary); }

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  color: var(--primary);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #009688; border-color: #009688; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,162,0.3); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--accent-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--primary-dark); }
.mt-2 { margin-top: 24px; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(26,60,110,0.75) 60%, rgba(0,184,162,0.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 760px;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,184,162,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.accent { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.hero-stats .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong { font-size: 1.4rem; font-weight: 800; color: #fff; }
.hero-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero variants for inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; }
.page-hero .breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: #fff; }
.bg-white { background: #fff; }
.text-white { color: #fff !important; }
.text-white p { color: rgba(255,255,255,0.85) !important; }
.text-white h2 { color: #fff; }
.text-center { text-align: center; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.section-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.bg-dark .section-badge { background: rgba(0,184,162,0.2); }

/* --- GRID --- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- CARDS --- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-block;
  background: var(--light);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card h3 { margin-bottom: 10px; color: var(--primary); }
.card p { font-size: 0.92rem; }
.card-link { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.card-link:hover { color: var(--primary); }

/* Feature Cards */
.feature-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.feature-card.dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: rgba(255,255,255,0.75); }

/* Price Cards */
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(0,184,162,0.15);
  transform: scale(1.04);
}
.price-card .price { font-size: 2.8rem; font-weight: 900; color: var(--primary); }
.price-card .price sup { font-size: 1.2rem; vertical-align: super; }
.price-card .price sub { font-size: 0.9rem; color: var(--gray); font-weight: 400; }
.price-card h3 { font-size: 1.1rem; color: var(--gray); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.price-card ul { text-align: left; margin: 24px 0; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* --- TWO COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .col-image { order: -1; }
.col-text h2 { margin-bottom: 16px; }
.col-text p { margin-bottom: 16px; }
.col-image img { width: 100%; border-radius: var(--radius-lg); }
.rounded { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-hover); }

/* --- LISTS --- */
.check-list { margin: 24px 0; }
.check-list li { padding: 8px 0; font-size: 0.95rem; color: #4a5568; }
.bg-dark .check-list li { color: rgba(255,255,255,0.8); }

/* --- NUMBERS GRID --- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.number-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.number-card .number { display: block; font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.number-card .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.testimonial-card .stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--gray); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--primary); font-size: 0.92rem; }
.testimonial-author small { color: var(--gray); font-size: 0.8rem; }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; font-size: 1.5rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent); }

/* --- TABLES --- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th { background: var(--primary); color: #fff; padding: 14px 18px; text-align: left; font-weight: 600; }
td { padding: 12px 18px; border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--light); }
tr:last-child td { border-bottom: none; }

/* --- FORMS --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,184,162,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: #fff;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: var(--light); }
.faq-toggle { color: var(--accent); font-size: 1.2rem; transition: transform var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* --- MISC --- */
.info-box {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--primary); font-size: 0.9rem; }

.alert {
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.alert-success { background: #e8f8f5; border-left: 4px solid #27ae60; color: #1e8449; }
.alert-info { background: #eaf4ff; border-left: 4px solid #2980b9; color: #1a5276; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h4 { color: var(--primary); margin-bottom: 6px; }
.timeline-item .year { font-size: 0.8rem; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--gray); }

/* Team */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.team-card-img { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 24px 20px; }
.team-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--gray); }

/* Stats inline */
.inline-stats { display: flex; gap: 40px; flex-wrap: wrap; margin: 32px 0; }
.inline-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.inline-stat span { font-size: 0.85rem; color: var(--gray); }

/* Process Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step h4 { color: var(--primary); margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* Icon Features */
.icon-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.icon-feature { display: flex; gap: 18px; align-items: flex-start; }
.icon-feature .icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-feature h4 { color: var(--primary); margin-bottom: 6px; }
.icon-feature p { font-size: 0.88rem; }

/* Logos / Partners */
.partner-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.partner-logo {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 28px;
  font-weight: 700;
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Image Banner */
.img-banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.img-banner-sm {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Cookie Notice */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  flex-wrap: wrap;
  border-top: 2px solid var(--accent);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-bar.hidden { transform: translateY(110%); }
.cookie-bar p { font-size: 0.88rem; color: rgba(255,255,255,0.8); max-width: 700px; }
.cookie-bar a { color: var(--accent); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns button { padding: 10px 20px; border-radius: 8px; border: none; font-size: 0.87rem; font-weight: 600; cursor: pointer; }
.btn-accept { background: var(--accent); color: #fff; }
.btn-decline { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* Breadcrumb */
.breadcrumb-nav {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-nav a { color: var(--gray); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { margin: 0 8px; }

/* Lang Toggle */
.lang-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lang-bar .container { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.lang-bar a { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.lang-bar a:hover { color: var(--accent); }
.lang-bar a.active-lang { color: var(--accent); font-weight: 700; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow); padding: 16px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; }
  .dropdown-menu { display: none; position: static; box-shadow: none; border: none; background: var(--light); padding: 0; margin-top: 4px; border-radius: 8px; }
  .dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: flex; }

  .hero { min-height: 500px; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 1.1rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-image { order: 0; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .section { padding: 52px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .cookie-bar { flex-direction: column; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* --- Accessibility --- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
