/* ══════════════════════════════════════════
   myVol — stylesheet
   Font: Plus Jakarta Sans (Google Fonts)
══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --dark:       #1C1917;
  --copper:     #C2410C;
  --copper-h:   #9A3412;
  --copper-b:   #EA580C;
  --orange:     #F97316;
  --bg:         #FAFAF9;
  --bg-alt:     #F5F5F4;
  --text:       #1C1917;
  --text-muted: #78716C;
  --text-faint: #A8A29E;
  --border:     #E7E5E4;
  --white:      #ffffff;
  --radius:     1rem;
  --radius-lg:  1.5rem;
  --t:          150ms ease;
}
.dark {
  --bg:         #0C0A09;
  --bg-alt:     #0C0A09;
  --text:       #F5F5F4;
  --text-muted: #A8A29E;
  --text-faint: #57534E;
  --border:     #292524;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  transition: background .3s, color .3s;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ── */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* ── Section labels ── */
.label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(250,250,249,.92);
  border-color: rgba(231,229,228,.6);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  backdrop-filter: blur(12px);
}
.dark .navbar.scrolled {
  background: rgba(28,25,23,.92);
  border-color: rgba(41,37,36,.7);
  box-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: .5rem; border-radius: .5rem; }
.nav-logo img { width: 2rem; height: 2rem; object-fit: contain; }
.nav-logo-name {
  font-weight: 700; font-size: 1.125rem; letter-spacing: -.015em;
  color: var(--white); transition: color .3s;
}
.navbar.scrolled .nav-logo-name { color: var(--dark); }
.dark .navbar.scrolled .nav-logo-name { color: var(--white); }
.nav-logo-dot { color: var(--orange); }
/* Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  color: #D6D3D1;
  transition: color .3s;
}
.navbar.scrolled .nav-links { color: #57534E; }
.dark .navbar.scrolled .nav-links { color: #A8A29E; }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--dark); }
.dark .navbar.scrolled .nav-links a:hover { color: var(--white); }
@media (min-width: 768px) { .nav-links { display: flex; } }
/* Right side */
.nav-right { display: none; align-items: center; gap: .5rem; }
@media (min-width: 768px) { .nav-right { display: flex; } }
.nav-login {
  font-size: .875rem; font-weight: 500;
  color: #D6D3D1; padding: .5rem .75rem; border-radius: .5rem;
  transition: color var(--t), background var(--t);
}
.nav-login:hover { color: var(--white); background: rgba(255,255,255,.08); }
.navbar.scrolled .nav-login { color: #57534E; }
.dark .navbar.scrolled .nav-login { color: #A8A29E; }
.navbar.scrolled .nav-login:hover { color: var(--dark); background: #F5F5F4; }
.dark .navbar.scrolled .nav-login:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  font-size: .875rem; font-weight: 600;
  background: var(--copper); color: var(--white);
  padding: .5rem 1rem; border-radius: .75rem;
  border: none; transition: background var(--t);
}
.nav-cta:hover { background: var(--copper-h); }
/* Theme toggle */
.theme-toggle {
  width: 2.25rem; height: 2.25rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: #D6D3D1; transition: color var(--t), background var(--t);
}
.theme-toggle:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .theme-toggle { color: #57534E; }
.dark .navbar.scrolled .theme-toggle { color: #A8A29E; }
.navbar.scrolled .theme-toggle:hover { color: var(--dark); background: #F5F5F4; }
.dark .navbar.scrolled .theme-toggle:hover { color: var(--white); background: rgba(255,255,255,.08); }
.theme-toggle svg { width: 1rem; height: 1rem; }
/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem; border-radius: .5rem;
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: #D6D3D1; border-radius: 2px;
  transition: background var(--t), transform .3s, opacity .3s;
}
.navbar.scrolled .hamburger span { background: #57534E; }
.dark .navbar.scrolled .hamburger span { background: #A8A29E; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }
/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  border-top: 1px solid rgba(231,229,228,.6);
  background: rgba(250,250,249,.97);
  backdrop-filter: blur(12px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1rem 1.25rem;
}
.dark .mobile-menu {
  background: rgba(28,25,23,.97);
  border-top-color: rgba(41,37,36,.7);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; font-size: .875rem; font-weight: 500;
  color: #57534E; padding: .625rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.dark .mobile-menu a { color: #A8A29E; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--dark); }
.dark .mobile-menu a:hover { color: var(--white); }
.mobile-ctas {
  display: flex; flex-direction: column; gap: .5rem;
  padding-top: .75rem; border-top: 1px solid var(--border); margin-top: .25rem;
}
.mobile-theme-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .5rem; border-top: 1px solid var(--border); margin-top: .25rem;
}
.mobile-theme-label { font-size: .75rem; color: var(--text-faint); }
.mobile-login {
  font-size: .875rem; font-weight: 500; color: #57534E; text-align: center;
  padding: .625rem; border-radius: .5rem; transition: background var(--t), color var(--t);
}
.dark .mobile-login { color: #A8A29E; }
.mobile-login:hover { background: #F5F5F4; color: var(--dark); }
.dark .mobile-login:hover { background: rgba(255,255,255,.06); color: var(--white); }
.mobile-cta-btn {
  display: block; text-align: center;
  font-size: .875rem; font-weight: 600;
  background: var(--copper); color: var(--white);
  padding: .75rem; border-radius: .75rem;
  transition: background var(--t);
}
.mobile-cta-btn:hover { background: var(--copper-h); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 1rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -5rem 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,10,9,.82) 0%, rgba(12,10,9,.65) 40%, rgba(12,10,9,.92) 100%);
}
.hero-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 16rem; pointer-events: none;
  background: radial-gradient(ellipse, rgba(194,65,12,.18) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 56rem; margin-inline: auto; text-align: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(154,52,18,.4); background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px); border-radius: 9999px;
  padding: .375rem 1rem; margin-bottom: 2.5rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .025em; color: #FCA98A;
}
.hero-badge-dot {
  width: .375rem; height: .375rem; border-radius: 9999px;
  background: var(--orange); box-shadow: 0 0 6px rgba(249,115,22,.8); flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title-gradient {
  background: linear-gradient(135deg, #fff7ed 0%, #fdba74 60%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(251,146,60,.5));
}
.hero-sub {
  font-size: 1.0625rem; color: #D6D3D1; line-height: 1.7;
  max-width: 40rem; margin-inline: auto; margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  margin-bottom: 5rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .9375rem; color: var(--white);
  padding: .875rem 1.75rem; border-radius: .875rem;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-b) 100%);
  box-shadow: 0 0 20px rgba(194,65,12,.5), 0 4px 12px rgba(0,0,0,.4);
  border: none; transition: opacity var(--t);
  width: 100%;
}
@media (min-width: 640px) { .btn-primary { width: auto; } }
.btn-primary:hover { opacity: .88; }
.btn-primary svg { width: 1rem; height: 1rem; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: .9375rem; color: #D6D3D1;
  padding: .875rem 1.75rem; border-radius: .875rem;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  transition: border-color var(--t), color var(--t), background var(--t);
  width: 100%;
}
@media (min-width: 640px) { .btn-secondary { width: auto; } }
.btn-secondary:hover { border-color: rgba(255,255,255,.4); color: var(--white); background: rgba(255,255,255,.06); }
.hero-stats {
  display: flex; max-width: 36rem; margin-inline: auto;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  overflow: hidden; background: rgba(0,0,0,.3); backdrop-filter: blur(12px);
}
.hero-stat { flex: 1; padding: 1.25rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .125rem; }
.hero-stat-lbl { font-size: .75rem; color: #A8A29E; }

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */
.features-section { padding: 6rem 0; background: var(--bg-alt); }
.section-header { margin-bottom: 3rem; }
.section-header-row {
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 640px) {
  .section-header-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.bento-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-wide { grid-column: span 2; }
}
/* Feature card */
.feature-card {
  position: relative; border-radius: var(--radius-lg); padding: 1.5rem;
  border: 1px solid var(--border); background: var(--white);
  cursor: default; overflow: hidden; height: 100%;
  transition: background .3s, border-color .3s;
}
.dark .feature-card { background: var(--dark); border-color: #292524; }
.feature-card:hover { background: var(--dark); border-color: #292524; }
.dark .feature-card:hover { background: #252220; border-color: #3a3533; }
/* Shimmer lines */
.feature-card .shimmer-light {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.15), transparent);
  transition: opacity .3s;
}
.feature-card:hover .shimmer-light { opacity: 0; }
.feature-card .shimmer-dark {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.45), transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover .shimmer-dark { opacity: 1; }
.feature-card .card-glow {
  position: absolute; top: -4rem; right: -4rem;
  width: 12rem; height: 12rem; border-radius: 9999px;
  background: radial-gradient(circle, rgba(194,65,12,.1) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.feature-card:hover .card-glow { opacity: 1; }
/* Icon */
.feature-icon {
  width: 2.75rem; height: 2.75rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; background: rgba(194,65,12,.07); color: var(--copper);
  transition: background .3s, color .3s, transform .3s;
}
.dark .feature-icon { background: rgba(124,45,18,.3); color: #FB923C; }
.feature-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-card:hover .feature-icon {
  background: rgba(124,45,18,.3); color: #FB923C; transform: scale(1.1);
}
.feature-card-title {
  font-size: 1rem; font-weight: 600; margin-bottom: .5rem;
  color: var(--text); transition: color .3s;
}
.feature-card:hover .feature-card-title { color: var(--white); }
.feature-card-desc {
  font-size: .875rem; line-height: 1.65; color: var(--text-muted);
  transition: color .3s;
}
.feature-card:hover .feature-card-desc { color: #A8A29E; }

/* ── Feature icon animations ── */
@keyframes person-talk {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2.5px); }
}
@keyframes truck-drive {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-1.5px); }
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }
@keyframes cal-dot {
  0%, 25%, 100% { opacity: .2; }
  12%            { opacity: 1; }
}
@keyframes paper-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2px); }
}
@keyframes phone-ring {
  0%, 40%, 100% { transform: rotate(0deg); }
  5%  { transform: rotate(-14deg); }
  10% { transform: rotate(14deg); }
  15% { transform: rotate(-9deg); }
  20% { transform: rotate(9deg); }
  25% { transform: rotate(-4deg); }
  30% { transform: rotate(4deg); }
  35% { transform: rotate(0deg); }
}
@keyframes bar-up   { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.45); } }
@keyframes bar-mid  { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.28); } }
@keyframes bar-down { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.70); } }

