/* ================================================================
   RAM APP — v7 Premium Redesign
   Spiritual Divine Theme · Saffron & Deep Crimson
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Color: Parchment White · Deep Ink · Sacred Saffron · Vermillion
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:        #FDFAF5;
  --bg-2:      #F7F1E8;
  --bg-3:      #EFE6D5;
  --bg-dark:   #0F0A04;
  --bg-dark-2: #1A1008;

  /* Text */
  --ink:       #0F0A04;
  --ink-2:     #3D2E1A;
  --ink-3:     #7A6A52;
  --ink-4:     #B5A48C;
  --ink-light: rgba(255,255,255,0.88);
  --ink-light-2: rgba(255,255,255,0.50);

  /* Sacred Palette */
  --saffron:   #F4811F;
  --saffron-2: #D96A0A;
  --saffron-3: #FABE70;
  --vermillion:#C0392B;
  --gold:      #D4A017;
  --gold-2:    #F0C040;

  /* Tints */
  --saffron-tint: #FEF3E6;
  --saffron-glow: rgba(244,129,31,0.15);

  /* Lines */
  --line:      #E2D5BF;
  --line-dark: rgba(255,255,255,0.10);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* Layout */
  --maxw:  1160px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:   0.22s;
  --dur-s: 0.55s;
}

/* ── RESET ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100% }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block }
a  { text-decoration: none; color: inherit }
ul { list-style: none }
button { font-family: var(--font-body); cursor: pointer }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 56px);
}

/* ── NOISE TEXTURE OVERLAY ───────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ================================================================
   DECORATIVE MANDALA RINGS
================================================================ */
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,129,31,0.12);
  pointer-events: none;
  animation: ring-spin 30s linear infinite;
}
.mandala-ring-2 { animation-direction: reverse; animation-duration: 45s; border-color: rgba(212,160,23,0.08) }
@keyframes ring-spin {
  from { transform: rotate(0deg) }
  to   { transform: rotate(360deg) }
}

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(253,250,245,0.0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.stuck {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 56px);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.brand-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 9px }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--ink);
  letter-spacing: .02em;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 2px }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  padding: 5px 13px; border-radius: 99px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--bg-2) }

/* CTA */
.header-cta {
  background: var(--saffron); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 99px; border: none;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 2px 12px rgba(244,129,31,0.30);
}
.header-cta:hover { background: var(--saffron-2); transform: scale(1.03) }

/* Burger */
.burger {
  display: none;
  background: none; border: none;
  padding: 6px; color: var(--ink); line-height: 1;
  border-radius: 8px;
  transition: background var(--dur) var(--ease);
}
.burger:hover { background: var(--bg-2) }
.burger svg { width: 21px; height: 21px; display: block }

@media(max-width:767px){
  .burger { display: flex; align-items: center; justify-content: center }
  .main-nav {
    display: none;
    position: fixed; top: 62px; left: 0; right: 0;
    background: rgba(253,250,245,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 8px 18px 18px; gap: 2px; z-index: 998;
  }
  .main-nav.open { display: flex }
  .nav-link { padding: 12px 14px; font-size: 15px; border-radius: 10px }
  .mobile-cta {
    margin-top: 8px;
    background: var(--saffron); color: #fff;
    font-size: 15px; font-weight: 600; text-align: center;
    padding: 13px 20px; border-radius: 12px; display: block;
    transition: background var(--dur) var(--ease);
  }
  .mobile-cta:hover { background: var(--saffron-2); color: #fff }
  .header-cta { display: none }
}

/* ================================================================
   HERO
================================================================ */
.hero {
  padding-top: 62px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

/* Background decorations */
.hero-bg-ring-1 {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(244,129,31,0.08);
  pointer-events: none;
  animation: ring-spin 60s linear infinite;
}
.hero-bg-ring-2 {
  position: absolute;
  top: -300px; right: -300px;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.05);
  pointer-events: none;
  animation: ring-spin 90s linear infinite reverse;
}
.hero-bg-lotus {
  position: absolute;
  bottom: 0; right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  min-height: calc(100svh - 62px);
  gap: 0;
  position: relative; z-index: 1;
}

/* Content side */
.hero-left {
  padding: clamp(48px,7vw,100px) 0 clamp(48px,7vw,100px) clamp(18px,5vw,56px);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--saffron-tint);
  border: 1px solid rgba(244,129,31,0.20);
  border-radius: 99px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; color: var(--saffron);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--saffron);
  animation: pdot 2.4s ease infinite;
}
@keyframes pdot {
  0%,100% { opacity: 1; transform: scale(1) }
  50%      { opacity: .3; transform: scale(.55) }
}

