/* =============================================
   HELTHCARD — Medilista Pvt Ltd
   Production Stylesheet
   ============================================= */


/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a2240;
  --brand:       #124076;
  --brand-mid:   #1a5494;
  --teal:        #0f766e;
  --teal-light:  #e6f4f3;
  --amber:       #b45309;
  --amber-light: #fef3c7;
  --red-light:   #fef2f2;
  --red:         #b91c1c;
  --slate-900:   #0f172a;
  --slate-800:   #1e293b;
  --slate-700:   #334155;
  --slate-600:   #475569;
  --slate-400:   #94a3b8;
  --slate-200:   #e2e8f0;
  --slate-100:   #f1f5f9;
  --slate-50:    #f8fafc;
  --white:       #ffffff;
  --page-bg:     #edf2f8;

  --font-display: 'Georgia', 'Cambria', 'Times New Roman', Times, serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm:  0 1px 3px rgba(10,34,64,.08), 0 1px 2px rgba(10,34,64,.05);
  --shadow-md:  0 4px 12px rgba(10,34,64,.10), 0 2px 6px rgba(10,34,64,.06);
  --shadow-lg:  0 10px 30px rgba(10,34,64,.12), 0 4px 12px rgba(10,34,64,.07);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --header-h:   68px;
  --max-w:      1120px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--slate-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background Watermark */
