/* public/css/wolvo.css */
/* =========================================================
   WOLVO CHIPPY — Cinematic Food Website (White/Tiger Orange/Black)
   Reusable across all pages (Home/About/Menu/Order/Contact)
   - White background (premium clean)
   - Tiger Orange accent (cinematic glow)
   - Doodle icons + parallax helpers
   ========================================================= */

/* -----------------------------
   1) CSS Reset + Base
------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html:focus-within { scroll-behavior: smooth; }

html, body { height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  color: var(--text);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }

input, button, textarea, select { font: inherit; color: inherit; }

a{ color: inherit; text-decoration: none; }

ul, ol{ padding-left: 1.2rem; }

p{ margin: 0 0 1rem; }

h1, h2, h3, h4{ margin: 0 0 .75rem; line-height: 1.15; }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce){
  html:focus-within { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* -----------------------------
   2) Theme Variables (Tiger Orange)
------------------------------ */
:root{
  /* Primary canvas */
  --bg: #ffffff;
  --bg2:#f7f7f7;
  --panel:#ffffff;
  --card:#ffffff;

  --text:#0f0f10;
  --muted:#4f4f57;
  --muted2:#6b6b74;

  --white:#ffffff;
  --black:#0a0a0b;

  /* Tiger Orange */
  --accent:#ff6a00;         /* tiger orange */
  --accent2:#e85f00;        /* deeper */
  --accentGlow: rgba(255, 106, 0, .28);

  /* Lines + shadows on white */
  --line: rgba(15,15,16,.10);
  --line2: rgba(15,15,16,.14);

  --shadow: 0 18px 60px rgba(10,10,11,.12);
  --shadow2: 0 14px 38px rgba(10,10,11,.10);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1200px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease2: cubic-bezier(.22,1,.36,1);

  --blur: blur(16px);

  --header-h: 78px;
  --topbar-h: 44px;

  /* Parallax helpers */
  --parallax-strength: 18px;
}

/* Optional theme hook */
body.theme-white{
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(255,106,0,.10), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(10,10,11,.05), transparent 55%),
    var(--bg);
}

/* -----------------------------
   3) Layout Utilities
------------------------------ */
.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section{
  padding: 92px 0;
  position: relative;
}

.section--dark{
  background: linear-gradient(180deg, rgba(10,10,11,.03), rgba(10,10,11,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--feature{
  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(255,106,0,.10), transparent 58%),
    radial-gradient(900px 520px at 80% 30%, rgba(10,10,11,.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.00));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head{ margin-bottom: 28px; }

.section__head--split{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section__title{
  font-size: clamp(26px, 2.3vw, 40px);
  letter-spacing: -0.02em;
}

.section__lead{
  color: var(--muted);
  max-width: 66ch;
}

.section__actions{ display: flex; gap: 12px; }

/* Eyebrow */
.eyebrow{
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
}

/* -----------------------------
   4) Doodle Icons (CSS-only)
   Use: <span class="doodle doodle--star"></span>
------------------------------ */
.doodle{
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  color: var(--accent);
  opacity: .95;
  transform: translateY(2px);
}

/* hand-drawn circle */
.doodle--ring{
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: rotate(-8deg);
}

/* spark/star */
.doodle--star::before,
.doodle--star::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: currentColor;
  opacity: .9;
}
.doodle--star::before{ transform: rotate(45deg) scaleX(.35); }
.doodle--star::after{ transform: rotate(-45deg) scaleX(.35); }

/* underline squiggle */
.doodle--squiggle{
  width: 34px;
  height: 10px;
}
.doodle--squiggle::before{
  content:"";
  position: absolute;
  left: 0; right: 0; top: 4px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow:
    0 -3px 0 0 rgba(255,106,0,.0),
    0  3px 0 0 rgba(255,106,0,.0);
  /* fake wavy */
  clip-path: polygon(0% 0%, 6% 50%, 12% 0%, 18% 50%, 24% 0%, 30% 50%, 36% 0%, 42% 50%, 48% 0%, 54% 50%, 60% 0%, 66% 50%, 72% 0%, 78% 50%, 84% 0%, 90% 50%, 96% 0%, 100% 50%, 100% 100%, 0% 100%);
}

/* -----------------------------
   5) Topbar / Announcement
------------------------------ */
.topbar{
  position: sticky;
  top: 0;
  margin: 8px;
  z-index: 60;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.78);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar__left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.topbar__text{
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__right{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.topbar__link{
  color: var(--text);
  opacity: .9;
  transition: opacity .2s var(--ease);
}
.topbar__link:hover{ opacity: 1; }

.dot{ opacity: .55; }

/* Badge */
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(255,106,0,.25);
}
.badge--accent{
  background: linear-gradient(180deg, rgba(255,106,0,.18), rgba(255,106,0,.07));
  color: var(--text);
}

/* -----------------------------
   6) Header / Navbar
------------------------------ */
.header{
  position: sticky;
  top: var(--topbar-h);
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--line);
  margin: 8px;
}

.header.is-scrolled{
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(255,106,0,.20);
}

.header__inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo{
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10,10,11,.14));
}

.brand__text{
  display: grid;
  line-height: 1.1;
  gap: 4px;
  min-width: 0;
}

.brand__name{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  white-space: nowrap;
}

.brand__tag{
  font-size: 12px;
  color: var(--muted2);
  white-space: nowrap;
}

/* Nav */
.nav{ position: relative; }

.nav__menu{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link{
  position: relative;
  padding: 10px 10px;
  font-size: 14px;
  color: rgba(15,15,16,.80);
  transition: color .2s var(--ease), background .2s var(--ease);
  border-radius: 999px;
}
.nav__link:hover{
  color: var(--text);
  background: rgba(255,106,0,.06);
}

.nav__link::after{
  content:"";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,.95), transparent);
  transform: scaleX(0);
  transition: transform .25s var(--ease2);
  opacity: .9;
}
.nav__link:hover::after{ transform: scaleX(1); }

