/* ============================================
   Hawlean — Legal Site Stylesheet
   Matches real landing page design system
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #3D3D3D;
  --canvas: #F5F0EB;
  --gold: #C9A96E;
  --gold-dark: #A88B4A;
  --gold-hsl: 39 46% 61%;
  --gold-dark-hsl: 39 46% 47%;
  --navy: #1A3A5C;
  --champagne: #E8D5C4;
  --noir: #1A1A1A;
  --white: #FFFFFF;
  --muted: #b3b3b3;
  --border: #e5ddd5;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-premium:
    0 0 0 1px rgba(201, 169, 110, 0.07),
    0 1px 2px rgba(0,0,0,0.03),
    0 4px 12px rgba(201, 169, 110, 0.05),
    0 12px 28px rgba(0,0,0,0.06),
    0 28px 64px rgba(201, 169, 110, 0.04);
  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--canvas);
  color: var(--noir);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 200;
  transition: none;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(245, 240, 235, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 213, 196, 0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.navbar-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--noir);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.navbar-links a:hover {
  color: var(--noir);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta .btn-ghost {
  background: transparent;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.navbar-cta .btn-ghost:hover {
  background: rgba(0,0,0,0.04);
}

.navbar-cta .btn-gold-sm {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.navbar-cta .btn-gold-sm:hover {
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
  transform: translateY(-1px);
}

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

.hamburger:hover {
  background: rgba(0,0,0,0.04);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated morphing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -20%;
  left: -10%;
  background: rgba(201, 169, 110, 0.10);
  filter: blur(100px);
  animation: orb-morph 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: -5%;
  background: rgba(201, 169, 110, 0.07);
  filter: blur(120px);
  animation: orb-morph 12s ease-in-out infinite 3s;
}

@keyframes orb-morph {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.05) translate(20px, -10px); }
  66% { transform: scale(0.95) translate(-15px, 15px); }
}

/* Perspective grid */
.perspective-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55vh;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(300px) rotateX(60deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
  pointer-events: none;
}

/* Dot grid */
.dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #1A1A1A 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Floating 3D shapes */
.float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  animation: float-bob 5s ease-in-out infinite;
}

.float-shape svg {
  animation: float-rotate 16s linear infinite;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-rotate {
  from { transform: rotateX(20deg) rotateY(0deg); }
  to { transform: rotateX(20deg) rotateY(360deg); }
}

.shape-1 { top: 12%; left: 5%; animation-delay: 0s; }
.shape-2 { bottom: 15%; left: 8%; animation-delay: 1.5s; }
.shape-3 { top: 30%; right: 3%; animation-delay: 3s; }
.shape-4 { bottom: 25%; right: 6%; animation-delay: 0.8s; }

.shape-1 svg { animation-duration: 16s; }
.shape-2 svg { animation-duration: 22s; }
.shape-3 svg { animation-duration: 18s; }
.shape-4 svg { animation-duration: 20s; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 112px 0 80px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  border: 1px solid rgba(201, 169, 110, 0.20);
  background: rgba(201, 169, 110, 0.06);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 40px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-slow 2s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.hero h1 .line {
  display: block;
}

.hero h1 .sub-line {
  display: block;
  font-size: 0.65em;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 4px;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(39 46% 68%) 0%, hsl(39 46% 52%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  margin-top: 32px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Buttons --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.4);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.03);
  color: var(--noir);
}

/* --- Section common --- */
.section {
  padding: 112px 0 120px;
}

.section-muted {
  background: rgba(232, 213, 196, 0.15);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0;
}

.section-title-line {
  display: block;
}

.section-subtitle {
  margin-top: 24px;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Feature Cards (GlowCard style) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(232, 213, 196, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 169, 110, 0.06), transparent 40%);
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(201, 169, 110, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(201, 169, 110, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(201, 169, 110, 0.15);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* --- How it Works --- */
.steps-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* Connecting dashed line */
.steps-line {
  display: none;
  position: absolute;
  top: 40px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 0;
  border-top: 2px dashed rgba(201, 169, 110, 0.20);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-item {
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 32px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.25);
}

.step-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* --- CTA Section (Gold gradient bg) --- */
.cta-section {
  padding: 80px 0 112px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 80px 40px;
  text-align: center;
}

.cta-box .orb {
  background: rgba(255,255,255,0.06);
}

.cta-box .orb-1 {
  width: 400px;
  height: 400px;
  top: -30%;
  right: -10%;
  filter: blur(80px);
}

.cta-box .orb-2 {
  width: 300px;
  height: 300px;
  bottom: -25%;
  left: -8%;
  filter: blur(60px);
}

.cta-box h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-box p {
  position: relative;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-white {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--noir);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--noir);
}

.cta-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.45);
  fill: none;
  stroke-width: 2;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(232, 213, 196, 0.4);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--noir);
}

.footer-logo-text .gold {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 20px;
}

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

.footer ul a {
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--noir);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 196, 0.4);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  font-size: 12px;
  color: rgba(0,0,0,0.3);
}

.footer-social a:hover {
  color: var(--muted);
}

/* --- Legal Pages --- */
.legal-hero {
  padding: 140px 0 48px;
  text-align: center;
  border-bottom: 1px solid rgba(232, 213, 196, 0.4);
}

.legal-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-hero .date {
  font-size: 14px;
  color: var(--muted);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Table of contents */
.toc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
  border: 1px solid rgba(232, 213, 196, 0.3);
  box-shadow: var(--shadow-sm);
}

.toc h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  margin-bottom: 8px;
  font-size: 14px;
}

.toc a {
  color: var(--navy);
}

.toc a:hover {
  color: var(--gold);
}

/* Legal sections */
.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-top: 8px;
}

.legal-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 12px;
  margin-top: 24px;
}

.legal-section p {
  font-size: 15px;
  color: var(--noir);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  font-size: 15px;
  color: var(--noir);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-section strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }
.fade-in[data-delay="5"] { transition-delay: 0.5s; }

/* --- Ambient background gradients (like real site) --- */
.ambient-bg {
  position: relative;
}

.ambient-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 600px at 85% 8%, rgba(201, 169, 110, 0.12), transparent),
    radial-gradient(ellipse 500px 500px at 10% 90%, rgba(26, 58, 92, 0.05), transparent),
    radial-gradient(ellipse 450px 400px at 50% 50%, rgba(201, 169, 110, 0.07), transparent);
  background-attachment: fixed;
}

/* --- Responsive --- */
@media (min-width: 769px) {
  .steps-line {
    display: block;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .navbar-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 240, 235, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cta-box {
    padding: 56px 24px;
    border-radius: var(--radius-xl);
  }

  .float-shape {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-gold,
  .btn-outline,
  .btn-white {
    width: 100%;
    justify-content: center;
  }

  .legal-hero {
    padding: 110px 0 32px;
  }

  .section {
    padding: 72px 0 80px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
