/* =============================================
   PAVIONX — Privacy Policy Page CSS
   Theme: White + Electric Blue | Syne + DM Sans
   Matches Full PavionX Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #ffffff;
  --bg2:          #f4f6fb;
  --bg3:          #eef1f8;
  --surface:      #e8ecf5;
  --surface2:     #dde2ef;
  --border:       #d0d6e8;
  --accent:       #1a6bff;
  --accent2:      #0f55e0;
  --accent-soft:  rgba(26,107,255,0.08);
  --accent-mid:   rgba(26,107,255,0.15);
  --accent-glow:  rgba(26,107,255,0.20);
  --text:         #0d1226;
  --text-muted:   #4a5578;
  --text-dim:     #8a96b8;
  --white:        #ffffff;
  --green:        #00c48c;
  --orange:       #ff9e00;
  --purple:       #8b5cf6;
  --cyan:         #00b8d4;
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:       0 8px 40px rgba(26,107,255,0.10);
  --shadow-sm:    0 2px 16px rgba(26,107,255,0.07);
  --shadow-lg:    0 24px 80px rgba(26,107,255,0.13);
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ============ LOADER ============ */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.px-logo { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--accent); letter-spacing: -2px; animation: loaderPulse 0.8s ease infinite alternate; }
.loader-bar { width: 160px; height: 3px; background: var(--surface); border-radius: 10px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--accent); border-radius: 10px; animation: loadFill 1.4s ease forwards; }
@keyframes loadFill { to { width: 100%; } }
@keyframes loaderPulse { from { opacity: 0.4; } to { opacity: 1; } }

/* ============ PROGRESS BAR ============ */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 1200; width: 0%; transition: width 0.1s linear; box-shadow: 0 0 10px var(--accent-glow); pointer-events: none; }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9000; transform: translate(-50%,-50%); transition: opacity 0.3s; }
.cursor-dot { width: 8px; height: 8px; background: var(--accent); top: 0; left: 0; }
.cursor-ring { width: 34px; height: 34px; border: 2px solid rgba(26,107,255,0.5); top: 0; left: 0; transition: left 0.09s linear, top 0.09s linear, width 0.25s ease, height 0.25s ease, border-color 0.25s ease; }
.cursor-ring.ring-hover { width: 48px; height: 48px; border-color: var(--accent); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ NOISE ============ */
.noise-overlay { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ============ AMBIENT LIGHTS ============ */
.ambient-light { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; opacity: 0.4; filter: blur(90px); }
.al-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,107,255,0.07) 0%, transparent 70%); top: -200px; right: -200px; }
.al-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(26,107,255,0.05) 0%, transparent 70%); bottom: 20%; left: -150px; }
.al-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,196,140,0.04) 0%, transparent 70%); top: 50%; right: 10%; }

/* ============ CONTAINER & SECTION PAD ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.section-pad { padding: 100px 0; }

/* ============ LABELS / HEADINGS ============ */
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; color: var(--accent); padding: 5px 14px; border: 1px solid rgba(26,107,255,0.25); border-radius: 50px; background: var(--accent-soft); }
.section-label-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.section-label-wrap.center { justify-content: center; }
.section-heading { font-family: var(--font-head); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: var(--text); }
.gradient-text { color: var(--accent); }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 540px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ GLASS CARD ============ */
.glass-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.glass-card:hover { border-color: rgba(26,107,255,0.28); box-shadow: var(--shadow); }