.nav__link.is-active{ color: var(--text); }
.nav__link.is-active::after{ transform: scaleX(1); }

.nav__cta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

/* Mobile toggle */
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.70);
  backdrop-filter: var(--blur);
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.nav__toggle:hover{ transform: translateY(-1px); border-color: rgba(255,106,0,.30); }

.nav__toggle-lines{
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav__toggle-lines::before{ top: -6px; }
.nav__toggle-lines::after{ top: 6px; }

/* -----------------------------
   7) Buttons, Pills, Links
------------------------------ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.75);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(15,15,16,.22);
  box-shadow: 0 12px 26px rgba(10,10,11,.12);
}

.btn--lg{ padding: 12px 18px; font-size: 14px; }
.btn--full{ width: 100%; }

.btn--accent{
  background: linear-gradient(180deg, rgba(255,106,0,1), rgba(232,95,0,1));
  border-color: rgba(255,106,0,.65);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(255,106,0,.18);
}
.btn--accent:hover{
  border-color: rgba(255,106,0,.9);
  box-shadow: 0 22px 60px rgba(255,106,0,.22);
}

.btn--ghost{
  background: rgba(255,255,255,.55);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.82);
  border-color: rgba(255,106,0,.25);
}

.btn--black{
  background: var(--text);
  color: var(--white);
  border-color: rgba(15,15,16,.25);
}
.btn--black:hover{
  border-color: rgba(255,106,0,.35);
}

.link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--accent);
}
.link:hover{ filter: brightness(1.05); }

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,0,.20);
  background: rgba(255,255,255,.65);
  backdrop-filter: var(--blur);
  font-size: 12px;
  color: var(--text);
}
.pill--outline{
  border-color: rgba(15,15,16,.16);
  background: rgba(255,255,255,.55);
}

/* Accent text */
.accent{
  color: var(--accent);
  text-shadow: 0 0 34px rgba(255,106,0,.15);
}

/* -----------------------------
   8) HERO (Video Background) + Parallax
------------------------------ */
.hero{
  position: relative;
  padding: 92px 0 76px;
  min-height: calc(100vh - (var(--header-h) + var(--topbar-h)));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.12) brightness(.78);
  transform: scale(1.04);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 25%, rgba(255,106,0,.26), transparent 56%),
    radial-gradient(700px 450px at 85% 15%, rgba(0,0,0,.16), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.78) 52%, rgba(255,255,255,.94));
}

.hero__grain{
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero__content{ position: relative; z-index: 1; }

.hero__kicker{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__title{
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.hero__subtitle{
  color: rgba(15,15,16,.78);
  max-width: 70ch;
  margin-top: 14px;
}

.hero__actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__platforms{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,15,16,.14);
  background: rgba(255,255,255,.70);
  backdrop-filter: var(--blur);
  color: rgba(15,15,16,.86);
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.platform:hover{
  transform: translateY(-1px);
  border-color: rgba(255,106,0,.32);
  background: rgba(255,255,255,.86);
}

.platform__icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: none;
}

/* Offer banner inside hero */
.hero__offer{
  margin-top: 26px;
  max-width: 760px;
}

.offer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,106,0,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.62));
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow2);
}

