/* ==========================================================================
   ÖZEL SİVAS DEĞERLİ EĞİTİM ÇOCUĞU ANLAMAKLA MÜMKÜNDÜR
   DEÇAM SOSYAL ETKİNLİK VE KİŞİSEL GELİŞİM MERKEZİ
   Apple Standardında Akıcı & İnteraktif Tasarım Sistemi
   ========================================================================== */

:root {
  /* Marka Renkleri */
  --primary: #01AD3C;
  --primary-hover: #018f32;
  --primary-light: #e6f7ec;
  --primary-glow: rgba(1, 173, 60, 0.28);
  --primary-gradient: linear-gradient(135deg, #01AD3C 0%, #00c844 100%);
  
  --secondary: #FD8001;
  --secondary-hover: #e07200;
  --secondary-light: #fff3e6;
  --secondary-glow: rgba(253, 128, 1, 0.25);
  --secondary-gradient: linear-gradient(135deg, #FD8001 0%, #ff9d33 100%);

  /* Apple & Clean Nötr Renk Paleti */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-dark: #070d1e;
  --bg-dark-card: #0f172a;

  --border-color: #e2e8f0;
  --border-focus: #01AD3C;

  /* Tipografi */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --font-heading: 'Kanit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

  /* Geometri & Gölgeler */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 24px 54px -12px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px -5px var(--primary-glow);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

/* 1. RESET VE TEMEL */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  padding-top: 78px;
}

body.no-scroll {
  overflow: hidden !important;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* 2. DÜZEN & KONTEYNER */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-subtle {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  border: 1px solid rgba(1, 173, 60, 0.18);
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* 3. BUTONLAR (APPLE STANDARTLARINDA CANLI & YÜKSEK KONTRAST) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  user-select: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 6px 18px -2px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #019434 0%, #01AD3C 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -2px var(--primary-glow);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 6px 18px -2px var(--secondary-glow);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e07200 0%, #FD8001 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -2px var(--secondary-glow);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px var(--secondary-glow);
}

.btn-outline {
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a !important;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background-color: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #0f172a !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline-white:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* 4. TOP BİLGİ ŞERİDİ (GİZLİ / STANDART SABİT MENÜ) */
.top-notice-bar {
  display: none;
}

/* 5. PERMANENT FIXED HEADER (SAYFANIN EN ÜSTÜNDE HER ZAMAN SABİT VE KUSURSUZ) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 10px 30px -8px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(0, 0, 0, 0.03);
}

.site-header.scrolled .nav-container {
  height: 66px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 12px;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand-logo-wrap:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  white-space: nowrap !important;
}

.brand-name span {
  color: var(--primary);
}

/* Desktop Menü - Tek Satır & Pill Tasarım */
.desktop-nav-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  white-space: nowrap !important;
  background: rgba(241, 245, 249, 0.75);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(10px);
}

.nav-item-link {
  font-weight: 700;
  font-size: 0.84rem;
  color: #475569;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  text-decoration: none;
}

.nav-item-link:hover {
  color: var(--primary);
  background-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-item-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #01AD3C 0%, #009633 100%) !important;
  box-shadow: 0 4px 14px rgba(1, 173, 60, 0.35);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  color: #334155;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid var(--border-color);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap !important;
}

.nav-phone-link svg {
  color: var(--primary);
}

.nav-phone-link:hover {
  color: var(--primary);
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 173, 60, 0.15);
}

.mobile-drawer-toggle {
  display: none;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.mobile-drawer-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* 6. MOBİL YAN MENÜ (SIDE DRAWER & BACKDROP) */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 350px;
  background: #ffffff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.mobile-side-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-color);
  background-color: #f8fafc;
}

.drawer-logo-img {
  height: 42px;
  width: auto;
}

.drawer-close-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
  color: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: #334155;
  font-size: 0.95rem;
  white-space: nowrap !important;
  transition: var(--transition-smooth);
}

.drawer-nav-link svg {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.drawer-nav-link:hover svg,
.drawer-nav-link.active svg {
  color: var(--primary);
}

.drawer-badge {
  margin-left: auto;
  font-size: 0.725rem;
  font-weight: 800;
  background: #22c55e;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.drawer-cta-box {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* 7. HERO SECTION (PROFESSIONAL MINIMALIST LUXURY HERO) */
.hero-section {
  padding: 88px 0 104px;
  background: 
    radial-gradient(circle at 50% 0%, rgba(1, 173, 60, 0.09) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw + 0.4rem, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, #01AD3C 0%, #00c743 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 20px 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
  max-width: 740px;
  width: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.825rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: #e2e8f0;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* INTERACTIVE HERO STAGE DECK (MINITAKIP SAAS PRODUCT CARD) */
.hero-stage-deck {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-deck-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 25px 60px -15px rgba(1, 173, 60, 0.15), 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.hero-deck-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -15px rgba(1, 173, 60, 0.22), 0 12px 36px -6px rgba(15, 23, 42, 0.1);
}

.hero-deck-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 18px;
}

.hero-deck-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-deck-brand img {
  height: 28px;
  width: auto;
}

.hero-deck-brand-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* INTERACTIVE ROLE SWITCHER */
.hero-role-switchers {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-full);
  gap: 4px;
  margin-bottom: 18px;
}

.hero-role-btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hero-role-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* LIVE PREVIEW CONTENT CARD */
.hero-preview-student-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #01AD3C 0%, #00872e 100%);
  color: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px -6px rgba(1, 173, 60, 0.4);
}

.hero-student-info h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.hero-student-info p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-student-status-tag {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero-deck-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-metric-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  transition: all 0.25s ease;
}

.hero-metric-tile:hover {
  background: #ffffff;
  border-color: rgba(1, 173, 60, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.hero-metric-tile-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}

.hero-metric-tile-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.hero-metric-tile-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #01AD3C;
  margin-top: 3px;
}

.hero-deck-bottom-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.hero-deck-bottom-action span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.hero-deck-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.hero-deck-cta-link:hover {
  transform: translateX(3px);
}

/* FLOATING INTERACTIVE CARDS */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  z-index: 3;
  pointer-events: none;
}

.hero-float-card.top-right {
  top: -18px;
  right: -24px;
  animation: floatCard1 4.5s ease-in-out infinite;
}

.hero-float-card.bottom-left {
  bottom: -18px;
  left: -24px;
  animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(1, 173, 60, 0.22) 0%, rgba(253, 128, 1, 0.12) 45%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* INTERACTIVE KADEME FILTER TABS */
.kademe-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.kademe-filter-btn {
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kademe-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.kademe-filter-btn.active {
  background: linear-gradient(135deg, #01AD3C 0%, #009633 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(1, 173, 60, 0.3);
}

/* INTERACTIVE ROLE MATRIX */
.role-matrix-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.role-matrix-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.role-matrix-btn:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-1px);
}

.role-matrix-btn.active {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(1, 173, 60, 0.2);
}

.role-matrix-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.role-matrix-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* INTERACTIVE SSS / FAQ ACCORDION (MINITAKIP ACCORDION STYLE) */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-accordion-item:hover {
  border-color: rgba(1, 173, 60, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-chevron-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-accordion-item.open .faq-chevron-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-accordion-item.open .faq-answer-pane {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer-pane p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 8. ÖZELLİKLER & KARTLAR (SADECE GERÇEK UYGULAMA ÖZELLİKLERİ) */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(1, 173, 60, 0.35);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrapper.orange {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 9. KADEMELER */
.grade-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

.grade-card.ilkokul-card {
  border: 2.5px solid #FD8001;
  box-shadow: 0 10px 30px rgba(253, 128, 1, 0.08);
}

.grade-card.ilkokul-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(253, 128, 1, 0.18);
}

.grade-card.ortaokul-card {
  border: 2.5px solid #01AD3C;
  box-shadow: 0 10px 30px rgba(1, 173, 60, 0.08);
}

.grade-card.ortaokul-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(1, 173, 60, 0.18);
}

.grade-badge-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 18px;
  white-space: nowrap !important;
}

.grade-badge-tag.orange {
  background-color: rgba(253, 128, 1, 0.12);
  color: #FD8001;
  border: 1px solid rgba(253, 128, 1, 0.25);
}

.grade-badge-tag.green {
  background-color: rgba(1, 173, 60, 0.12);
  color: #01AD3C;
  border: 1px solid rgba(1, 173, 60, 0.25);
}

.grade-feature-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
  flex-grow: 1;
}

.grade-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.55;
}

.grade-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.grade-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* 10. SİMÜLATÖR VİTRİN BÖLÜMÜ */
.app-showcase-section {
  padding: 96px 0;
  background: radial-gradient(circle at 20% 20%, rgba(1, 173, 60, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(253, 128, 1, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, #091024 0%, #0f172a 100%);
  color: #ffffff;
  position: relative;
  width: 100%;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.showcase-info-pane h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 16px;
  line-height: 1.18;
}

.showcase-info-pane p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.sim-level-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sim-level-btn {
  flex: 1;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
}

.sim-level-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.showcase-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.showcase-bullet-item:hover,
.showcase-bullet-item.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(1, 173, 60, 0.35);
  transform: translateX(8px);
}

.bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.showcase-bullet-item.active .bullet-icon {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px var(--primary-glow);
}

.bullet-text h4 {
  color: #e2e8f0;
  font-size: 1.05rem;
  margin-bottom: 3px;
  transition: var(--transition-smooth);
}

.showcase-bullet-item.active .bullet-text h4 {
  color: #4ade80;
  font-weight: 800;
}

.bullet-text p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.45;
}

/* 11. İLETİŞİM FORMU VE KARTLAR */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
}

.contact-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

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

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-body);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

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