/* Eyebrow Sanskrit */
.hero-om {
  font-family: var(--font-display);
  font-size: clamp(14px,1.6vw,17px);
  font-weight: 500; color: var(--ink-3);
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px,6.5vw,82px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero-h1 .accent { color: var(--saffron); font-style: italic }
.hero-h1 .line2 {
  display: block;
  font-weight: 400; font-style: italic;
  color: var(--ink-2);
}

.hero-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 99px;
  margin: 20px 0 22px;
}

.hero-sub {
  font-size: clamp(14px,1.6vw,16px);
  font-weight: 400; color: var(--ink-3);
  max-width: 390px; line-height: 1.78;
  margin-bottom: 34px;
}

/* Pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 99px; padding: 5px 13px;
  font-size: 12px; font-weight: 500; color: var(--ink-3);
}
.pill-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--saffron); flex-shrink: 0 }

/* Store buttons */
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 14px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) }
.btn-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0 }
.btn-text { display: flex; flex-direction: column; text-align: left }
.btn-small {
  font-size: 9px; font-weight: 400; opacity: .60;
  text-transform: uppercase; letter-spacing: .08em;
  display: block; line-height: 1;
}
.btn-big { font-size: 14px; font-weight: 700; display: block; line-height: 1.3; margin-top: 2px }

.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 18px rgba(15,10,4,.22);
}
.btn-dark:hover { background: var(--ink-2); box-shadow: 0 8px 28px rgba(15,10,4,.28); color: #fff }

.btn-outline {
  background: var(--bg); color: var(--ink);
  border: 1.5px solid var(--line) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.btn-outline:hover { border-color: var(--saffron) !important; color: var(--saffron) }

/* Hero image side */
.hero-right {
  position: relative;
  height: calc(100svh - 62px);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute;
  bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 85%; height: 65%;
  background: radial-gradient(ellipse, rgba(244,129,31,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-right::after {
  content: ''; position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(212,160,23,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-img {
  height: 93%; width: auto;
  object-fit: contain; object-position: bottom center;
  position: relative; z-index: 1;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 40px rgba(15,10,4,0.08));
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  top: 30%; left: -20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) }
  50%      { transform: translateY(-8px) }
}
.hero-badge-ico { font-size: 22px; line-height: 1 }
.hero-badge-strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink) }
.hero-badge-sub { display: block; font-size: 11px; color: var(--ink-3); margin-top: 1px }

/* ================================================================
   STATS BAND
================================================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(244,129,31,0.03), transparent);
  pointer-events: none;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none }
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(28px,3.8vw,40px);
  font-weight: 700; color: var(--saffron);
  letter-spacing: -.01em; line-height: 1; margin-bottom: 4px;
}
.stat-l { font-size: 12px; font-weight: 500; color: var(--ink-3) }

/* ================================================================
   SECTION TEMPLATE
================================================================ */
.section { padding-block: clamp(80px,11vw,130px) }
.section-alt { background: var(--bg-2) }

/* Section header */
.sh { text-align: center; margin-bottom: clamp(44px,6vw,68px) }
.sh-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 10px;
}
.sh-title {
  font-family: var(--font-display);
  font-size: clamp(30px,5vw,56px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.08;
  color: var(--ink);
}
.sh-sub {
  font-size: 15px; color: var(--ink-3);
  max-width: 480px; margin: 14px auto 0; line-height: 1.72;
}
.sh-line {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 18px;
}
.sh-line-bar {
  height: 1px; width: 40px;
  background: linear-gradient(90deg, transparent, var(--saffron));
}
.sh-line-bar-r {
  background: linear-gradient(90deg, var(--saffron), transparent);
}
.sh-line-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron);
}

/* ================================================================
   FEATURE ROW (alternating)
================================================================ */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(44px,7vw,110px);
  padding-block: clamp(72px,10vw,120px);
  border-bottom: 1px solid var(--line);
}
.feat-row:last-child { border-bottom: none }
.feat-row.flip { direction: rtl }
.feat-row.flip > * { direction: ltr }

/* Tag */
.f-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 16px;
}
.f-tag-bar { width: 22px; height: 2px; background: var(--saffron); flex-shrink: 0 }

