/* ============================================================
   TAUNG PAW THAR — Landing Page Styles
   Design: Dark Premium + Gold Accents
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-bg-deep:       #060a12;
  --color-bg-primary:    #0a0e17;
  --color-bg-card:       rgba(15, 22, 36, 0.7);
  --color-bg-glass:      rgba(255, 255, 255, 0.04);
  --color-bg-glass-hover:rgba(255, 255, 255, 0.08);

  --color-gold-dark:     #a07c2e;
  --color-gold:          #d4a843;
  --color-gold-light:    #f0c75e;
  --color-gold-glow:     rgba(212, 168, 67, 0.3);

  --color-green-deep:    #0d2e1a;
  --color-green:         #1a5c3a;
  --color-green-light:   #2a8c5a;

  --color-text-primary:  #f5f0e8;
  --color-text-secondary:#a8a196;
  --color-text-muted:    #6b6560;

  --color-accent-red:    #c44b4b;
  --color-accent-blue:   #4b7cc4;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 30px var(--color-gold-glow);
  --shadow-glow: 0 0 40px var(--color-gold-glow), 0 0 80px rgba(212,168,67,0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Section Titles --- */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-weight: 300;
}

/* --- Animated Background Particles --- */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav-brand span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-fast);
}

.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 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: rgba(6, 10, 18, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-normal);
    border-left: 1px solid rgba(212,168,67,0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--space-md) var(--space-2xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,10,18,0.5) 0%,
    rgba(6,10,18,0.3) 40%,
    rgba(6,10,18,0.8) 80%,
    var(--color-bg-deep) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-icon {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-glow);
  animation: icon-float 4s ease-in-out infinite;
  border: 3px solid rgba(212,168,67,0.3);
}

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

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #fff 0%, var(--color-gold-light) 40%, var(--color-gold) 70%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.6;
}

.hero-tagline strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0e17;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 40px var(--color-gold-glow);
  color: #0a0e17;
}

.btn-secondary {
  background: var(--color-bg-glass);
  color: var(--color-text-primary);
  border: 1px solid rgba(212,168,67,0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--color-bg-glass-hover);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-3px);
}

.btn svg,
.btn .btn-icon {
  width: 20px;
  height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  animation: bounce-down 2s infinite;
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212,168,67,0.2);
  background: rgba(15, 22, 36, 0.9);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  border: 1px solid rgba(212,168,67,0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   SCREENSHOTS / PREVIEW SECTION
   ============================================================ */
.screenshots {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.screenshots-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  perspective: 1000px;
}

.phone-mockup {
  position: relative;
  width: 280px;
  flex-shrink: 0;
}

.phone-frame {
  background: linear-gradient(145deg, #1a1f2e, #0d1119);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0d1119;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup:nth-child(1) {
  transform: rotate(-5deg) translateY(20px);
}

.phone-mockup:nth-child(2) {
  transform: scale(1.08);
  z-index: 2;
}

/* Glow behind center phone */
.phone-mockup:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 60%);
  z-index: -1;
  opacity: 0.4;
}

.phone-mockup:nth-child(3) {
  transform: rotate(5deg) translateY(20px);
}

@media (max-width: 768px) {
  .phone-mockup:nth-child(1),
  .phone-mockup:nth-child(3) {
    display: none;
  }

  .phone-mockup:nth-child(2) {
    transform: scale(1);
  }
}

/* ============================================================
   HOW TO PLAY
   ============================================================ */
.how-to-play {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-deep);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-gold);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.step p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Connector lines between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .step:not(:last-child)::after {
    display: none;
  }
}

/* ============================================================
   CTA / DOWNLOAD SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.3), rgba(15, 22, 36, 0.8));
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, var(--color-gold-glow) 0%, transparent 50%);
  opacity: 0.15;
  animation: cta-glow 6s ease-in-out infinite alternate;
}

@keyframes cta-glow {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(10%, -5%); }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  position: relative;
}

.cta-box p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-sm);
  color: var(--color-gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.coming-soon-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.footer-left p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-links-group h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

.footer-links-group a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links-group a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left p {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .footer-links-group {
    text-align: center;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.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; }

/* ============================================================
   PLAYING CARD DECORATIONS (floating cards)
   ============================================================ */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  width: 60px;
  height: 84px;
  background: linear-gradient(145deg, #fff 0%, #e8e0d0 100%);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0.06;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.floating-card:nth-child(1) {
  top: 15%;
  left: 5%;
  animation: card-drift 12s ease-in-out infinite;
  transform: rotate(-15deg);
}

.floating-card:nth-child(2) {
  top: 60%;
  right: 8%;
  animation: card-drift 15s ease-in-out infinite reverse;
  transform: rotate(20deg);
}

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 12%;
  animation: card-drift 10s ease-in-out infinite;
  transform: rotate(10deg);
}

.floating-card:nth-child(4) {
  top: 25%;
  right: 15%;
  animation: card-drift 14s ease-in-out infinite reverse;
  transform: rotate(-25deg);
}

@keyframes card-drift {
  0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
  33%      { transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg)); }
  66%      { transform: translateY(10px) rotate(calc(var(--rotation, 0deg) - 3deg)); }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-page {
  padding-top: 100px;
}

.policy-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.policy-nav .nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.policy-nav .nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.policy-nav .nav-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold-light);
  font-size: 1.1rem;
}

.policy-nav .back-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.policy-nav .back-link:hover {
  color: var(--color-gold-light);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-2xl);
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.policy-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.policy-header .effective-date {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.policy-section {
  margin-bottom: var(--space-lg);
}

.policy-section h2 {
  font-size: 1.4rem;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}

.policy-section p,
.policy-section li {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.policy-section ul {
  list-style: none;
  padding-left: var(--space-md);
}

.policy-section ul li::before {
  content: '•';
  color: var(--color-gold);
  font-weight: bold;
  margin-right: 0.6rem;
}

.policy-section a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .hero-icon {
    width: 120px;
    height: 120px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