/* ============ BUTTONS ============ */
.btn-glass-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; padding: 13px 26px; border-radius: 10px; border: 2px solid var(--accent); transition: var(--transition); }
.btn-glass-primary:hover { background: transparent; color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,107,255,0.22); }
.btn-glass-ghost { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--text); font-family: var(--font-body); font-weight: 600; font-size: 0.92rem; padding: 13px 26px; border-radius: 10px; border: 2px solid var(--border); transition: var(--transition); }
.btn-glass-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-glass-primary.large, .btn-glass-ghost.large { padding: 15px 32px; font-size: 0.98rem; }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(26,107,255,0.06); transition: var(--transition); }
.header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(26,107,255,0.10); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: var(--white); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: 0.04em; }
.logo-x { color: var(--accent); }
.nav-menu ul { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 0.86rem; font-weight: 500; color: var(--text-muted); padding: 8px 12px; border-radius: 8px; transition: var(--transition); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg2); }
.nav-link.active { color: var(--accent); }
.chevron { transition: transform var(--transition); }
.dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown { position: relative; }
.dropdown-panel { position: absolute; top: calc(100% + 10px); left: 50%; width: 560px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; transform: translateX(-50%) translateY(10px); }
.dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dp-inner { padding: 20px; }
.dp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.dp-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 9px; font-size: 0.84rem; color: var(--text-muted); font-weight: 500; transition: var(--transition); }
.dp-item:hover { background: var(--bg2); color: var(--accent); }
.dp-ico { font-size: 0.95rem; color: var(--accent); flex-shrink: 0; width: 16px; text-align: center; }
.nav-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); font-family: var(--font-body); font-size: 0.84rem; font-weight: 600; padding: 10px 20px; border-radius: 9px; transition: var(--transition); white-space: nowrap; }
.nav-cta-btn:hover { background: var(--text); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); flex-shrink: 0; }
.ham-line { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-line:nth-child(2) { opacity: 0; }
.hamburger.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE NAV ============ */
.mobile-overlay { position: fixed; inset: 0; background: rgba(13,18,38,0.4); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: var(--white); border-left: 1px solid var(--border); z-index: 1100; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); box-shadow: -10px 0 60px rgba(13,18,38,0.15); overflow-y: auto; }
.mobile-nav.active { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.mob-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mob-close { width: 34px; height: 34px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.mob-close:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.mob-list { padding: 16px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mob-link { display: block; padding: 12px 16px; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-muted); border-radius: 10px; transition: var(--transition); }
.mob-link:hover, .mob-link.active { color: var(--accent); background: var(--accent-soft); }

/* Mobile services dropdown accordion */
.mob-dropdown { display: flex; flex-direction: column; }
.mob-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 12px 16px; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text-muted); border-radius: 10px; transition: var(--transition); cursor: pointer; text-align: left; }
.mob-toggle:hover { color: var(--accent); background: var(--accent-soft); }
.mob-toggle svg { transition: transform var(--transition); flex-shrink: 0; }
.mob-dropdown.active .mob-toggle { color: var(--accent); background: var(--accent-soft); }
.mob-dropdown.active .mob-toggle svg { transform: rotate(180deg); }
.mob-sub { display: flex; flex-direction: column; gap: 2px; padding: 4px 8px; max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.mob-dropdown.active .mob-sub { max-height: 320px; }
.mob-sub li a { display: block; padding: 9px 16px; font-size: 0.88rem; color: var(--text-muted); border-radius: 8px; transition: var(--transition); }
.mob-sub li a:hover { color: var(--accent); background: var(--accent-soft); }

.mob-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--white); font-weight: 700; font-size: 0.95rem; padding: 14px 20px; border-radius: 10px; margin: 8px 16px 20px; text-align: center; transition: var(--transition); }
.mob-cta-btn:hover { background: var(--accent2); }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero { position: relative; overflow: hidden; background: var(--bg); padding: 160px 0 80px; display: flex; align-items: center; }
.hero-grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.25; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%); }
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-1 { width: 500px; height: 500px; top: -200px; right: -150px; background: radial-gradient(circle, rgba(26,107,255,0.08) 0%, transparent 70%); filter: blur(40px); }
.orb-2 { width: 380px; height: 380px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(0,196,140,0.05) 0%, transparent 70%); filter: blur(40px); }
.ph-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid var(--border); padding: 7px 18px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); width: fit-content; }
.badge-pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; animation: pulseDot 1.5s ease infinite; box-shadow: 0 0 0 0 rgba(26,107,255,0.4); }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(26,107,255,0.4); } 50% { box-shadow: 0 0 0 7px rgba(26,107,255,0); } }
.ph-title { font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text); }
.ph-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 580px; }
.ph-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-dim); font-weight: 500; }
.ph-breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.ph-breadcrumb a:hover { color: var(--accent); }
.ph-breadcrumb span:last-child { color: var(--accent); font-weight: 600; }
.bc-sep { color: var(--text-dim); }
.ph-updated { font-size: 0.82rem; color: var(--text-dim); display: flex; align-items: center; gap: 7px; }
.ph-updated i { color: var(--accent); }