.page-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background-image: url('logo_watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.27;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-mid); }
a:focus-visible { outline: 3px solid var(--brand-mid); outline-offset: 3px; border-radius: 3px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem; font-weight: 600; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 12px rgba(10,34,64,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-block { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  mix-blend-mode: normal;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.brand-sub {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.site-nav a:focus-visible { outline-color: rgba(255,255,255,.6); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline: 2px solid rgba(255,255,255,.6); }
.hamburger { display: block; width: 22px; height: 2px; background: currentColor; position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor;
  transition: transform .25s;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(10,34,64,.3);
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex; align-items: center;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brand) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: #93c5fd; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.trust-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}
.trust-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(74,222,128,.25);
  color: #4ade80;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none;
  min-height: 44px; min-width: 44px;
  transition: all .25s ease;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid rgba(255,255,255,.7); outline-offset: 3px; }

.btn-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:hover { background: #e0e9f5; color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }

.btn-brand {
  background: var(--brand);
  color: var(--white);
}
.btn-brand:hover { background: var(--brand-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Hero action card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: .85rem;
  color: var(--slate-600);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--slate-800);
  font-size: .9rem; font-weight: 500;
  transition: all .2s;
  text-decoration: none;
  min-height: 44px;
}
.quick-link:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.quick-link-arrow { font-size: .75rem; opacity: .5; transition: opacity .2s, transform .2s; }
.quick-link:hover .quick-link-arrow { opacity: 1; transform: translateX(3px); }

.hero-card-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
  font-size: .78rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.hero-card-note strong { color: var(--slate-800); }

/* ══════════════════════════════════════════
   SECTIONS — shared
══════════════════════════════════════════ */
section { padding: var(--section-py) 0; }
section:nth-child(odd) { background: #ffffff; }
section:nth-child(even) { background: #f0f5fb; }

/* Named section backgrounds */
#about    { background: #f8fbff !important; }
#services { background: #ffffff !important; }
#privacy  { background: #f8fbff !important; }
#refunds  { background: #fffdf7 !important; }
#terms    { background: #f8fbff !important; }
#contact  { background: #f0f8f5 !important; }

.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.section-intro {
  font-size: 1rem;
  color: var(--slate-600);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* Policy sections differ */
.policy-section .section-intro { margin-bottom: 32px; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.about-body p {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-body p:last-child { margin-bottom: 0; }

.highlight-block {
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  background: #e8f1fb;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}
.highlight-block p {
  margin: 0;
  font-size: .95rem;
  color: var(--slate-700);
}

/* Business info card */
.biz-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.biz-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.biz-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.biz-card-header h3 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.biz-card-header span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  display: block; margin-top: 2px;
}

.biz-details { display: flex; flex-direction: column; gap: 14px; }
.biz-row { display: flex; gap: 12px; align-items: flex-start; }
.biz-row-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.biz-row-content { flex: 1; }
.biz-row-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block; margin-bottom: 2px;
}
.biz-row-value {
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.biz-row-value a { color: #93c5fd; }
.biz-row-value a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fdfdff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: #eef4fb;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--brand); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card p {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PAYMENT INFO
══════════════════════════════════════════ */
.payment-section { background: var(--navy) !important; }
.payment-section .section-label { color: #93c5fd; }
.payment-section .section-title { color: var(--white); }
.payment-section .section-intro { color: rgba(255,255,255,.7); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.payment-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: background .25s;
}
.payment-card:hover { background: rgba(255,255,255,.12); }
.payment-card-icon { font-size: 1.5rem; margin-bottom: 12px; }
.payment-card h3 { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.payment-card p  { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ══════════════════════════════════════════
   POLICY SECTIONS
══════════════════════════════════════════ */
.policy-section { background: var(--white) !important; }
.policy-section:nth-child(even) { background: var(--slate-50) !important; }

.policy-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}

.policy-block { margin-bottom: 28px; }
.policy-block:last-child { margin-bottom: 0; }

.policy-block h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--slate-200);
}

.policy-block p {
  font-size: .95rem;
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 10px;
}
.policy-block p:last-child { margin-bottom: 0; }

.policy-block ul {
  padding-left: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 10px;
}
.policy-block ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--slate-700);
  line-height: 1.7;
}
.policy-block ul li::before {
  content: '—';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-callout {
  background: #e6f7f4;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 12px 0;
  font-size: .9rem;
  color: #134e4a;
  line-height: 1.7;
}
.policy-callout strong { color: #0f4c44; }

.policy-warning {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 12px 0;
  font-size: .9rem;
  color: #78350f;
  line-height: 1.7;
}

.policy-last-updated {
  display: inline-block;
  font-size: .78rem;
  color: var(--slate-400);
  font-weight: 500;
  margin-bottom: 28px;
  background: var(--slate-100);
  padding: 4px 12px;
  border-radius: 99px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-intro p {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: border-color .2s;
}
.contact-method:hover { border-color: var(--brand); }
.contact-method-icon {
  width: 40px; height: 40px;
  background: #eef4fb;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-method-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate-400);
  display: block; margin-bottom: 3px;
}
.contact-method-value {
  font-size: .95rem; font-weight: 500;
  color: var(--slate-800);
  line-height: 1.5;
}
.contact-method-value a { color: var(--brand); }

/* Contact sidebar map card */
.contact-map-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Map styling - interactive leaflet map */
.real-map {
  width: 100%;
  height: 260px;
  background: #dbeafe;
}

#contact-map.leaflet-container {
  font-family: inherit;
}

.contact-map-info { padding: 20px 20px 22px; }
.contact-map-info h3 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.contact-map-info p {
  font-size: .85rem; color: var(--slate-600);
  line-height: 1.7; margin-bottom: 14px;
}
.contact-map-info a {
  font-size: .85rem; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px;
}
.contact-map-info a:hover { color: var(--brand-mid); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--slate-900);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
  background: transparent;
  mix-blend-mode: normal;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.footer-brand-sub { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-brand-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }

.footer-col h4 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom p a { color: rgba(255,255,255,.5); }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 48px; }
  .hero-card { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --section-py: 44px; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .brand-logo { width: 36px; height: 36px; }
  .footer-logo { width: 48px; height: 48px; }
  
  .page-watermark {
    width: 90vw;
    height: 90vw;
    max-width: 400px;
    max-height: 400px;
    opacity: 0.27;
  }

  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section-title { font-size: 1.4rem; }

  .policy-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 400px) {
  .hero-badge { font-size: .7rem; }
  .section-label { font-size: .68rem; }
  
  .brand-logo { width: 32px; height: 32px; }
  .brand-name { font-size: 1.1rem; }
  .brand-sub { font-size: .65rem; }
  
  .page-watermark {
    width: 90vw;
    height: 90vw;
    max-width: 350px;
    max-height: 350px;
    opacity: 0.27;
  }
}

/* ══════════════════════════════════════════
   PRINT
══════════════════════════════════════════ */
@media print {
  .site-header, .hero-actions, .hero-card, .nav-toggle, .site-footer { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  .policy-card { box-shadow: none; border: 1px solid #ccc; }
  .section-title { color: black; }
  a { color: black; text-decoration: underline; }
}