.offer__left{ display: grid; gap: 2px; }

.offer__big{
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: .02em;
  color: var(--accent);
}

.offer__small{
  color: rgba(15,15,16,.70);
  font-size: 13px;
}

/* Scroll cue */
.scrollcue{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 8px;
  color: rgba(15,15,16,.62);
  font-size: 12px;
  z-index: 2;
  opacity: .95;
}

.scrollcue__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,106,0,.95);
  box-shadow: 0 0 0 10px rgba(255,106,0,.12);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse{
  0%,100% { transform: translateY(0); box-shadow: 0 0 0 10px rgba(255,106,0,.12); }
  50% { transform: translateY(6px); box-shadow: 0 0 0 14px rgba(255,106,0,.07); }
}

/* -----------------------------
   9) Grid System
------------------------------ */
.grid{ display: grid; gap: 18px; }

.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* -----------------------------
   10) 3D Cards / Menu Cards
------------------------------ */
.card3d{
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  box-shadow: var(--shadow2);
  transform-style: preserve-3d;
  transition: transform .35s var(--ease2), border-color .25s var(--ease), box-shadow .35s var(--ease2);
  position: relative;
}

.card3d::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 20% 0%, rgba(255,106,0,.14), transparent 62%);
  opacity: .9;
  pointer-events: none;
}

.card3d:hover{
  border-color: rgba(255,106,0,.26);
  box-shadow: 0 26px 80px rgba(10,10,11,.18);
}

.card3d__media{
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card3d__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.08);
  transform: scale(1.03);
  transition: transform .8s var(--ease2);
}
.card3d:hover .card3d__media img{ transform: scale(1.10); }

.card3d__body{
  padding: 16px 16px 18px;
  transform: translateZ(18px);
}

.card3d__body h3{
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card3d__body p{
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

/* Menu Card */
.menuCard{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 50px rgba(10,10,11,.12);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.menuCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,106,0,.24);
}
.menuCard__img{
  aspect-ratio: 16/11;
  overflow: hidden;
}
.menuCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .7s var(--ease2);
}
.menuCard:hover .menuCard__img img{ transform: scale(1.10); }
.menuCard__body{ padding: 14px 14px 16px; }
.menuCard__body h3{ font-size: 16px; margin-bottom: 6px; }
.menuCard__body p{ color: var(--muted); font-size: 13px; margin-bottom: 10px; }

.chip{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,106,0,.22);
  color: var(--accent);
  background: rgba(255,106,0,.08);
}

/* Action Cards */
.actionCard{
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  box-shadow: var(--shadow2);
  padding: 18px;
}
.actionCard h3{ font-size: 18px; }
.actionCard p{ color: var(--muted); }

/* -----------------------------
   11) Feature Section Layout
------------------------------ */
.feature{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

.feature__copy .section__lead{ margin-bottom: 16px; }

.ticks{
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.ticks li{
  position: relative;
  padding-left: 30px;
  color: rgba(15,15,16,.86);
}
.ticks li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,106,0,.14);
  border: 1px solid rgba(255,106,0,.30);
  box-shadow: 0 0 0 8px rgba(255,106,0,.07);
}
.ticks li::after{
  content:"";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.feature__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 3D Frame */
.frame3d{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15,15,16,.10);
  box-shadow: 0 26px 80px rgba(10,10,11,.16);
  transform-style: preserve-3d;
}
.frame3d img{
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04);
}
.frame3d__glow{
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,106,0,.20), transparent 48%);
  opacity: .85;
  pointer-events: none;
  transform: translateZ(20px);
}

/* -----------------------------
   12) Info Panels + Map
------------------------------ */
.infoPanel{
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.infoPanel h3{ font-size: 18px; margin-bottom: 10px; }

.infoPanel--map{
  padding: 0;
  overflow: hidden;
}

.mapEmbed{
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--line);
}
.mapEmbed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.02) saturate(.95) brightness(1);
}

.mapMeta{
  padding: 14px 16px 16px;
  color: rgba(15,15,16,.88);
}
.mapMeta p{ margin: 0 0 6px; }
.mapMeta a{ color: var(--accent); font-weight: 900; }