/* Title */
.f-title {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,50px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.08;
  color: var(--ink); margin-bottom: 14px;
}
.f-title em { font-style: italic; color: var(--saffron) }

.f-desc {
  font-size: clamp(14px,1.4vw,15px);
  font-weight: 400; color: var(--ink-3);
  max-width: 400px; line-height: 1.80; margin-bottom: 28px;
}

/* Bullet points */
.f-pts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px }
.f-pt { display: flex; align-items: flex-start; gap: 13px }
.f-pt-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--saffron-tint); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-top: 1px;
  border: 1px solid rgba(244,129,31,0.15);
}
.f-pt-body h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px }
.f-pt-body p  { font-size: 13px; color: var(--ink-3); line-height: 1.58 }

/* Arrow link */
.f-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--saffron);
  letter-spacing: .01em;
  transition: gap var(--dur) var(--ease);
}
.f-link:hover { gap: 11px }
.f-link svg {
  width: 14px; height: 14px; stroke: currentColor;
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* Visual frame */
.f-visual {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.f-frame {
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  width: 100%; max-width: 340px;
  aspect-ratio: 3/4;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(15,10,4,0.08), 0 2px 0 rgba(255,255,255,0.6) inset;
}
.f-frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none; z-index: 2;
}
.f-frame-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(244,129,31,0.07), transparent);
  pointer-events: none;
}
/* Gold shimmer on top */
.f-frame-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(212,160,23,0.04), transparent);
  pointer-events: none;
}
.f-img {
  width: 88%; height: 90%;
  object-fit: contain; object-position: bottom;
  mix-blend-mode: multiply;
  position: relative; z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(15,10,4,0.07));
}

/* Floating chip */
.f-chip {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; z-index: 3;
  backdrop-filter: blur(8px);
}
.f-chip-tl { top: -12px; left: -12px }
.f-chip-br { bottom: -12px; right: -12px }
.f-chip-emoji { font-size: 19px; line-height: 1 }
.f-chip-strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink) }
.f-chip-sub    { display: block; font-size: 11px; color: var(--ink-3); margin-top: 1px }

/* ================================================================
   FEATURES GRID
================================================================ */
.grid-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
  margin-top: clamp(40px,5vw,56px);
}
.gc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px,2.5vw,30px);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.gc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  opacity: 0; transition: opacity .3s;
}
.gc:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(244,129,31,0.22) }
.gc:hover::before { opacity: 1 }
.gc-n {
  font-size: 11px; font-weight: 600; letter-spacing: .09em;
  color: var(--ink-4); margin-bottom: 13px;
}
.gc-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--saffron-tint);
  border: 1px solid rgba(244,129,31,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 13px;
}
.gc-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px }
.gc-desc  { font-size: 13px; color: var(--ink-3); line-height: 1.6 }

/* ================================================================
   REVIEWS
================================================================ */
.rev-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: clamp(40px,5vw,56px);
}
.rev-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px,3vw,32px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.rev-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 72px; font-weight: 700;
  color: var(--saffron-tint);
  line-height: 1; pointer-events: none;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.07) }
.rev-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 15px }
.rev-text {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--ink-2); line-height: 1.65; margin-bottom: 20px;
}
.rev-author { display: flex; align-items: center; gap: 11px }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.rev-name { font-size: 13px; font-weight: 600; color: var(--ink) }
.rev-meta { font-size: 11px; color: var(--ink-4); margin-top: 2px }

/* ================================================================
   CTA SECTION — Dark Divine
================================================================ */
.cta-sec {
  background: var(--bg-dark);
  padding-block: clamp(80px,11vw,130px);
  overflow: hidden; position: relative;
}
/* Mandala decoration */
.cta-sec::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,129,31,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-sec::after {
  content: ''; position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-mandala {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  border: 1px solid rgba(244,129,31,0.05);
  animation: ring-spin 80s linear infinite;
  pointer-events: none;
}
.cta-mandala-2 {
  width: 600px; height: 600px;
  border-color: rgba(212,160,23,0.04);
  animation-direction: reverse; animation-duration: 55s;
}

.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(44px,8vw,90px); align-items: center;
  position: relative; z-index: 1;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(244,129,31,0.65); margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5.5vw,64px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.04;
  color: #fff; margin-bottom: 16px;
}
.cta-title span { color: var(--saffron); font-style: italic }
.cta-sub {
  font-size: 15px; color: var(--ink-light-2);
  line-height: 1.72; max-width: 380px; margin-bottom: 34px;
}
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px }
.btn-white {
  background: #fff; color: var(--ink);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.btn-white:hover { background: var(--bg-2); color: var(--ink) }
.btn-ghost-white {
  background: rgba(255,255,255,0.07); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.14) !important;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.13); color: #fff }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.25) }