.anim-person-a, .anim-person-b, .anim-truck, .anim-wheel,
.anim-phone, .anim-layer-1, .anim-layer-2, .anim-layer-3,
.anim-cal-1, .anim-cal-2, .anim-cal-3, .anim-cal-4, .anim-cal-5,
.anim-bar-1, .anim-bar-2, .anim-bar-3 { animation-play-state: paused; }

.feature-card:hover .anim-person-a {
  animation: person-talk .7s ease-in-out infinite;
  animation-play-state: running;
  transform-box: fill-box; transform-origin: bottom center;
}
.feature-card:hover .anim-person-b {
  animation: person-talk .7s ease-in-out infinite .35s;
  animation-play-state: running;
  transform-box: fill-box; transform-origin: bottom center;
}
.feature-card:hover .anim-truck {
  animation: truck-drive .35s ease-in-out infinite;
  animation-play-state: running;
  transform-box: fill-box; transform-origin: center;
}
.feature-card:hover .anim-wheel {
  animation: wheel-spin .5s linear infinite;
  animation-play-state: running;
  transform-box: fill-box; transform-origin: center;
}
.feature-card:hover .anim-cal-1 { animation: cal-dot 1.5s ease-in-out infinite 0s;   animation-play-state: running; }
.feature-card:hover .anim-cal-2 { animation: cal-dot 1.5s ease-in-out infinite .2s;  animation-play-state: running; }
.feature-card:hover .anim-cal-3 { animation: cal-dot 1.5s ease-in-out infinite .4s;  animation-play-state: running; }
.feature-card:hover .anim-cal-4 { animation: cal-dot 1.5s ease-in-out infinite .6s;  animation-play-state: running; }
.feature-card:hover .anim-cal-5 { animation: cal-dot 1.5s ease-in-out infinite .8s;  animation-play-state: running; }
.feature-card:hover .anim-layer-1 { animation: paper-float 1s ease-in-out infinite 0s;   animation-play-state: running; transform-box: fill-box; }
.feature-card:hover .anim-layer-2 { animation: paper-float 1s ease-in-out infinite .15s; animation-play-state: running; transform-box: fill-box; }
.feature-card:hover .anim-layer-3 { animation: paper-float 1s ease-in-out infinite .3s;  animation-play-state: running; transform-box: fill-box; }
.feature-card:hover .anim-phone {
  animation: phone-ring 2s ease-in-out infinite;
  animation-play-state: running;
  transform-box: fill-box; transform-origin: top center;
}
.feature-card:hover .anim-bar-1 { animation: bar-up   1.1s ease-in-out infinite 0s;   animation-play-state: running; transform-box: fill-box; transform-origin: bottom; }
.feature-card:hover .anim-bar-2 { animation: bar-mid  1.1s ease-in-out infinite .22s; animation-play-state: running; transform-box: fill-box; transform-origin: bottom; }
.feature-card:hover .anim-bar-3 { animation: bar-down 1.1s ease-in-out infinite .44s; animation-play-state: running; transform-box: fill-box; transform-origin: bottom; }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-section { padding: 6rem 0; background: var(--bg); }
.pricing-section .section-header { text-align: center; }
.pricing-section .section-sub { margin-inline: auto; margin-top: 1rem; text-align: center; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  position: relative; border-radius: var(--radius-lg); padding: 1.75rem;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column; height: 100%;
  cursor: default; transition: background .3s, border-color .3s;
}
.dark .pricing-card { background: var(--dark); border-color: #292524; box-shadow: none; }
.pricing-card:hover { background: var(--dark); border-color: #292524; }
.dark .pricing-card:hover { background: #252220; border-color: #3a3533; }
/* Shimmers on cards */
.pricing-card .shimmer-light {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.15), transparent);
  transition: opacity .3s;
}
.pricing-card:hover .shimmer-light { opacity: 0; }
.pricing-card .shimmer-dark {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.45), transparent);
  opacity: 0; transition: opacity .3s;
}
.pricing-card:hover .shimmer-dark { opacity: 1; }
.pricing-card .card-glow {
  position: absolute; top: -4rem; right: -4rem;
  width: 12rem; height: 12rem; border-radius: 9999px;
  background: radial-gradient(circle, rgba(194,65,12,.08) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.pricing-card:hover .card-glow { opacity: 1; }
.has-badge {
  padding-top: 1rem;
}
.plan-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--copper); color: var(--white);
  font-size: .75rem; font-weight: 600; padding: .25rem 1rem;
  border-radius: 9999px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(194,65,12,.4);
  z-index: 1;
}
.plan-name-row { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .25rem; }
.plan-label-txt {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; color: var(--copper); transition: color .3s;
}
.dark .plan-label-txt,
.pricing-card:hover .plan-label-txt { color: #FB923C; }
.plan-letter {
  font-size: 1.5rem; font-weight: 700; margin-left: .25rem;
  color: var(--text); transition: color .3s;
}
.pricing-card:hover .plan-letter { color: var(--white); }
.plan-price-row { margin-bottom: .25rem; }
.plan-amount { font-size: 2.5rem; font-weight: 700; color: var(--text); transition: color .3s; }
.pricing-card:hover .plan-amount { color: var(--white); }
.plan-period { font-size: .875rem; color: var(--text-faint); margin-left: .25rem; }
.plan-users { font-size: .875rem; color: var(--copper); margin-bottom: 1rem; transition: color .3s; }
.dark .plan-users,
.pricing-card:hover .plan-users { color: #FCA98A; }
.plan-desc { font-size: .875rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 1.5rem; transition: color .3s; }
.pricing-card:hover .plan-desc { color: #A8A29E; }
.plan-cta {
  display: block; text-align: center;
  padding: .75rem 1rem; border-radius: .75rem;
  font-size: .875rem; font-weight: 600;
  background: #F5F5F4; color: var(--dark);
  margin-bottom: 1.5rem;
  transition: background var(--t), color var(--t);
  border: none;
}
.dark .plan-cta { background: #292524; color: var(--white); }
.plan-cta:hover { background: var(--border); }
.pricing-card:hover .plan-cta { background: var(--copper); color: var(--white); }
.pricing-card:hover .plan-cta:hover { background: var(--copper-h); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; transition: border-color .3s; }
.pricing-card:hover .plan-divider { border-color: rgba(255,255,255,.1); }
.plan-features { display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--text-muted); transition: color .3s; }
.pricing-card:hover .plan-features li { color: #D6D3D1; }
.plan-features li::before {
  content: '';
  display: block; width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .125rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.333 4L6 11.333 2.667 8' stroke='%23C2410C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.pricing-card:hover .plan-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.333 4L6 11.333 2.667 8' stroke='%23FB923C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-note { text-align: center; font-size: .875rem; color: var(--text-faint); margin-top: 2rem; }
.pricing-note a { color: var(--copper); }
.pricing-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   APP SECTION
══════════════════════════════════ */
.app-section { padding: 6rem 0; background: var(--bg-alt); overflow: hidden; }
.app-card {
  position: relative; background: var(--dark);
  border-radius: 1.5rem; padding: 3.5rem 2rem; overflow: hidden;
}
@media (min-width: 768px) { .app-card { padding: 4rem; } }
.app-blob {
  position: absolute; border-radius: 9999px;
  filter: blur(48px); pointer-events: none;
}
.app-blob-tr {
  top: 0; right: 0; width: 20rem; height: 20rem;
  background: radial-gradient(circle, rgba(194,65,12,.12) 0%, transparent 70%);
  transform: translate(33%, -33%);
}
.app-blob-bl {
  bottom: 0; left: 0; width: 16rem; height: 16rem;
  background: radial-gradient(circle, rgba(154,52,18,.10) 0%, transparent 70%);
  transform: translate(-33%, 33%);
}
.app-dot-grid {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(194,65,12,.15) 1px, transparent 0);
  background-size: 28px 28px;
}
.app-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.3), transparent);
  pointer-events: none;
}
.app-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .app-grid { grid-template-columns: 1fr 1fr; } }
.app-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700;
  color: var(--white); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 1.25rem;
}
.app-desc { font-size: 1rem; color: #A8A29E; line-height: 1.7; margin-bottom: 2rem; }
.store-btns { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 480px) { .store-btns { flex-direction: row; } }
.store-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: .75rem; padding: .75rem 1.25rem;
  transition: background var(--t);
}
.store-btn:hover { background: rgba(255,255,255,.13); }
.store-btn svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.store-lbl { font-size: .625rem; color: #A8A29E; line-height: 1; }
.store-name { font-size: .875rem; font-weight: 600; line-height: 1.25; margin-top: .125rem; }
.app-feat-list { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 480px) { .app-feat-list { grid-template-columns: 1fr 1fr; } }
.app-feat-list li {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: .75rem; padding: .75rem 1rem;
  font-size: .875rem; color: #D6D3D1; font-weight: 500;
}
.app-feat-list li svg { color: #FB923C; flex-shrink: 0; width: 1.25rem; height: 1.25rem; }

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section { padding: 0 0 6rem; background: var(--bg-alt); }
.cta-card {
  position: relative; background: var(--dark); border-radius: 1.5rem;
  padding: 4rem 2rem; text-align: center; overflow: hidden;
}
.cta-dot-grid {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(194,65,12,.15) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32rem; height: 16rem; pointer-events: none;
  background: radial-gradient(ellipse, rgba(194,65,12,.18) 0%, transparent 70%);
}
.cta-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.3), transparent);
}
.cta-content { position: relative; z-index: 1; max-width: 36rem; margin-inline: auto; }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--white); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: #A8A29E; line-height: 1.7; margin-bottom: 2rem; }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .9375rem; color: var(--white);
  padding: .875rem 2rem; border-radius: .875rem; border: none;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-b) 100%);
  box-shadow: 0 0 20px rgba(194,65,12,.4), 0 4px 12px rgba(0,0,0,.4);
  transition: opacity var(--t);
}
.btn-cta:hover { opacity: .88; }
.btn-cta svg { width: 1rem; height: 1rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background: var(--dark); color: #A8A29E; padding: 3rem 0; }
.footer-top {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.footer-logo img { width: 1.75rem; height: 1.75rem; object-fit: contain; }
.footer-logo-name { font-weight: 700; color: var(--white); font-size: .9375rem; }
.footer-logo-dot { color: var(--copper); }
.footer-tagline { font-size: .75rem; color: #57534E; max-width: 24rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .875rem; }
.footer-links a:hover { color: #D6D3D1; }
.footer-bottom {
  display: flex; flex-direction: column; gap: .75rem;
  font-size: .75rem; color: #44403C;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-legal a:hover { color: #A8A29E; }
.footer-legal button {
  background: none; border: none; color: #44403C; font-size: .75rem;
  font-family: inherit; padding: 0; transition: color var(--t);
}
.footer-legal button:hover { color: #A8A29E; }

/* ══════════════════════════════════
   COOKIE BANNER
══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 1.25rem; left: 1rem; right: 1rem; z-index: 200;
  background: rgba(28,25,23,.97); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
@media (min-width: 640px) { .cookie-banner { left: auto; right: 1.25rem; width: 24rem; } }
.cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, transparent, rgba(194,65,12,.35), transparent);
}
.cookie-body { padding: 1.25rem; }
.cookie-header { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.cookie-dot {
  width: .5rem; height: .5rem; border-radius: 9999px;
  background: var(--orange); box-shadow: 0 0 6px rgba(249,115,22,.7); flex-shrink: 0;
}
.cookie-title { font-size: .875rem; font-weight: 600; color: var(--white); }
.cookie-text { font-size: .75rem; color: #A8A29E; line-height: 1.6; margin-bottom: .375rem; }
.cookie-toggle {
  background: none; border: none; font-size: .6875rem; color: var(--copper);
  font-family: inherit; margin-bottom: .75rem; display: block; transition: color var(--t);
}
.cookie-toggle:hover { color: var(--copper-b); }
.cookie-details {
  border: 1px solid rgba(255,255,255,.07); border-radius: .75rem;
  padding: .75rem; margin-bottom: .75rem; font-size: .6875rem; color: #78716C;
  display: none;
}
.cookie-details.open { display: block; }
.cookie-detail-row { display: flex; gap: .5rem; margin-bottom: .625rem; }
.cookie-detail-row strong { display: block; color: #D6D3D1; margin-bottom: .125rem; }
.cookie-detail-row p { line-height: 1.5; margin: 0; }
.cookie-check {
  width: 1rem; height: 1rem; border-radius: .25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex-shrink: 0; margin-top: .125rem;
}
.cookie-check-green { background: rgba(21,128,61,.25); border: 1px solid rgba(21,128,61,.4); color: #4ADE80; }
.cookie-check-orange { background: rgba(154,52,18,.25); border: 1px solid rgba(154,52,18,.4); color: var(--copper-b); }
.cookie-policy-link { display: inline-block; color: var(--copper); margin-top: .375rem; font-size: .6875rem; }
.cookie-policy-link:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; }
.cookie-decline {
  flex: 1; font-size: .75rem; font-weight: 500; color: #D6D3D1;
  border: 1px solid rgba(255,255,255,.12); background: transparent;
  border-radius: .75rem; padding: .625rem .75rem; font-family: inherit;
  transition: border-color var(--t), color var(--t);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.25); color: var(--white); }
.cookie-accept {
  flex: 1; font-size: .75rem; font-weight: 600; color: var(--white);
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-b) 100%);
  border: none; border-radius: .75rem; padding: .625rem .75rem;
  font-family: inherit; transition: opacity var(--t);
}
.cookie-accept:hover { opacity: .88; }

/* ══════════════════════════════════
   POLICY PAGES
══════════════════════════════════ */
.policy-hero { background: var(--dark); padding: 5rem 0 3rem; }
.policy-hero .container { max-width: 48rem; }
.back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: #A8A29E; margin-bottom: 2rem;
  transition: color var(--t);
}
.back-link svg { width: 1rem; height: 1rem; }
.back-link:hover { color: var(--white); }
.policy-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--white); letter-spacing: -.02em;
}
.policy-content { max-width: 48rem; padding-top: 3.5rem; padding-bottom: 4rem; }
.policy-content h2 {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.75; }
.policy-content a { color: var(--copper); }
.policy-content a:hover { text-decoration: underline; }
.policy-content strong { color: var(--text); }
.policy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: .375rem; color: var(--text-muted); }
.policy-info-box {
  background: var(--bg-alt); border-radius: .75rem; padding: 1rem;
  font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-top: 1rem;
}
.policy-nav {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}

/* ══════════════════════════════════
   FADE-UP ANIMATION
══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(2rem) scale(.97);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--delay, 0ms);
}
.fade-up.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
