/* ============================================================
   PassportSeva.org — Global Stylesheet
   Theme: Clean Government Blue + Gold Accent
   Font: Literata (body) + DM Sans (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Literata:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:      #0f2556;
  --navy-dark: #091a3e;
  --blue:      #1a56db;
  --blue-lt:   #e8f0fe;
  --gold:      #c8972a;
  --gold-lt:   #fdf3dc;
  --green:     #1a7a4a;
  --green-lt:  #e8f5ee;
  --gray-50:   #f8f9fb;
  --gray-100:  #f1f3f7;
  --gray-200:  #e4e8ef;
  --gray-400:  #9aa3b2;
  --gray-600:  #4a5568;
  --gray-800:  #1e2533;
  --white:     #ffffff;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);

  --font-ui:   'DM Sans', sans-serif;
  --font-body: 'Literata', Georgia, serif;

  --max-w:     1140px;
  --header-h:  64px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4rem; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }

/* ── Header ────────────────────────────────────────────── */
.header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-title { font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -.2px; }
.logo-sub { font-size: 10.5px; color: #a8badb; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  color: #c8d9f5;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
  text-decoration: none;
}
.nav-link.active { color: var(--gold); }

.btn-login {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
}
.btn-login:hover { background: #b8851e !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: .3s;
}

