/* ══════════════════════════════════════════════════════════════
   SHARED STYLES — Creative Augmentation
   Used across all internal & service pages
   ══════════════════════════════════════════════════════════════ */

/* ────────── THEME TOKENS ────────── */
:root {
  --accent: #FF5C00;
  --accent2: #FF8A3D;
  --transition-theme: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --border: rgba(255,255,255,0.07);
  --text: #F0EDE8;
  --muted: #888480;
  --white: #ffffff;
  --nav-bg: rgba(10,10,10,0.88);
  --grid-line: rgba(255,255,255,0.025);
  --hero-glow1: rgba(255,92,0,0.12);
  --hero-glow2: rgba(255,92,0,0.06);
  --step-num-color: rgba(255,255,255,0.04);
  --why-card-bg: #0a0a0a;
  --shadow: none;
  --toggle-bg: #1e1e1e;
  --toggle-border: rgba(255,255,255,0.12);
  --toggle-knob: #FF5C00;
  --toggle-icon-moon: #fff;
  --toggle-icon-sun: #555;
}

[data-theme="light"] {
  --bg: #F7F4EF;
  --bg2: #EDEAE4;
  --bg3: #E4E0D9;
  --border: rgba(0,0,0,0.08);
  --text: #1a1714;
  --muted: #7a7470;
  --white: #1a1714;
  --nav-bg: rgba(247,244,239,0.92);
  --grid-line: rgba(0,0,0,0.04);
  --hero-glow1: rgba(255,92,0,0.08);
  --hero-glow2: rgba(255,92,0,0.04);
  --step-num-color: rgba(0,0,0,0.05);
  --why-card-bg: #F7F4EF;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --toggle-bg: #e0ddd7;
  --toggle-border: rgba(0,0,0,0.1);
  --toggle-knob: #FF5C00;
  --toggle-icon-moon: #aaa;
  --toggle-icon-sun: #fff;
}

/* ────────── GLOBAL ────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

/* ────────── THEME TOGGLE ────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-border);
  border-radius: 40px;
  padding: 4px 6px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  width: 72px;
  height: 34px;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); }

.toggle-icon {
  position: absolute;
  width: 26px; height: 26px;
  top: 3px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
  z-index: 1;
}
.toggle-icon.sun { left: 3px; }
.toggle-icon.moon { right: 3px; }
.toggle-icon svg { width: 13px; height: 13px; }
.toggle-icon.sun svg { stroke: var(--toggle-icon-sun); fill: none; }
.toggle-icon.moon svg { stroke: var(--toggle-icon-moon); fill: none; }

.toggle-knob {
  position: absolute;
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  top: 3px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  box-shadow: 0 2px 8px rgba(255,92,0,0.4);
}
[data-theme="dark"] .toggle-knob { left: calc(100% - 29px); }
[data-theme="light"] .toggle-knob { left: 3px; }

.toggle-label {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: opacity 0.3s, left 0.3s;
  pointer-events: none;
}
[data-theme="dark"] .toggle-label { right: 6px; }
[data-theme="light"] .toggle-label { left: 6px; }

/* ────────── NAV ────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.4s;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  transition: filter 0.4s;
}
[data-theme="light"] .nav-logo-img {
  filter: invert(1);
}

.nav-right {
  display: flex; align-items: center; gap: 32px;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; }

/* ────────── NAV DROPDOWN ────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 0; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px !important; font-weight: 400 !important;
  color: var(--muted) !important; text-decoration: none;
  text-transform: none !important; letter-spacing: 0 !important;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--accent) !important; background: rgba(255,92,0,0.06);
}

/* ────────── MOBILE SUBMENU ────────── */
.mobile-submenu {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  justify-content: center; margin-top: -16px;
}
.mobile-submenu a.mobile-submenu-link {
  font-size: 13px !important; font-weight: 400 !important;
  color: var(--muted) !important; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-submenu a.mobile-submenu-link:hover {
  color: var(--accent) !important; border-color: var(--accent);
}

/* ────────── BUTTONS ────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 16px 32px; border-radius: 4px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translate(3px, -3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--muted); }

/* ────────── SECTIONS COMMON ────────── */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.section-header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 72px; gap: 48px; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--white);
  line-height: 1.2; max-width: 520px; transition: color 0.4s;
}
.section-desc { font-size: 16px; font-weight: 300; color: var(--muted); max-width: 480px; line-height: 1.7; }

/* ────────── PAGE HERO ────────── */
.page-hero {
  padding: 180px 60px 100px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, var(--hero-glow1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, var(--hero-glow2) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.4s;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  transition: background-image 0.4s;
}
.page-hero-eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.page-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--accent); display: inline-block;
}
.page-hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.15; letter-spacing: -0.03em;
  color: var(--white);
  max-width: 780px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  transition: color 0.4s;
}
.page-hero-headline em { font-style: normal; color: var(--accent); }
.page-hero-desc {
  font-size: 18px; font-weight: 300;
  color: var(--muted); max-width: 560px;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  transition: color 0.4s;
}
.page-hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-top: 40px;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}

/* ────────── OFFERINGS GRID (service pages) ────────── */
.offerings {
  padding: 120px 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.offering-card {
  background: var(--bg2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.offering-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.offering-card:hover { background: var(--bg3); }
.offering-card:hover::before { transform: scaleX(1); }
.offering-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent); opacity: 0.6;
  position: absolute; top: 20px; right: 20px;
}
.offering-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em; line-height: 1.35;
  margin-bottom: 14px;
  transition: color 0.4s;
}
.offering-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ────────── WHY SECTION (service pages) ────────── */
.why-service {
  padding: 120px 60px;
  transition: background 0.4s;
}
.why-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-service-big {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.35;
  transition: color 0.4s;
}
.why-service-big em { font-style: normal; color: var(--accent); }
.why-service-detail { padding-top: 8px; }
.why-service-detail p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.why-service-detail p:last-child { margin-bottom: 0; }

