/* ==========================================================================
   PDF Password Unlock - Privacy Policy & Trust Center
   Theme: Deep Space Glassmorphism (Cyan & Purple Neon)
   Developer: Mahesh Varma • JEWEALITY
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-dark: #070B14;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-hover: rgba(20, 32, 58, 0.82);
  --bg-card-elevated: rgba(26, 40, 71, 0.7);
  --glass-border: rgba(0, 210, 255, 0.18);
  --glass-border-hover: rgba(0, 210, 255, 0.48);
  --glass-border-purple: rgba(157, 78, 221, 0.28);
  
  --accent-cyan: #00D2FF;
  --accent-cyan-glow: rgba(0, 210, 255, 0.4);
  --accent-sky: #38BDF8;
  --accent-purple: #9D4EDD;
  --accent-indigo: #7928CA;
  --accent-amber: #FFA726;
  --accent-green: #10B981;
  --accent-red: #FF5252;
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dim: #475569;
  
  --gradient-cta: linear-gradient(135deg, #00D2FF 0%, #7928CA 100%);
  --gradient-cta-hover: linear-gradient(135deg, #38BDF8 0%, #9D4EDD 100%);
  --gradient-text: linear-gradient(135deg, #FFFFFF 20%, #38BDF8 70%, #C084FC 100%);
  --gradient-border: linear-gradient(135deg, rgba(0, 210, 255, 0.45), rgba(157, 78, 221, 0.35), rgba(0, 210, 255, 0.1));
  
  --shadow-glass: 0 12px 36px -4px rgba(0, 0, 0, 0.55), 0 0 24px -6px rgba(0, 210, 255, 0.12);
  --shadow-glow: 0 0 35px rgba(0, 210, 255, 0.25);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --nav-height: 76px;
  --max-width: 1200px;
}

/* Base Resets & Anti-Overflow Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Background Atmosphere Gradients */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  top: -10%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.35) 0%, rgba(121, 40, 202, 0.1) 70%, transparent 100%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.blob-2 {
  top: 40%;
  right: 0%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.3) 0%, rgba(0, 210, 255, 0.08) 70%, transparent 100%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.blob-3 {
  bottom: -15%;
  left: 20%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(56, 189, 248, 0.05) 70%, transparent 100%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
  100% { transform: translate(-20px, -30px) scale(0.95); }
}

/* Typography & Utilities */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
  word-break: break-word;
}

a:hover {
  color: var(--accent-sky);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Glass Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.4), transparent);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 40px -4px rgba(0, 0, 0, 0.65), 0 0 30px -4px rgba(0, 210, 255, 0.2);
}

/* Sticky Navigation Header */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: var(--nav-height);
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px var(--accent-cyan-glow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.brand-link:hover .brand-logo-wrap {
  transform: scale(1.06) rotate(-2deg);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  background: #0B1220;
}

.brand-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-name span {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(0, 210, 255, 0.08);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-cta);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.45);
  filter: brightness(1.08);
  text-decoration: none;
}

.btn-cta:active {
  transform: translateY(1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Section */
.hero-section {
  padding: 56px 0 36px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--accent-cyan);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  text-align: center;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 800;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-title-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

.meta-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 100%;
  word-break: break-word;
}

.meta-tag svg {
  flex-shrink: 0;
}

.meta-tag strong {
  color: var(--text-primary);
}

/* Trust Pillar Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0 60px;
  width: 100%;
  max-width: 100%;
}

.pillar-card {
  padding: 26px 22px;
  text-align: left;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.pillar-icon-cyan {
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--accent-cyan);
}

.pillar-icon-purple {
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid rgba(157, 78, 221, 0.35);
  color: var(--accent-purple);
}

.pillar-icon-green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word;
}

/* Main Content Layout with Sidebar */
.content-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 80px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

/* Sticky Sidebar */
.sidebar-sticky {
  position: sticky;
  top: 100px;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  min-width: 0;
  width: 100%;
}

.toc-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-left: 10px;
  font-weight: 700;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toc-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--accent-cyan);
  text-decoration: none;
}

.toc-link.active {
  color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.08);
  border-left-color: var(--accent-cyan);
  font-weight: 600;
}

.sidebar-developer-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.825rem;
  color: var(--text-muted);
  word-break: break-word;
}

.sidebar-developer-box strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* Policy Content Sections */
.policy-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.policy-section {
  padding: 30px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.section-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: var(--accent-cyan);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-title {
  font-size: 1.4rem;
  color: #FFFFFF;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.policy-text {
  color: var(--text-secondary);
  font-size: 0.965rem;
  line-height: 1.75;
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.policy-list {
  margin: 14px 0 16px 20px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.policy-list li {
  margin-bottom: 10px;
  padding-left: 6px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.policy-list li strong {
  color: var(--text-primary);
}

/* Callout Box */
.callout-box {
  background: rgba(11, 20, 38, 0.75);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 18px 0;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.callout-box.green {
  border-left-color: var(--accent-green);
  background: rgba(16, 185, 129, 0.08);
}

.callout-box.amber {
  border-left-color: var(--accent-amber);
  background: rgba(255, 167, 38, 0.08);
}

.callout-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.callout-title svg {
  flex-shrink: 0;
}

.callout-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Code Path Box */
.path-code {
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
  margin-top: 6px;
  border: 1px solid rgba(0, 210, 255, 0.2);
}

/* Data Table Component with Scroll Container */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.data-table th {
  background: rgba(26, 40, 71, 0.7);
  color: var(--text-primary);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  word-break: break-word;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-blue {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 210, 255, 0.35);
}

/* Contact Card */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  width: 100%;
  max-width: 100%;
}

.contact-item {
  background: rgba(11, 18, 33, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details {
  min-width: 0;
  overflow: hidden;
}

.contact-details h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 4px;
  word-break: break-word;
}

.contact-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.15);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 8, 15, 0.95);
  padding: 48px 0 28px;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
}

.footer-brand h3 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 380px;
  word-break: break-word;
}

.footer-col h4 {
  font-size: 0.92rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .sidebar-sticky {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-actions .btn-cta {
    display: none;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.68rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    gap: 16px;
    box-sizing: border-box;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding: 38px 0 24px;
  }

  .hero-badge-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .meta-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .policy-section {
    padding: 22px 18px;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 14px;
  }

  .hero-section {
    padding: 28px 0 18px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-sub {
    display: none;
  }

  .brand-logo-wrap {
    width: 34px;
    height: 34px;
  }

  .pillar-card {
    padding: 20px 16px;
  }

  .policy-section {
    padding: 18px 14px;
  }

  .section-num {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .policy-list {
    margin-left: 14px;
  }
}