/* -----------------------------
   13) Reviews
------------------------------ */
.reviews{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.rating{
  display: grid;
  gap: 6px;
  margin: 8px 0 14px;
}

.rating__score{
  font-size: 46px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 0 42px rgba(255,106,0,.12);
}

.rating__stars{ letter-spacing: .18em; color: rgba(15,15,16,.88); }
.rating__meta{ color: var(--muted); font-size: 13px; }

.quoteCard{
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.88));
  box-shadow: var(--shadow2);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.quoteCard::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 20% 0%, rgba(255,106,0,.12), transparent 62%);
  opacity: .8;
  pointer-events: none;
}
.quoteCard p{
  font-size: 14px;
  color: rgba(15,15,16,.86);
  margin: 0 0 10px;
}
.quoteCard__by{
  font-size: 12px;
  color: var(--muted2);
}

/* -----------------------------
   14) CTA Panel + Form
------------------------------ */
.ctaPanel{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,106,0,.22);
  background:
    radial-gradient(900px 420px at 25% 10%, rgba(255,106,0,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
  box-shadow: 0 26px 90px rgba(10,10,11,.16);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.ctaPanel__copy{
  padding: 22px;
  border-right: 1px solid var(--line);
}

.ctaPanel__rows{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ctaRow{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,106,0,.04);
}
.ctaRow__label{
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ctaRow__value{
  color: rgba(15,15,16,.92);
  font-weight: 900;
}

.ctaPanel__actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ctaPanel__apps{
  margin-top: 14px;
  color: rgba(15,15,16,.62);
  font-size: 13px;
}
.miniLink{ color: var(--accent); font-weight: 1000; }
.miniLink:hover{ filter: brightness(1.02); }

.ctaPanel__form{ padding: 22px; }

/* Form */
.form{ display: grid; gap: 12px; }
.form__row{ display: grid; gap: 8px; }

.label{
  font-size: 12px;
  color: rgba(15,15,16,.70);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.input,
.textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,15,16,.14);
  background: rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1px rgba(15,15,16,.02);
  color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.input::placeholder,
.textarea::placeholder{ color: rgba(15,15,16,.40); }
.input:focus,
.textarea:focus{
  border-color: rgba(255,106,0,.55);
  box-shadow: 0 0 0 8px rgba(255,106,0,.10);
}

.form__note{
  margin: 8px 0 0;
  color: rgba(15,15,16,.60);
  font-size: 12px;
}
.form__note a{ color: var(--accent); font-weight: 1000; }

/* -----------------------------
   15) Footer
------------------------------ */
.footer{
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 300px at 25% 0%, rgba(255,106,0,.08), transparent 60%),
    linear-gradient(180deg, rgba(10,10,11,.02), rgba(10,10,11,0));
}

.footer__inner{ display: grid; gap: 18px; }

.footer__brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo{
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10,10,11,.10));
}
.footer__brand p{
  margin: 2px 0 0;
  color: rgba(15,15,16,.68);
  font-size: 13px;
}

.footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(15,15,16,.82);
}
.footer__links a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.footer__links a:hover{
  border-color: rgba(255,106,0,.22);
  background: rgba(255,106,0,.06);
}

.footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(15,15,16,.60);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.footer__small a{ color: var(--accent); font-weight: 1000; }

/* -----------------------------
   16) Page Reveal Animations
------------------------------ */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease2), transform .8s var(--ease2);
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   17) Responsive
------------------------------ */
@media (max-width: 980px){
  .grid--4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .ctaPanel{ grid-template-columns: 1fr; }
  .ctaPanel__copy{ border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px){
  :root{ --header-h: 70px; }

  .topbar__text{ display: none; }
  .brand__text{ display: none; } /* mobile: logo + toggle */

  .nav__toggle{ display: inline-flex; align-items: center; justify-content: center; }

  .nav__menu{
    position: absolute;
    right: 0;
    top: calc(var(--header-h) - 6px);
    width: min(92vw, 360px);
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(15,15,16,.14);
    background: rgba(255,255,255,.92);
    backdrop-filter: var(--blur);
    box-shadow: 0 20px 80px rgba(10,10,11,.16);
    transform-origin: top right;
    transform: translateY(-8px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }

  .nav__menu.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav__link{
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: rgba(255,106,0,.05);
  }
  .nav__link:hover{
    border-color: rgba(255,106,0,.18);
    background: rgba(255,106,0,.08);
  }
  .nav__link::after{ display: none; }

  .nav__cta{
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .hero{
    padding: 78px 0 62px;
    min-height: 86vh;
  }

  .offer{ flex-direction: column; align-items: flex-start; }
  .section{ padding: 78px 0; }

  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }

  .footer__bottom{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px){
  .platform span{ display: none; }
  .btn--lg{ width: 100%; }
  .hero__actions{ flex-direction: column; }
}

/* -----------------------------
   18) Body scroll lock (mobile menu)
------------------------------ */
body.nav-open{ overflow: hidden; }