/* ────────── TOOLS STRIP (service pages) ────────── */
.tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.tool-tag {
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(255, 92, 0, 0.08);
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s, color 0.4s;
}

/* ────────── CTA ────────── */
.cta-section { padding: 160px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,92,0,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.cta-label::before, .cta-label::after { content: ''; width: 24px; height: 1px; background: var(--accent); }
.cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(42px, 6vw, 86px); font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.15; margin-bottom: 32px; transition: color 0.4s; }
.cta-title em { font-style: normal; color: var(--accent); }
.cta-sub { font-size: 18px; color: var(--muted); font-weight: 300; margin-bottom: 56px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 20px; }

/* ────────── FOOTER ────────── */
footer { border-top: 1px solid var(--border); padding: 60px 60px 40px; transition: border-color 0.4s; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; transition: color 0.4s; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); transition: border-color 0.4s; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-socials { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 14px; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,92,0,0.06); }

/* ────────── HAMBURGER & MOBILE MENU ────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 4px;
  font-size: 16px; font-weight: 700;
  margin-top: 8px;
}

/* ────────── RESPONSIVE ────────── */

/* Tablet */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  .page-hero { padding: 140px 32px 80px; }
  .offerings { padding: 80px 32px; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .why-service { padding: 80px 32px; }
  .why-service-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { padding: 100px 32px; }
  footer { padding: 48px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; }
  .nav-right { gap: 16px; }
  .nav-logo-img { height: 26px; }

  .page-hero { padding: 120px 20px 60px; }
  .page-hero-headline { font-size: clamp(32px, 8vw, 48px); }
  .page-hero-desc { font-size: 16px; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }

  .offerings { padding: 60px 20px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { padding: 32px 24px; }

  .why-service { padding: 60px 20px; }
  .why-service-grid { gap: 32px; }
  .why-service-big { font-size: clamp(20px, 5.5vw, 28px); }

  .cta-section { padding: 80px 20px; }
  .cta-sub { font-size: 16px; }

  footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero-headline { font-size: clamp(28px, 8vw, 38px); }
  .btn-primary { width: 100%; justify-content: center; }
  .theme-toggle { width: 60px; height: 30px; }
  .toggle-icon { width: 22px; height: 22px; }
  .toggle-icon svg { width: 11px; height: 11px; }
  .toggle-knob { width: 22px; height: 22px; }
  [data-theme="dark"] .toggle-knob { left: calc(100% - 25px); }
  [data-theme="light"] .toggle-knob { left: 3px; }
}

/* ────────── ANIMATIONS ────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ────────── FAQ SECTION ────────── */
.faq { padding: 100px 60px; text-align: center; }
.faq .faq-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.faq .faq-label::before, .faq .faq-label::after { content: ''; width: 24px; height: 1px; background: var(--accent); }
.faq .faq-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(24px, 2.8vw, 36px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--white); line-height: 1.35; margin-bottom: 48px;
  transition: color 0.4s;
}
.faq .faq-title em { font-style: normal; color: var(--accent); }
.faq-grid { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; gap: 20px;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--white); letter-spacing: -0.01em; line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); font-weight: 300;
  transition: transform 0.3s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300;
}

@media (max-width: 768px) {
  .faq { padding: 60px 20px; }
  .faq .faq-title { margin-bottom: 32px; }
  .faq-question { font-size: 15px; padding: 20px 0; }
  .faq-answer-inner { font-size: 14px; }
}

/* ────────── LEGAL PAGES ────────── */
.page-header {
  padding: 180px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(255,92,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.page-header-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--accent); display: inline-block;
}
.page-header-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--white);
  max-width: 700px; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  transition: color 0.4s;
}
.page-header-date {
  font-size: 14px; color: var(--muted); font-weight: 300;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.legal-content {
  padding: 0 60px 120px;
  max-width: 860px;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; color: var(--white);
  margin-top: 56px; margin-bottom: 16px;
  line-height: 1.3; transition: color 0.4s;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 20px;
  color: var(--white);
  margin-top: 32px; margin-bottom: 12px;
  line-height: 1.4; transition: color 0.4s;
}
.legal-content p {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; margin-bottom: 16px; font-weight: 300;
}
.legal-content ul, .legal-content ol {
  color: var(--muted); font-weight: 300;
  font-size: 16px; line-height: 1.8;
  margin-bottom: 16px; padding-left: 24px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--accent2); }
.legal-divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 48px 0; opacity: 0.4;
}

@media (max-width: 1024px) {
  .page-header { padding: 140px 32px 60px; }
  .legal-content { padding: 0 32px 80px; }
}
@media (max-width: 768px) {
  .page-header { padding: 120px 20px 48px; }
  .page-header-title { font-size: clamp(32px, 8vw, 48px); }
  .legal-content { padding: 0 20px 60px; }
  .legal-content h2 { font-size: 24px; margin-top: 40px; }
  .legal-content h3 { font-size: 18px; }
}
@media (max-width: 480px) {
  .page-header-title { font-size: clamp(28px, 8vw, 40px); }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ────────── CUSTOM CURSOR ────────── */
body.custom-cursor-active { cursor: none; }
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,92,0,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body.custom-cursor-active { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
