/* ==========================================================
   Kırıkkale 7/24 Taksi & Transfer - 2026 Kurumsal Aydınlık Tema
   Yüksek Kontrast, %100 Görünürlük & Kusursuz Tipografi
   ========================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-dark: #b45309;
  --primary-light: #fef3c7;
  --primary-border: #fde68a;
  
  --brand-navy: #0f172a;
  --brand-slate: #1e293b;
  
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --accent-green-light: #dcfce7;
  --accent-green-text: #166534;
  
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-title: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-sub: #94a3b8;
  
  --border-color: #e2e8f0;
  --border-strong: #cbd5e1;
  --border-focus: #f59e0b;
  
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 14px 28px -4px rgba(15, 23, 42, 0.1);
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::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);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--text-title);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================
   HEADER & NAVBAR
   ========================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a !important;
  line-height: 1.1;
}

.logo-title span {
  color: #d97706 !important;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 800;
  color: #b45309 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigasyon Linkleri */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: #1e293b !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link:focus {
  color: #0f172a !important;
  background: #f1f5f9;
}

.nav-link.active {
  color: #b45309 !important;
  background: #fef3c7;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  list-style: none;
  min-width: 230px;
  padding: 0.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 120;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  display: block;
  animation: fadeInDown 0.2s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-link {
  display: block;
  padding: 0.65rem 0.85rem;
  color: #334155 !important;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.dropdown-link:hover {
  background: #fef3c7;
  color: #92400e !important;
  transform: translateX(4px);
}

/* Header Butonu */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a !important;
  padding: 0.65rem 1.35rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #000000 !important;
}

.header-cta-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.header-cta-phone .phone-num {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a !important;
  letter-spacing: 0.02em;
  display: block;
}

.header-cta-phone .phone-sub {
  font-size: 0.7rem;
  font-weight: 800;
  color: #78350f !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  color: #0f172a;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
}

/* ==========================================================
   BUTONLAR
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  min-height: 52px;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a !important;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  color: #000000 !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-dark {
  background: #0f172a;
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  color: #ffffff !important;
}

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

.btn-outline:hover {
  border-color: var(--primary);
  background: #fef9c3;
  color: #92400e !important;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  min-height: 56px;
}

/* ==========================================================
   HERO BÖLÜMÜ
   ========================================================== */
.hero-section {
  padding: 4.5rem 0 4rem;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dcfce7;
  color: #166534 !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border: 1px solid #bbf7d0;
}

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

@keyframes pulse {
  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 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  color: #0f172a !important;
}

.hero-title span {
  color: #d97706 !important;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #334155 !important;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-badges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e293b !important;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fef3c7;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================
   HIZLI ÇAĞRI FORMU KARTI
   ========================================================== */
.quick-call-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.1);
  position: relative;
}

.card-header-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.quick-call-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}

.quick-call-card p {
  font-size: 0.95rem;
  color: #475569 !important;
  margin-top: 4px;
  margin-bottom: 1.5rem;
}

.popular-chips-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #64748b !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.popular-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.chip-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-strong);
  color: #1e293b !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: #fef3c7;
  color: #92400e !important;
  border-color: #fcd34d;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a !important;
}

.form-control {
  width: 100%;
  height: 52px;
  padding: 0 1.15rem;
  background: #f8fafc !important;
  border: 1.5px solid var(--border-strong) !important;
  border-radius: var(--radius-sm);
  color: #0f172a !important;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  background: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.form-control::placeholder {
  color: #64748b !important;
  font-weight: 500;
}

.quick-call-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.75rem;
}

/* ==========================================================
   GENEL BÖLÜMLER & KARTLAR
   ========================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: #ffffff;
  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 3.5rem;
}

.section-tag {
  display: inline-block;
  background: #fef3c7;
  color: #92400e !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid #fde68a;
}

.section-title {
  font-size: 2.45rem;
  font-weight: 900;
  color: #0f172a !important;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-title span {
  color: #d97706 !important;
}

.section-subtitle {
  color: #475569 !important;
  font-size: 1.1rem;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
}

/* Özellik Kartları */
.feature-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #fcd34d;
  box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #fef3c7;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0f172a !important;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #475569 !important;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Araç / Filo Kartları */
.vehicle-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: #fcd34d;
  box-shadow: var(--shadow-hover);
}

.vehicle-card h3 {
  color: #0f172a !important;
  font-size: 1.45rem;
  font-weight: 900;
}

.vehicle-card p {
  color: #475569 !important;
  font-size: 0.98rem;
  line-height: 1.65;
}

.vehicle-badge {
  background: #fef3c7;
  color: #92400e !important;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vehicle-specs {
  display: flex;
  gap: 1.25rem;
  margin: 1.35rem 0 1.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: #334155 !important;
  font-size: 0.95rem;
  font-weight: 700;
}

/* pSEO Lokasyon & Rota Kartları (YÜKSEK KONTRAST - ASLA BOŞ GÖRÜNMEZ) */
.badge-card {
  background: #ffffff !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f172a !important;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.badge-card:hover {
  border-color: var(--primary) !important;
  background: #fffbeb !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.badge-card .loc-title {
  font-weight: 900 !important;
  font-size: 1.2rem !important;
  color: #0f172a !important;
  margin-bottom: 4px;
  display: block;
}

.badge-card .loc-status {
  color: #16a34a !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-card {
  background: #ffffff !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.route-card:hover {
  border-color: var(--primary) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.route-title {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  margin-bottom: 0.65rem;
}

.route-details {
  display: flex;
  gap: 1.25rem;
  color: #475569 !important;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.route-badge-call {
  font-size: 0.95rem;
  font-weight: 800;
  color: #b45309 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SSS Akordeon */
.accordion {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  color: #0f172a !important;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: #f8fafc;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: #f59e0b;
  color: #000000;
}

.accordion-content {
  padding: 0 1.75rem 1.6rem;
  color: #334155 !important;
  display: none;
  line-height: 1.8;
  font-size: 1rem;
}

.accordion-item.active .accordion-content {
  display: block;
  animation: fadeIn 0.25s ease;
}

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

/* İçerik Sayfası (Page View) */
.page-article {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 3rem 0 5rem;
  line-height: 1.85;
  box-shadow: var(--shadow-card);
}

.page-article h1, .page-article h2, .page-article h3 {
  color: #0f172a !important;
  margin: 1.5rem 0 1rem;
  font-weight: 900;
}

.page-article p {
  margin-bottom: 1.25rem;
  color: #334155 !important;
  font-size: 1.05rem;
}

.page-article ul, .page-article ol {
  margin-left: 2rem;
  margin-bottom: 1.75rem;
  color: #334155 !important;
}

.page-article li {
  margin-bottom: 0.5rem;
}

/* Footer (Kurumsal Koyu Lacivert Zemin) */
.site-footer {
  background: #0f172a;
  color: #cbd5e1 !important;
  padding: 4.5rem 0 7rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
}

.footer-title {
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1.35rem;
  letter-spacing: -0.01em;
}

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

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

.footer-links a {
  color: #94a3b8 !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #f59e0b !important;
  padding-left: 4px;
}

/* Mobil Alt Çubuk */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-bar .bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 8px;
  padding: 8px 12px;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  height: 100%;
  border-radius: 10px;
}

.sticky-call {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b0f19 !important;
}

.sticky-whatsapp {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff !important;
}

/* Responsive Uyarlamalar */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  }
  .main-nav.active {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 0.75rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    margin-top: 4px;
    padding-left: 1rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust-badges {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
  .page-article {
    padding: 1.5rem;
  }
}