.cta-note strong { color: var(--gold); font-weight: 600 }

/* CTA visual */
.cta-right {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.cta-frame {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  overflow: hidden;
  width: 100%; max-width: 300px;
  aspect-ratio: 3/4;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.cta-frame::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, rgba(244,129,31,0.06), transparent);
}
.cta-img {
  width: 88%; height: 90%;
  object-fit: contain; object-position: bottom;
  mix-blend-mode: luminosity; opacity: 0.80;
  position: relative; z-index: 1;
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.pg-hero {
  padding-top: 95px; padding-bottom: 52px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.pg-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 10px;
}
.pg-title {
  font-family: var(--font-display);
  font-size: clamp(34px,6vw,58px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.05;
  color: var(--ink); margin-bottom: 10px;
}
.pg-sub { font-size: 16px; color: var(--ink-3); max-width: 460px; line-height: 1.68 }

/* ================================================================
   CONTACT / FORMS
================================================================ */
.page-body { padding-block: clamp(48px,7vw,80px) }
.cx-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: clamp(24px,5vw,52px); align-items: start;
}
.form-box {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(28px,4vw,44px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.form-box-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 4px;
}
.form-box-sub { font-size: 14px; color: var(--ink-3); margin-bottom: 28px }

.form { display: flex; flex-direction: column; gap: 14px }
.form-group { display: flex; flex-direction: column; gap: 4px }
.form-label { font-size: 13px; font-weight: 600; color: var(--ink-2) }
.form-hint  { font-size: 11px; color: var(--ink-4) }
.form input, .form textarea {
  width: 100%; padding: 12px 14px;
  border-radius: 11px; border: 1.5px solid var(--line);
  font-size: 14px; font-family: var(--font-body);
  color: var(--ink); background: var(--bg);
  outline: none; -webkit-appearance: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-4) }
.form input:focus, .form textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(244,129,31,0.10);
}
.form textarea { min-height: 120px; resize: vertical; line-height: 1.6 }
.btn-sub {
  background: var(--saffron); color: #fff;
  padding: 13px 24px; border-radius: 11px;
  font-size: 14px; font-weight: 600; border: none;
  font-family: var(--font-body); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(244,129,31,0.28);
}
.btn-sub:hover { background: var(--saffron-2); color: #fff; transform: translateY(-1px) }
.btn-sub:disabled { opacity: .5; cursor: not-allowed; transform: none }

.info-stack   { display: flex; flex-direction: column; gap: 10px }
.info-box {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
}
.info-box-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 5px;
}
.info-box-val { font-size: 13px; color: var(--ink-2); line-height: 1.5 }
.info-box-val a { color: var(--saffron); text-decoration: underline; text-underline-offset: 3px }
.info-box-val code {
  font-size: 11px; background: var(--bg-2);
  padding: 1px 6px; border-radius: 4px; color: var(--ink-3);
}

.alert { padding: 12px 15px; border-radius: 11px; font-size: 13px; margin-bottom: 18px }
.alert-ok  { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0 }
.alert-err { background: #FFF5F5; color: #9B1C1C; border: 1px solid #FED7D7 }
.gdpr-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--ink-4); margin-top: 10px;
}
.gdpr-row svg { width: 12px; height: 12px; fill: var(--saffron); flex-shrink: 0 }

