/* Reezy — landing site styles */
:root {
  --brand: #5b3df5;
  --brand-dark: #4429d6;
  --brand-light: #efeaff;
  --ink: #15151f;
  --muted: #5f6072;
  --bg: #ffffff;
  --bg-soft: #f7f6fc;
  --border: #e7e6f0;
  --radius: 16px;
  --shadow: 0 18px 50px -20px rgba(40, 25, 120, 0.35);
  --max: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #8a6bff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--muted); font-weight: 500; }
.nav a:hover { color: var(--ink); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 50% -10%, var(--brand-light), transparent 70%);
  padding: 84px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand), #a07bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 540px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
}
.store-badge small { display: block; font-size: 0.68rem; font-weight: 500; opacity: 0.75; line-height: 1; }
.store-badge span { font-size: 1.02rem; line-height: 1.2; }
.store-badge:hover { text-decoration: none; opacity: 0.92; }

/* Phone mockup */
.hero-art { display: flex; justify-content: center; }
.phone {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: #11101a;
  padding: 12px;
  box-shadow: var(--shadow);
  position: relative;
}
.phone::after {
  content: "";
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px; border-radius: 999px; background: #11101a;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, #6b4dff, #4429d6 60%, #2a1a8f);
  color: #fff;
  padding: 54px 22px 22px;
  overflow: hidden;
}
.phone-screen .ps-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.phone-screen .ps-sub { opacity: 0.8; font-size: 0.9rem; margin-top: 4px; }
.ps-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  margin-top: 16px;
  backdrop-filter: blur(4px);
}
.ps-card .row { display: flex; justify-content: space-between; align-items: center; }
.ps-card .name { font-weight: 700; }
.ps-card .meta { font-size: 0.78rem; opacity: 0.82; margin-top: 2px; }
.ps-pill { font-size: 0.7rem; background: rgba(255,255,255,0.22); padding: 4px 10px; border-radius: 999px; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 1.18rem; }
.feature p { margin: 0; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { text-align: center; }
.step .num {
  counter-increment: step;
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
}
.step .num::before { content: counter(step); }
.step h3 { margin: 0 0 6px; font-size: 1.14rem; }
.step p { margin: 0; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--brand), #7c5cff);
  color: #fff;
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 0 0 12px; letter-spacing: -0.02em; }
.cta-band p { opacity: 0.9; font-size: 1.1rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-band .btn-primary:hover { background: #f2efff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c9c8d6;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer .brand { color: #fff; }
.site-footer p { color: #9a99ad; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: #c9c8d6; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem; color: #9a99ad;
}

/* ---------- Legal pages ---------- */
.legal {
  padding: 56px 0 80px;
}
.legal .container { max-width: 800px; }
.legal h1 { font-size: 2.2rem; letter-spacing: -0.02em; margin: 0 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 36px; font-size: 0.95rem; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: #33333f; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { word-break: break-word; }
.callout {
  background: var(--brand-light);
  border: 1px solid #d9d0ff;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--brand-dark);
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .cta-row, .store-badges { justify-content: center; }
  .hero-art { margin-top: 24px; }
  .features, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 22px; }
}

/* =========================================================
   ReservEasy-parity components (Turkish site)
   ========================================================= */

/* Hero search + stats */
.hero-search {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-top: 8px;
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font);
  background: transparent;
  color: var(--ink);
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat .n {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}
.hero-stats .stat .l { color: var(--muted); font-size: 0.92rem; }

/* Confirmation chip on phone */
.ps-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 20px;
}
.ps-confirm .tick {
  width: 34px; height: 34px; border-radius: 50%;
  background: #29c172; color: #fff; display: grid; place-items: center; font-weight: 800;
}
.ps-confirm .big { font-weight: 700; }
.ps-confirm .small { font-size: 0.78rem; opacity: 0.85; }

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9d0ff; text-decoration: none; }
.cat-card .ico {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px;
  background: var(--brand-light); display: grid; place-items: center; font-size: 1.7rem;
}
.cat-card h3 { margin: 0 0 6px; color: var(--ink); font-size: 1.18rem; }
.cat-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Business cards */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.biz-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.biz-photo {
  height: 150px;
  background: linear-gradient(135deg, var(--brand), #8a6bff);
  position: relative;
  display: grid; place-items: center;
  color: #fff; font-size: 2.4rem;
}
.biz-tags { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; }
.biz-tags .tag {
  background: rgba(0,0,0,0.35); color: #fff; font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.biz-tags .tag.pop { background: #ff7a59; }
.biz-body { padding: 18px; }
.biz-body h3 { margin: 0 0 4px; font-size: 1.12rem; }
.biz-body .loc { color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; }
.biz-body .rate { color: #f5a623; font-weight: 600; font-size: 0.9rem; }
.biz-body .rate span { color: var(--muted); font-weight: 500; }
.biz-body .btn { width: 100%; justify-content: center; margin-top: 14px; }

.center-cta { text-align: center; margin-top: 40px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
}
.review-card .stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }
.review-card blockquote { margin: 0 0 18px; font-size: 1.04rem; color: #33333f; line-height: 1.6; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #8a6bff); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.review-card .who .name { font-weight: 700; }
.review-card .who .sub { color: var(--muted); font-size: 0.85rem; }

/* Counter band */
.counter-band {
  background: linear-gradient(120deg, var(--brand-dark), #6b4dff);
  color: #fff; border-radius: 24px; padding: 50px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.counter-band .c .n { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.counter-band .c .l { opacity: 0.85; margin-top: 4px; }

/* About */
.about-hero { background: radial-gradient(1200px 480px at 50% -10%, var(--brand-light), transparent 70%); padding: 70px 0 30px; text-align: center; }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: #33333f; font-size: 1.06rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.value .ico { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-light); display: grid; place-items: center; font-size: 1.5rem; margin: 0 auto 14px; }
.value h3 { margin: 0 0 6px; }
.value p { margin: 0; color: var(--muted); }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; }
.member .photo {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--brand), #8a6bff); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem; font-weight: 700;
}
.member h3 { margin: 0 0 2px; font-size: 1.1rem; }
.member p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.form-card, .info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px;
  font-family: var(--font); font-size: 0.98rem; color: var(--ink); background: var(--bg-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand-light); border-color: var(--brand); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.info-block { display: flex; gap: 14px; margin-bottom: 22px; }
.info-block .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-light); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.info-block h4 { margin: 0 0 4px; font-size: 1rem; }
.info-block p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 14px;
}
.faq summary { font-weight: 700; cursor: pointer; list-style: none; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

/* Page hero (small) */
.page-hero { background: radial-gradient(1000px 380px at 50% -20%, var(--brand-light), transparent 70%); padding: 60px 0 20px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.02em; margin: 0 0 10px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* Footer expanded */
.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pay-methods .pm { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); color: #c9c8d6; font-size: 0.8rem; padding: 6px 12px; border-radius: 8px; }

@media (max-width: 900px) {
  .cat-grid, .biz-grid, .review-grid, .values, .contact-grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .counter-band { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   v2 — real imagery, smoother UI, motion
   ========================================================= */

/* Smooth img rendering */
img { height: auto; }

/* Header: subtle elevation once scrolled */
.site-header { transition: box-shadow 0.25s ease, background 0.25s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(40,25,120,0.25); background: rgba(255,255,255,0.92); }

/* ---- Hero art: real photo with floating glass badge ---- */
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-photo img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-photo .float-badge {
  position: absolute;
  left: -22px;
  bottom: 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px -16px rgba(40,25,120,0.45);
  animation: floaty 4.5s ease-in-out infinite;
}
.hero-photo .float-badge .tick {
  width: 38px; height: 38px; border-radius: 50%;
  background: #29c172; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-photo .float-badge .big { font-weight: 700; color: var(--ink); line-height: 1.2; }
.hero-photo .float-badge .small { font-size: 0.8rem; color: var(--muted); }
.hero-photo .float-rating {
  position: absolute;
  right: -16px;
  top: 26px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 16px 40px -16px rgba(40,25,120,0.45);
  animation: floaty 4.5s ease-in-out infinite reverse;
}
.hero-photo .float-rating .n { font-weight: 800; color: var(--brand-dark); font-size: 1.2rem; }
.hero-photo .float-rating .s { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---- Category cards: image + overlay ---- */
.cat-card { padding: 0; overflow: hidden; text-align: left; }
.cat-card .cat-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.cat-card .cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-card .cat-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,60,0.55), rgba(20,15,60,0) 55%);
}
.cat-card .cat-emoji {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 1.3rem;
}
.cat-card .cat-text { padding: 18px 20px 22px; }
.cat-card .cat-text h3 { margin: 0 0 4px; }

/* ---- Business cards: real photo ---- */
.biz-photo { height: 180px; font-size: 0; }
.biz-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.biz-card:hover .biz-photo img { transform: scale(1.06); }
.biz-photo { overflow: hidden; }

/* ---- Avatars use real images ---- */
.review-card .avatar, .member .photo {
  overflow: hidden; padding: 0;
}
.review-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---- About: hero image ---- */
.about-figure { margin: 0 auto 8px; max-width: 760px; }
.about-figure img { width: 100%; border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 16/8; object-fit: cover; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo .float-badge, .hero-photo .float-rating { animation: none; }
}

/* ---- Mobile nav ---- */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: 0.25s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.header-actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 0; display: none; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; }
  .header-actions .btn-ghost { display: none; }
  .hero-photo { margin: 0 auto; }
  .hero-photo .float-badge { left: 0; }
}

/* =========================================================
   Business CTA — premium redesign
   ========================================================= */
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.biz-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px;
  color: #fff;
  background:
    radial-gradient(900px 400px at 110% -20%, #7c5cff 0%, transparent 55%),
    linear-gradient(125deg, #3a23c4 0%, #5b3df5 45%, #7a52ff 100%);
  box-shadow: 0 30px 70px -30px rgba(40,25,120,0.65);
  isolation: isolate;
}
/* soft decorative blobs */
.biz-cta-bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
}
.biz-cta-bg span:nth-child(1) {
  width: 260px; height: 260px; right: -60px; bottom: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
}
.biz-cta-bg span:nth-child(2) {
  width: 180px; height: 180px; left: 30%; top: -70px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}

.biz-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.biz-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.biz-cta-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.1;
}
.biz-cta-copy > p {
  opacity: 0.92;
  font-size: 1.08rem;
  margin: 0 0 24px;
  max-width: 480px;
}
.biz-cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.biz-cta-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
}
.biz-cta-perks .ck {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
  font-size: 0.72rem; flex-shrink: 0;
}
.biz-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.biz-cta-actions .btn-primary { background: #fff; color: var(--brand-dark); }
.biz-cta-actions .btn-primary:hover { background: #f1edff; }

/* Mini dashboard mockup */
.biz-cta-visual { display: flex; justify-content: center; }
.mini-panel {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 18px;
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
  transform: rotate(1.4deg);
  transition: transform 0.4s ease;
}
.biz-cta:hover .mini-panel { transform: rotate(0deg) translateY(-4px); }
.mini-panel-top { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.mini-panel-top .dot { width: 10px; height: 10px; border-radius: 50%; }
.mini-panel-top .dot.r { background: #ff6b6b; }
.mini-panel-top .dot.y { background: #ffd166; }
.mini-panel-top .dot.g { background: #4ade80; }
.mini-panel-top .mini-title { margin-left: 8px; font-size: 0.82rem; opacity: 0.85; font-weight: 600; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.mini-stat {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.mini-stat .mn { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.mini-stat .ml { font-size: 0.68rem; opacity: 0.8; margin-top: 2px; }
.mini-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 10px;
}
.mini-row .av {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.25);
  display: grid; place-items: center; font-size: 0.72rem; font-weight: 700;
}
.mini-row .rn { font-weight: 700; font-size: 0.86rem; }
.mini-row .rm { font-size: 0.72rem; opacity: 0.82; }
.mini-row div:nth-child(2) { flex: 1; }
.mini-row .badge {
  font-size: 0.68rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.mini-row .badge.ok { background: rgba(74,222,128,0.25); color: #d6ffe6; }
.mini-row .badge.wait { background: rgba(255,209,102,0.25); color: #fff2cf; }

@media (max-width: 900px) {
  .biz-cta { padding: 36px 24px; }
  .biz-cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .biz-cta-perks { grid-template-columns: 1fr; }
  .mini-panel { transform: none; }
}