/* 12. LEGAL METİN PENCERESİ */
.legal-content-pane {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  margin: 0 auto;
}

.legal-article {
  margin-bottom: 40px;
}

.legal-article h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 8px;
}

.legal-article p {
  color: #334155;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.975rem;
}

.legal-article ul {
  padding-left: 26px;
  color: #334155;
  line-height: 1.75;
  font-size: 0.975rem;
  margin-bottom: 14px;
}

.legal-article li {
  margin-bottom: 8px;
}

/* 13. FOOTER */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 88px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 64px;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-motto {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.925rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 340px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-size: 0.925rem;
  color: #94a3b8;
  white-space: nowrap !important;
}

.footer-menu a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #94a3b8;
  white-space: nowrap !important;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* 14. WHATSAPP & ÇEREZ BANNERI */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: #091024;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 99999;
  display: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn-cookie-accept,
.cookie-banner .btn-primary {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  font-weight: 700;
  border: 1.5px solid transparent !important;
  box-shadow: 0 4px 14px rgba(1, 173, 60, 0.35);
}

.cookie-banner-actions .btn-cookie-accept:hover,
.cookie-banner .btn-primary:hover {
  background: linear-gradient(135deg, #019434 0%, #01AD3C 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 173, 60, 0.5);
}

.cookie-banner-actions .btn-cookie-reject {
  background: rgba(239, 68, 68, 0.16) !important;
  color: #fecaca !important;
  border: 1px solid rgba(239, 68, 68, 0.35) !important;
  font-weight: 700;
}

.cookie-banner-actions .btn-cookie-reject:hover {
  background: rgba(239, 68, 68, 0.32) !important;
  color: #ffffff !important;
  border-color: #ef4444 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.cookie-banner-actions .btn-cookie-details,
.cookie-banner .btn-outline {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner-actions .btn-cookie-details:hover,
.cookie-banner .btn-outline:hover {
  background: #f1f5f9 !important;
  color: #000000 !important;
  border-color: #e2e8f0 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

/* 15. TOAST & 404 */
.app-toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background-color: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.app-toast-notification.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.error-404-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.error-404-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.error-404-title {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.error-404-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
}

/* 16. CTA BANNER CARD (MODERN SAAS CALL TO ACTION) */
.cta-banner-card {
  background: radial-gradient(circle at 80% 20%, rgba(1, 173, 60, 0.28) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(253, 128, 1, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, #091322 0%, #0f1d32 100%);
  border: 1.5px solid rgba(1, 173, 60, 0.35);
  border-radius: 36px;
  padding: 68px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(1, 173, 60, 0.25), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-mesh-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(1, 173, 60, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 16px 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 17. RESPONSIVE KIRILMA NOKTALARI (320px - 1440px+) */
@media (max-width: 1180px) {
  .desktop-nav-wrap {
    display: none;
  }
  .mobile-drawer-toggle {
    display: flex;
  }
  .nav-cta-btn,
  .nav-phone-link {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-indicators {
    justify-content: center;
  }
  .hero-float-card.top-right {
    top: -12px;
    right: -8px;
  }
  .hero-float-card.bottom-left {
    bottom: -12px;
    left: -8px;
  }
  .app-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-info-pane {
    text-align: center;
  }
  .sim-level-switcher {
    margin-left: auto;
    margin-right: auto;
  }
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .top-notice-bar {
    display: none;
  }
  .cards-grid-3, .cards-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cta-banner-card {
    padding: 44px 20px;
    border-radius: 24px;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-actions .btn {
    width: 100%;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .grade-card {
    padding: 32px 24px;
  }
  .feature-card {
    padding: 30px 24px;
  }
  .legal-content-pane {
    padding: 32px 20px;
  }
  .contact-card {
    padding: 30px 22px;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 18px 20px;
    border-radius: var(--radius-md);
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .cookie-banner-actions .btn {
    width: 100%;
  }
  .app-toast-notification {
    top: 14px;
    right: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.875rem;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding: 52px 0;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-trust-indicators {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-item {
    align-items: center;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .whatsapp-floating-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}
