/* ═══════════════════════════════════════════════════════════════
   MenuPOS — Dark Corporate Premium Design System
   Inter · Dark Theme · Glassmorphism · Blue Accents
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Dark Palette ── */
  --bg-deepest: #030712;
  --bg-deep: #0B0F19;
  --bg-base: #111827;
  --bg-raised: #1F2937;
  --bg-card: rgba(31, 41, 55, 0.55);
  --bg-card-solid: #1a2233;
  --bg-glass: rgba(17, 24, 39, 0.7);

  /* ── Accent — Blue ── */
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-dark: #1D4ED8;
  --accent-muted: rgba(37, 99, 235, 0.15);
  --accent-border: rgba(37, 99, 235, 0.3);
  --accent-glow: rgba(37, 99, 235, 0.12);

  /* ── Secondary ── */
  --emerald: #10B981;
  --emerald-muted: rgba(16, 185, 129, 0.15);

  /* ── Text ── */
  --white: #ffffff;
  --text: #F9FAFB;
  --text-mid: #D1D5DB;
  --text-soft: #9CA3AF;
  --text-muted: #6B7280;

  /* ── Borders ── */
  --border: rgba(255, 255, 255, 0.06);
  --border-mid: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);

  /* ── Fonts ── */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.45);
  --shadow-accent: 0 4px 24px rgba(37, 99, 235, 0.25);
  --shadow-accent-lg: 0 8px 40px rgba(37, 99, 235, 0.3);

  /* ── Radii ── */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* ── Layout ── */
  --max-w: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION — Dark glassmorphism nav bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(11, 15, 25, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom-color: var(--border-mid);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--accent);
  background: var(--accent-muted);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent) !important;
  color: var(--bg-deep) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 10px !important;
  margin-left: 0.6rem;
  transition: all 0.25s !important;
  box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent-lg) !important;
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.06);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO — Dark gradient mesh header
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  padding: 8rem 2rem 3.5rem;
  background: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-deep) 60%, var(--bg-base) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
}

.section-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.section-kicker-pill .kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.update-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  backdrop-filter: blur(8px);
}

.update-date svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POLICY LAYOUT — Dark two-column with glass sidebar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.toc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}

.toc-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.toc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.toc-card ul a {
  font-size: 0.84rem;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  display: block;
  transition: all 0.2s;
  line-height: 1.4;
  border-left: 2px solid transparent;
}

.toc-card ul a:hover {
  color: var(--accent);
  background: var(--accent-muted);
}

.toc-card ul a.active {
  color: var(--accent);
  background: var(--accent-muted);
  border-left-color: var(--accent);
  font-weight: 600;
}

.toc-download {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: var(--shadow-accent);
}

.toc-download:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

.toc-download svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POLICY CONTENT — Premium dark content styling
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy-content {
  min-width: 0;
}

.policy-content section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.policy-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.3;
}

.sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.policy-content p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul,
.policy-content ol {
  margin: 0.8rem 0 1rem 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.policy-content li {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.policy-content li::marker {
  color: var(--accent);
}

.policy-content h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.6rem 0 0.5rem;
}

.policy-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.policy-content a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.highlight-box {
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.3rem 0;
  border-left: 3px solid var(--accent);
}

.highlight-box p {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin: 0;
  line-height: 1.65;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — Sleek dark corporate footer
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--bg-deepest);
  padding: 3.5rem 2rem 2rem;
  margin-top: 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-playstore {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 0.6rem 1.15rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.25s;
  width: fit-content;
  margin-top: 0.3rem;
  box-shadow: var(--shadow-accent);
}

.footer-playstore:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent-lg);
}

.footer-playstore svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.86rem;
  color: var(--text-soft);
  transition: all 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--accent);
}

.footer-india {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE — Dark glass cards & form
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}

.contact-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.06);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: -0.2px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.contact-card a.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a.email-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.escalation-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-raised);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  margin-top: 0.8rem;
  line-height: 1.55;
}

.escalation-note a {
  color: var(--accent);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  background: var(--bg-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s;
}

.social-item:hover {
  border-color: var(--accent-border);
  background: var(--accent-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-item-icon.ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: white; }
.social-item-icon.th { background: #333; color: white; }
.social-item-icon.yt { background: #FF0000; color: white; }
.social-item-icon.x  { background: #333; color: white; }

.social-item-text { display: flex; flex-direction: column; }
.social-item-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.social-item-handle { font-size: 0.74rem; color: var(--text-muted); }
.social-item:hover .social-item-name { color: var(--accent); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.contact-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

.contact-form-wrap .form-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-raised);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
  background: var(--bg-base);
}

.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-accent);
}

.btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent-lg);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
  line-height: 1.5;
}

.form-note a { color: var(--accent); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--emerald);
  font-size: 1.5rem;
}

.form-success h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BREAKPOINTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem 4rem;
  }
  .policy-toc {
    position: static;
  }
  .toc-download { display: none; }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .nav-inner { padding: 0 1.2rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-base);
    padding: 1rem;
    border-bottom: 1px solid var(--border-mid);
    gap: 0.15rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  .nav-links a {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .page-hero {
    padding: 6.5rem 1.5rem 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    letter-spacing: -0.8px;
  }

  .page-hero p {
    font-size: 0.92rem;
  }

  .policy-layout {
    padding: 2rem 1.2rem 3rem;
  }

  .footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrap {
    padding: 2.5rem 1.2rem 3rem;
  }

  .contact-form-wrap {
    padding: 1.8rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOGO IMAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE LOADER — Smooth loading transition
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-mid);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
}

.loader-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.92); }
}