/* =============================================
   POLICY CONTENT
   ============================================= */
.policy-section { background: var(--bg2); border-top: 1px solid var(--border); }
.policy-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }

/* TOC sidebar */
.policy-toc { position: sticky; top: 110px; }
.toc-card { padding: 26px 22px; }
.toc-title { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.toc-title i { color: var(--accent); }
.toc-list { display: flex; flex-direction: column; gap: 2px; }
.toc-link { display: block; padding: 9px 12px; font-size: 0.84rem; color: var(--text-muted); font-weight: 500; border-radius: 8px; transition: var(--transition); border-left: 2px solid transparent; }
.toc-link:hover { color: var(--accent); background: var(--bg); }
.toc-link.active { color: var(--accent); background: var(--accent-soft); border-left-color: var(--accent); font-weight: 600; }

/* Policy cards */
.policy-content { display: flex; flex-direction: column; gap: 20px; }
.policy-card { padding: 34px 36px; position: relative; }
.policy-num { position: absolute; top: 28px; right: 32px; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--surface2); line-height: 1; }
.policy-card h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 14px; padding-right: 50px; }
.policy-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; }
.policy-card p + .policy-list { margin-top: 14px; }
.policy-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.policy-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.policy-list li i { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 0.62rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Contact card */
.contact-card .policy-num { color: rgba(26,107,255,0.12); }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.contact-box-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; transition: var(--transition); }
.contact-box-item:hover { border-color: rgba(26,107,255,0.28); box-shadow: var(--shadow-sm); }
.cbi-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); border: 1px solid rgba(26,107,255,0.2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact-box-item a, .contact-box-item span, .contact-box-item strong { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.contact-box-item a:hover { color: var(--accent); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-orb-1 { width: 500px; height: 500px; top: -160px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(26,107,255,0.07) 0%, transparent 70%); filter: blur(50px); }
.cta-orb-2 { width: 300px; height: 300px; bottom: -80px; right: 10%; background: radial-gradient(circle, rgba(0,196,140,0.05) 0%, transparent 70%); filter: blur(40px); }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; position: relative; z-index: 1; }
.cta-inner .section-heading { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -1.5px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-top-line { height: 3px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; }
.footer-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); border-radius: 9px; }
.social-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-dim); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   RESPONSIVE — 1200px
   ============================================= */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .policy-layout { grid-template-columns: 240px 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 130px 0 60px; }
  .ph-title { font-size: clamp(2.1rem, 6vw, 3rem); }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .toc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .policy-card { padding: 28px 26px; }
  .contact-box { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 60px 0; }
  .page-hero { padding: 120px 0 50px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .ph-title { font-size: clamp(2rem, 7vw, 2.6rem); letter-spacing: -1px; }
  .ph-sub { font-size: 0.92rem; }
  .toc-list { grid-template-columns: repeat(2, 1fr); }
  .policy-card { padding: 24px 20px; }
  .policy-num { font-size: 1.7rem; top: 22px; right: 20px; }
  .policy-card h2 { font-size: 1.1rem; padding-right: 42px; }
  .contact-box { grid-template-columns: 1fr; }
  .cta-inner .section-heading { font-size: clamp(1.7rem, 6vw, 2.3rem); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 50px 0; }
  .page-hero { padding: 110px 0 44px; }
  .ph-title { font-size: clamp(1.8rem, 7.5vw, 2.2rem); }
  .btn-glass-primary, .btn-glass-ghost { font-size: 0.85rem; padding: 12px 20px; }
  .toc-list { grid-template-columns: 1fr; }
  .toc-card { padding: 20px 18px; }
  .policy-card { padding: 20px 16px; }
  .policy-num { font-size: 1.4rem; top: 18px; right: 16px; }
  .policy-card h2 { font-size: 1.02rem; padding-right: 36px; }
  .policy-card p { font-size: 0.86rem; }
}

/* =============================================
   RESPONSIVE — 375px
   ============================================= */
@media (max-width: 375px) {
  .ph-title { font-size: 1.7rem; }
  .section-heading { font-size: 1.6rem; }
}

/* =============================================
   RESPONSIVE — 320px
   ============================================= */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .ph-title { font-size: 1.55rem; }
  .section-heading { font-size: 1.5rem; }
}