/* ============================================
   TransArkadaşım — Global Stylesheet
   Modern Minimal + Soft Private Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #faf8f6;
  --color-bg-alt: #f3f0ec;
  --color-bg-card: #ffffff;
  --color-bg-hero: linear-gradient(135deg, #f5f0ed 0%, #ede4df 50%, #e8ddd6 100%);
  --color-bg-cta: linear-gradient(135deg, #8b6f7e 0%, #7a5c6d 100%);
  --color-bg-footer: #3a3038;
  --color-text: #3d3540;
  --color-text-light: #6b5f6e;
  --color-text-muted: #9a8e9c;
  --color-text-inverse: #faf8f6;
  --color-heading: #2e2633;
  --color-accent: #8b6f7e;
  --color-accent-hover: #7a5c6d;
  --color-accent-light: #c4adb8;
  --color-border: #e5dfe2;
  --color-border-light: #f0eaed;
  --color-shadow: rgba(58, 48, 56, 0.08);
  --color-shadow-hover: rgba(58, 48, 56, 0.14);

  /* Typography */
  --font-body: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --max-width: 1140px;
  --max-width-narrow: 780px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-pill: 50px;

  /* Transitions */
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 1.85rem; margin-bottom: var(--space-lg); }
h2 { font-size: 1.45rem; margin-bottom: var(--space-md); }
h3 { font-size: 1.15rem; margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.text-center {
  text-align: center;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
  text-decoration: none;
  color: var(--color-text-inverse);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background-color: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.brand span {
  color: var(--color-accent);
}

/* Desktop Nav */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
  text-decoration: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::before {
  content: none;
}

.dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 8px 24px var(--color-shadow);
  padding: var(--space-sm) 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 50;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-accent);
}

.dropdown-menu a::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 246, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99;
  padding: 5rem var(--space-xl) var(--space-xl);
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.mobile-nav .mobile-sub-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: var(--space-md);
  border-bottom: none;
}

.mobile-nav .mobile-sub-link {
  padding-left: var(--space-md);
  font-size: 1rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: var(--color-bg-hero);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
}

.hero h1 {
  font-size: 1.85rem;
  max-width: 680px;
  margin: 0 auto var(--space-md);
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.hero--home {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero--city {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.hero--info {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(135deg, #f0eae6 0%, #e8e0db 100%);
}

.hero--policy {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
}

.hero--policy h1 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.hero-image {
  margin: var(--space-xl) auto 0;
  max-width: 480px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: 0.85rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
}

.breadcrumb li + li::before {
  content: '›';
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-light);
  font-weight: 400;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb .current {
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.content-block h2 {
  margin-top: var(--space-2xl);
}

.content-block p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.75;
}

.content-block h3 {
  margin-top: var(--space-lg);
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-cta {
  display: inline-block;
  background: var(--color-bg-cta);
  color: var(--color-text-inverse);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 16px rgba(139, 111, 126, 0.25);
}

.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 111, 126, 0.35);
  color: var(--color-text-inverse);
  text-decoration: none;
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--color-accent-light);
  outline-offset: 3px;
}

.btn-cta--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: none;
}

.btn-cta--outline:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  box-shadow: 0 4px 16px rgba(139, 111, 126, 0.25);
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--color-shadow-hover);
}

.card h3 {
  color: var(--color-heading);
  margin-top: 0;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  display: block;
}

/* City Cards */
.city-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding: 0;
}

.city-card:hover {
  text-decoration: none;
  color: inherit;
}

.city-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.city-card-body {
  padding: var(--space-lg);
}

.city-card h3 {
  margin-bottom: var(--space-xs);
}

.city-card p {
  font-size: 0.9rem;
}

/* ============================================
   BENEFIT / FEATURE CARDS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.benefit-card .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ============================================
   STORY / TESTIMONIAL BLOCK
   ============================================ */
.story-block {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-xl) var(--space-lg);
  border-left: 4px solid var(--color-accent-light);
  box-shadow: 0 2px 12px var(--color-shadow);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.8;
}

.story-block p:last-child {
  margin-bottom: 0;
}

.story-label {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  display: block;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-family: var(--font-body);
  line-height: 1.4;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background-color: var(--color-bg-alt);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  border-radius: 2px;
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

/* Static FAQ variant (for info pages) */
.faq-static {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-static-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.faq-static-item:last-child {
  border-bottom: none;
}

.faq-static-item h3 {
  color: var(--color-heading);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.faq-static-item p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   RELATED PAGES / LINKS
   ============================================ */
.related-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.related-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.related-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--color-shadow);
  text-decoration: none;
  color: var(--color-accent);
}

.related-link-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.related-link-text {
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================
   FINAL CTA PANEL
   ============================================ */
.cta-panel {
  background: var(--color-bg-cta);
  border-radius: var(--border-radius);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.cta-panel h2 {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
}

.cta-panel p {
  color: rgba(250, 248, 246, 0.85);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

.cta-panel .btn-cta {
  background: var(--color-text-inverse);
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-panel .btn-cta:hover {
  background: #fff;
  color: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: var(--space-xs);
  color: var(--color-heading);
}

.step-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-bg-footer);
  color: rgba(250, 248, 246, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-sm);
}

.footer-brand span {
  color: var(--color-accent-light);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-group h4 {
  color: var(--color-text-inverse);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.footer-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-group a {
  color: rgba(250, 248, 246, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-group a:hover {
  color: var(--color-text-inverse);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 246, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  text-align: center;
}

.footer-bottom a {
  color: rgba(250, 248, 246, 0.65);
}

.footer-bottom a:hover {
  color: var(--color-text-inverse);
}

.age-notice {
  font-size: 0.78rem;
  color: rgba(250, 248, 246, 0.45);
}

/* ============================================
   POLICY PAGE CONTENT
   ============================================ */
.policy-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: var(--space-2xl);
  font-size: 1.3rem;
}

.policy-content h3 {
  margin-top: var(--space-lg);
}

.policy-content p {
  color: var(--color-text-light);
  line-height: 1.75;
}

.policy-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content ul li {
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.policy-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================
   CITY OVERVIEW SECTION (Homepage)
   ============================================ */
.city-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ============================================
   INLINE IMAGE BLOCK
   ============================================ */
.inline-image {
  margin: var(--space-xl) 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

/* ============================================
   RESPONSIVE — TABLET (min-width: 640px)
   ============================================ */
@media (min-width: 640px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }

  .hero h1 { font-size: 2.1rem; }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-panel {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (min-width: 960px)
   ============================================ */
@media (min-width: 960px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.1rem; }

  .hero--home {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  /* Show desktop nav, hide mobile toggle */
  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .related-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .steps {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .step {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-content h3,
  .step-content p {
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1200px)
   ============================================ */
@media (min-width: 1200px) {
  h1 { font-size: 2.65rem; }

  .hero h1 { font-size: 2.65rem; }

  .container {
    padding: 0 var(--space-xl);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .btn-cta,
  .cta-panel,
  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}