/* ── Notice Bar ────────────────────────────────────────── */
.notice-bar {
  background: var(--gold-lt);
  border-bottom: 1px solid #e8d49a;
  padding: 7px 0;
  overflow: hidden;
}
.notice-scroll { display: flex; align-items: center; gap: 16px; white-space: nowrap; animation: ticker 40s linear infinite; }
.notice-label {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.notice-text { font-size: 12.5px; color: #7a5a10; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  line-height: 1;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #1447c0; color: var(--white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-lt); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: #b8851e; color: var(--white); text-decoration: none; }
.btn-sm { font-size: 12.5px; padding: 7px 14px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3a7a 60%, #1a56db 100%);
  color: var(--white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:transparent;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: #c8d9f5;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-badge svg { width: 13px; height: 13px; fill: var(--gold); }
.hero h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
  max-width: 680px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 15.5px;
  color: #b8ceee;
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-stat-val { font-size: 24px; font-weight: 700; color: var(--gold); }
.hero-stat-lbl { font-size: 12px; color: #8aaad4; margin-top: 2px; }

/* ── Quick Service Cards ────────────────────────────────── */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.quick-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.quick-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.quick-icon {
  width: 40px; height: 40px;
  background: var(--blue-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.quick-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.quick-title { font-size: 13.5px; font-weight: 600; color: var(--gray-800); line-height: 1.35; }
.quick-arrow { margin-top: auto; }
.quick-arrow svg { width: 14px; height: 14px; fill: var(--gray-400); }

/* ── Section Heading ─────────────────────────────────────── */
.section-head { margin-bottom: 32px; }
.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.section-sub { font-size: 15px; color: var(--gray-600); max-width: 560px; }
.divider { height: 3px; width: 48px; background: var(--gold); border-radius: 2px; margin: 12px 0 0; }

/* ── Info Cards ──────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ic-blue { background: var(--blue-lt); }
.ic-blue svg { fill: var(--blue); }
.ic-gold { background: var(--gold-lt); }
.ic-gold svg { fill: var(--gold); }
.ic-green { background: var(--green-lt); }
.ic-green svg { fill: var(--green); }
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* ── Steps ──────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.step-body p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }

/* ── Fee Table ──────────────────────────────────────────── */
.fee-table-wrap { overflow-x: auto; }
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.fee-table th {
  background: var(--navy);
  color: var(--white);
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
}
.fee-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
  vertical-align: top;
}
.fee-table tr:nth-child(even) td { background: var(--gray-50); }
.fee-table tr:hover td { background: var(--blue-lt); }
.fee-badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 4px;
}
.fee-badge.tatkal {
  background: #fff3e0;
  color: #c55a00;
}

/* ── Document Cards ─────────────────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.doc-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}
.doc-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.doc-card-title svg { width: 16px; height: 16px; fill: var(--blue); flex-shrink: 0; }
.doc-list { list-style: none; padding: 0; }
.doc-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.doc-list li:last-child { border-bottom: none; }
.doc-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── Alert / Info Box ───────────────────────────────────── */
.alert {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 20px 0;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-info { background: var(--blue-lt); color: #1a3a80; border-left: 3px solid var(--blue); }
.alert-info svg { fill: var(--blue); }
.alert-warn { background: var(--gold-lt); color: #7a5a10; border-left: 3px solid var(--gold); }
.alert-warn svg { fill: var(--gold); }
.alert-success { background: var(--green-lt); color: #145a36; border-left: 3px solid var(--green); }
.alert-success svg { fill: var(--green); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  list-style: none;
  user-select: none;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .25s;
  fill: var(--gray-400);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); fill: var(--blue); }
.faq-a {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 16px; }

/* ── Highlight Banner ───────────────────────────────────── */
.hl-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a56db 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hl-banner h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; margin-bottom: 6px; }
.hl-banner p { font-size: 14px; color: #9ab6e0; }

/* ── Contact Info ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--blue-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.contact-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); margin-bottom: 3px; }
.contact-val { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.contact-sub { font-size: 12.5px; color: var(--gray-600); margin-top: 2px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; flex-wrap: wrap; }
.breadcrumb li { font-size: 12.5px; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.breadcrumb li a { color: var(--blue); }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li svg { width: 12px; height: 12px; fill: var(--gray-400); }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  color: var(--white);
  padding: 40px 0 36px;
}
.page-hero-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.page-hero-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.page-hero h1 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 8px; }
.page-hero p { font-size: 14.5px; color: #9ab6e0; max-width: 560px; }

/* ── Sidebar Layout ─────────────────────────────────────── */
.with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 28px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color .15s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--blue); text-decoration: none; }
.sidebar-link svg { width: 14px; height: 14px; fill: var(--blue); flex-shrink: 0; }

/* ── Checklist ──────────────────────────────────────────── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--gray-700, #374151);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── Status Tracker ─────────────────────────────────────── */
.status-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}
.status-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 100px;
}
.status-step::before {
  content: '';
  position: absolute;
  top: 17px; left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.status-step:last-child::before { display: none; }
.status-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  margin-bottom: 8px;
}
.status-step.done .status-dot { background: var(--green); color: var(--white); }
.status-step.active .status-dot { background: var(--blue); color: var(--white); box-shadow: 0 0 0 4px var(--blue-lt); }
.status-lbl { font-size: 11.5px; font-weight: 500; color: var(--gray-600); }
.status-step.done .status-lbl { color: var(--green); }
.status-step.active .status-lbl { color: var(--blue); font-weight: 700; }

/* ── PSK Kendra List ─────────────────────────────────────── */
.kendra-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.kendra-table th { background: var(--gray-100); padding: 10px 14px; text-align: left; font-weight: 600; font-size: 12.5px; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.kendra-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.kendra-table tr:hover td { background: var(--gray-50); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: #8aaad4;
  padding: 48px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; color: #6a8ab4; max-width: 280px; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--white); margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 13px; color: #6a8ab4; transition: color .15s; }
.footer-links li a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #1e3160;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #3d5a8a; }
.footer-disclaimer { font-size: 11.5px; color: #3d5a8a; line-height: 1.6; margin-top: 12px; }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-muted { color: var(--gray-600); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Back to top */
.btt {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 999;
}
.btt.show { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--blue); transform: translateY(-2px); }
.btt svg { width: 16px; height: 16px; fill: var(--white); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .nav { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--navy); padding: 12px 20px 20px; gap: 2px; z-index: 998; border-top: 1px solid rgba(255,255,255,.1); }
  .nav.open { display: flex; }
  .nav-link { padding: 10px 14px; font-size: 14.5px; border-radius: var(--radius-sm); display: block; }
  .hamburger { display: flex; }
  .header { position: sticky; top: 0; }
  .topbar-links { display: none; }
  .hero { padding: 40px 0 32px; }
  .hero-stats { gap: 20px; }
  .section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .hl-banner { flex-direction: column; }
  .sidebar { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .status-steps { gap: 16px; }
  .status-step::before { display: none; }
  .status-step { align-items: flex-start; flex-direction: row; text-align: left; gap: 12px; min-width: unset; flex: unset; width: 100%; }
  .status-dot { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 480px) {
  .quick-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 22px; }
  .container { padding: 0 14px; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}