/* ================================================================
   POLICY
================================================================ */
.policy-wrap { max-width: 700px; margin-inline: auto }
.pol-art {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(28px,5vw,52px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.pol-hdr { padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 28px }
.pol-hdr h1 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,38px);
  font-weight: 700; letter-spacing: -.015em; color: var(--ink); margin-bottom: 5px;
}
.pol-date { font-size: 13px; color: var(--ink-4) }
.pol-body { color: var(--ink); line-height: 1.82 }
.pol-body h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-top: 30px; margin-bottom: 10px; color: var(--ink);
}
.pol-body p  { font-size: 14px; margin-bottom: 13px }
.pol-body ul,.pol-body ol { padding-left: 20px; margin-bottom: 13px }
.pol-body ul { list-style: disc } .pol-body ol { list-style: decimal }
.pol-body li { font-size: 14px; margin-bottom: 6px }
.pol-body a  { color: var(--saffron); text-decoration: underline; text-underline-offset: 3px }
.pol-body code {
  font-size: 11px; background: var(--bg-2);
  padding: 1px 5px; border-radius: 4px; color: var(--ink-3);
}
.pol-body strong { font-weight: 700 }
.pol-ftr {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-4); text-align: center;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px,7vw,72px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 28px; padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.f-brand-wrap {}
.f-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 11px }
.f-logo-img { width: 30px; height: 30px; object-fit: contain; border-radius: 8px }
.f-brand-n {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--ink);
}
.f-about { font-size: 13px; color: var(--ink-3); line-height: 1.68; max-width: 220px; margin-bottom: 18px }
.f-stores { display: flex; flex-direction: column; gap: 7px }
.f-store {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 9px; padding: 7px 12px;
  font-size: 12px; font-weight: 500; color: var(--ink-3);
  transition: all var(--dur) var(--ease); max-width: 158px;
}
.f-store:hover { border-color: var(--saffron); color: var(--saffron) }
.f-store img { width: 13px; height: 13px; object-fit: contain }
.f-col-t {
  font-size: 11px; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 13px;
}
.f-links { display: flex; flex-direction: column; gap: 9px }
.f-link { font-size: 13px; color: var(--ink-3); transition: color var(--dur) var(--ease) }
.f-link:hover { color: var(--ink) }
.footer-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.f-copy { font-size: 12px; color: var(--ink-4) }
.f-legal { display: flex; gap: 14px }
.f-legal a { font-size: 12px; color: var(--ink-4); transition: color var(--dur) var(--ease) }
.f-legal a:hover { color: var(--ink) }

/* ================================================================
   ANIMATIONS
================================================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0) }
.d1 { transition-delay: .10s }
.d2 { transition-delay: .20s }
.d3 { transition-delay: .30s }
.d4 { transition-delay: .40s }

/* ================================================================
   TABLET  768–1023
================================================================ */
@media(max-width:1023px){
  .hero-inner { grid-template-columns: 1fr; min-height: auto }
  .hero-left {
    padding: 48px clamp(18px,5vw,56px) 36px;
    text-align: center; order: 2;
  }
  .hero-sub,.hero-pills,.hero-btns { max-width: 100%; justify-content: center; margin-inline: auto }
  .hero-right { order: 1; height: 52vw; max-height: 380px; min-height: 240px; border-bottom: 1px solid var(--line) }
  .hero-bg-lotus { display: none }
  .hero-badge { display: none }
  .hero-divider { margin-inline: auto }
  .feat-row { grid-template-columns: 1fr; gap: 36px }
  .feat-row.flip { direction: ltr }
  .f-visual { order: -1 }
  .f-frame  { max-width: 260px; margin-inline: auto }
  .grid-cards { grid-template-columns: repeat(2,1fr) }
  .rev-grid { grid-template-columns: 1fr 1fr }
  .rev-grid .rev-card:last-child { display: none }
  .cta-inner { grid-template-columns: 1fr; text-align: center }
  .cta-right { order: -1 }
  .cta-frame { max-width: 220px; margin-inline: auto }
  .cta-sub   { margin-inline: auto }
  .cta-btns  { justify-content: center }
  .cx-layout { grid-template-columns: 1fr }
  .info-stack { flex-direction: row; flex-wrap: wrap }
  .info-box   { flex: 1; min-width: 180px }
  .stats-inner { grid-template-columns: repeat(2,1fr) }
  .stat:nth-child(2) { border-right: none }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px }
  .f-brand-wrap { grid-column: 1/-1 }
}

@media(max-width:767px){
  .hero-right { height: 58vw }
  .grid-cards { grid-template-columns: 1fr }
  .rev-grid   { grid-template-columns: 1fr }
  .rev-grid .rev-card:last-child { display: block }
  .footer-grid  { grid-template-columns: 1fr }
  .f-brand-wrap { grid-column: auto }
  .footer-bottom { flex-direction: column; align-items: flex-start }
  .info-stack { flex-direction: column }
  .hero-btns  { flex-direction: column; width: 100% }
  .btn { width: 100%; justify-content: center }
  .cta-btns { flex-direction: column; align-items: stretch }
}

@media(max-width:480px){
  .stats-inner { grid-template-columns: 1fr 1fr }
}

@media print{
  .site-header,.cta-sec,.site-footer { display: none }
  body { background: #fff; color: #000 }
}
