/* ============================================================
   Tap It! by Kaze Prints — Global Styles
   kazeprints.com
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --dark:        #0f172a;
  --dark-2:      #1e293b;
  --dark-3:      #334155;
  --teal:        #0891b2;
  --teal-light:  #22d3ee;
  --teal-dark:   #155e75;
  --teal-glow:   rgba(8,145,178,0.18);
  --orange:      #ea580c;
  --orange-light:#fb923c;
  --orange-glow: rgba(234,88,12,0.18);
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-50:     #f1f5f9;
  --gray-100:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --success:     #059669;
  --success-bg:  #d1fae5;
  --warning:     #d97706;
  --warning-bg:  #fef3c7;
  --error:       #dc2626;
  --error-bg:    #fee2e2;

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:9999px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 24px rgba(0,0,0,.1),  0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 48px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.08);

  --nav-h: 68px;
  --max-w: 1180px;
  --pad:   1.25rem;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea { outline: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 800; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
           overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-gray   { color: var(--gray-500); }
.fw-800 { font-weight: 800; }
.mt-0  { margin-top: 0; }
.mb-sm { margin-bottom: .75rem; }
.mb-md { margin-bottom: 1.5rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-main {
  font-size: 1.35rem; font-weight: 900; color: var(--dark); letter-spacing: -.5px;
}
.nav-logo-main .tap { color: var(--teal); }
.nav-logo-main .excl { color: var(--orange); }
.nav-logo-sub {
  font-size: .65rem; color: var(--gray-400); font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px;
}
.nav-links {
  display: none; gap: 1.75rem; align-items: center;
}
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--gray-500);
  transition: color var(--transition);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.nav-active::after { transform: scaleX(1); }
.nav-cta {
  display: none;
  background: var(--orange); color: var(--white) !important;
  padding: .5rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .85rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border-bottom: none !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #c2410c !important; transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--orange-glow);
}
.nav-burger {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--white); z-index: 199; flex-direction: column;
  padding: 1.5rem; gap: .5rem; overflow-y: auto;
  border-top: 1px solid var(--gray-100); box-shadow: var(--shadow-lg);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 1.05rem; font-weight: 600; color: var(--dark);
  padding: .85rem 0; border-bottom: 1px solid var(--gray-100);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .drawer-cta {
  margin-top: .75rem; background: var(--orange); color: var(--white);
  text-align: center; padding: 1rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem; border: none;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; }
  .nav-burger { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9375rem; line-height: 1;
  transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover {
  background: #c2410c; border-color: #c2410c;
  transform: translateY(-2px); box-shadow: 0 6px 18px var(--orange-glow);
}
.btn-teal {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark); border-color: var(--teal-dark);
  transform: translateY(-2px); box-shadow: 0 6px 18px var(--teal-glow);
}
.btn-outline {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-teal {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal); color: var(--white);
}
.btn-ghost {
  background: rgba(255,255,255,.12); color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .8125rem; }
.btn-block { width: 100%; }
.btn-dark {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-gray { background: var(--gray-50); }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
  background: var(--teal-glow); padding: .3rem .85rem;
  border-radius: var(--radius-pill); margin-bottom: .85rem;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; color: var(--dark);
  margin-bottom: .875rem; letter-spacing: -.3px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.0625rem; color: var(--gray-500); line-height: 1.75;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #060d1f 0%, var(--dark) 55%, #0c1d35 100%);
  color: var(--white); overflow: hidden; position: relative;
  padding: 4.5rem 0 5.5rem;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3.5rem; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; color: var(--teal-light);
  background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2);
  padding: .35rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.12;
  margin-bottom: 1.25rem; letter-spacing: -.4px;
}
.hero-title .hl { color: var(--teal-light); }
.hero-subtitle {
  font-size: 1.075rem; color: rgba(255,255,255,.72); line-height: 1.75;
  margin-bottom: 2.25rem; max-width: 500px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.hero-trust-item { display: flex; align-items: center; gap: .4rem; }
.hero-trust-item .t-icon { color: var(--teal-light); }

/* Hero Visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 360px;
}
.hero-stack {
  position: relative; width: 320px; height: 380px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
}

/* Phone */
.mock-phone {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 160px; z-index: 10;
  background: var(--dark-2); border-radius: 28px; padding: 8px;
  border: 2px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
}
.mock-phone-notch {
  background: var(--dark); height: 20px; border-radius: 10px 10px 0 0;
  display: flex; align-items: center; justify-content: center; margin-bottom: 2px;
}
.mock-phone-notch-bar {
  width: 50px; height: 5px; background: rgba(255,255,255,.15); border-radius: 3px;
}
.mock-phone-screen {
  background: #f8fafc; border-radius: 0 0 20px 20px; overflow: hidden;
}
.mps-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: .6rem; text-align: center;
}
.mps-avatar {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-glow); border: 1px solid rgba(8,145,178,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin: 0 auto .3rem;
}
.mps-name { font-size: .48rem; font-weight: 800; color: var(--white); }
.mps-type { font-size: .4rem; color: var(--teal-light); margin-bottom: .1rem; }
.mps-btns { display: flex; flex-direction: column; gap: 3px; padding: .4rem; }
.mps-btn {
  padding: .25rem; border-radius: 5px; font-size: .38rem;
  font-weight: 700; text-align: center;
}
.mps-btn-dark { background: var(--dark); color: var(--white); }
.mps-btn-teal { background: var(--teal); color: var(--white); }
.mps-btn-orange { background: var(--orange); color: var(--white); }
.mps-btn-outline {
  background: var(--white); color: var(--dark);
  border: 1px solid var(--gray-100);
}

/* NFC Card */
.mock-nfc-card {
  position: absolute; right: -20px; top: 10px;
  width: 170px; z-index: 8;
  background: linear-gradient(135deg, #0c1a2e 0%, #1e3a5f 100%);
  border-radius: 14px; padding: 1rem 1.1rem;
  border: 1px solid rgba(8,145,178,.3);
  box-shadow: var(--shadow-xl);
  transform: rotate(8deg);
  color: var(--white);
}
.mnc-chip {
  width: 28px; height: 20px; border-radius: 4px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  margin-bottom: .5rem; position: relative; overflow: hidden;
}
.mnc-chip::before {
  content: ''; position: absolute; top: 2px; left: 3px; right: 3px; bottom: 2px;
  border: 1px solid rgba(0,0,0,.2); border-radius: 2px;
}
.mnc-nfc-icon {
  font-size: .7rem; color: var(--teal-light); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .25rem; font-weight: 700;
}
.mnc-name { font-size: .7rem; font-weight: 800; margin-bottom: .15rem; }
.mnc-title { font-size: .55rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
.mnc-tap {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .5rem; color: var(--teal-light); font-weight: 700;
  background: rgba(8,145,178,.15); padding: .2rem .45rem;
  border-radius: var(--radius-pill);
}

/* QR Card */
.mock-qr-card {
  position: absolute; left: -15px; bottom: 20px;
  width: 145px; z-index: 8;
  background: var(--white); border-radius: 14px; padding: .875rem;
  box-shadow: var(--shadow-xl); transform: rotate(-7deg);
}
.mqc-logo {
  font-size: .55rem; font-weight: 900; color: var(--dark);
  margin-bottom: .4rem;
}
.mqc-logo span { color: var(--teal); }
.mqc-qr {
  width: 56px; height: 56px; margin-bottom: .4rem;
  display: grid; grid-template-columns: repeat(7,1fr); gap: 1.5px;
  padding: 4px; background: var(--white);
  border: 1.5px solid var(--dark); border-radius: 4px;
}
.mqc-qr span {
  border-radius: 1px;
}
.mqc-name { font-size: .55rem; font-weight: 800; color: var(--dark); }
.mqc-scan { font-size: .45rem; color: var(--gray-400); }

/* Floating badges */
.hero-badge {
  position: absolute; display: flex; align-items: center; gap: .4rem;
  background: var(--white); border-radius: var(--radius-pill);
  padding: .4rem .75rem; font-size: .7rem; font-weight: 700;
  color: var(--dark); box-shadow: var(--shadow-md); z-index: 15;
  animation: floatBadge 3s ease-in-out infinite;
}
.hero-badge-1 { top: 15px; left: 0; animation-delay: 0s; }
.hero-badge-2 { bottom: 30px; right: -10px; animation-delay: 1.5s; }
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* ── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3,1fr); } }

.feature-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.75rem; position: relative;
  transition: all var(--transition); overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal-light); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.feature-title { font-size: 1.075rem; font-weight: 800; margin-bottom: .45rem; }
.feature-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── How It Works ───────────────────────────────────────────── */
.steps-wrap {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px)  { .steps-wrap { grid-template-columns: repeat(5,1fr); gap: 1rem; } }

.step-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
@media (min-width: 768px) {
  .step-item { flex-direction: column; align-items: center; text-align: center; }
}
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px var(--teal-glow);
}
.step-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: .3rem; }
.step-body p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 960px; margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  background: var(--white); border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 2rem; position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white); padding: .28rem 1.2rem; border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 800; white-space: nowrap; letter-spacing: .3px;
}
.pricing-label {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--teal); margin-bottom: .4rem;
}
.pricing-name { font-size: 1.4rem; font-weight: 900; margin-bottom: .2rem; }
.pricing-price {
  display: flex; align-items: baseline; gap: .2rem; margin-bottom: 1.5rem;
}
.pricing-price .amt {
  font-size: 2.75rem; font-weight: 900; color: var(--dark); line-height: 1;
}
.pricing-price .per { font-size: .875rem; color: var(--gray-400); }
.pricing-price .orig {
  font-size: .875rem; color: var(--gray-400); text-decoration: line-through;
}
.pricing-features { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .1rem; }
.pricing-feature {
  display: flex; gap: .6rem; align-items: flex-start;
  padding: .4rem 0; font-size: .875rem; color: var(--dark);
  border-bottom: 1px solid var(--gray-50);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-check { color: var(--teal); flex-shrink: 0; margin-top: 1px; font-weight: 800; }

/* ── Comparison ─────────────────────────────────────────────── */
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; min-width: 540px; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.comparison-table th,
.comparison-table td {
  padding: .875rem 1.25rem; text-align: left; font-size: .875rem;
  border-bottom: 1px solid var(--gray-50);
}
.comparison-table thead tr { background: var(--dark); }
.comparison-table th { color: var(--white); font-weight: 800; }
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.ct-yes { color: var(--teal); font-size: 1.15rem; }
.ct-no  { color: var(--gray-300); font-size: 1.15rem; }
.ct-partial { color: var(--warning); font-size: .875rem; font-weight: 700; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.test-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-xs);
}
.test-stars { color: var(--orange); font-size: .9rem; margin-bottom: .875rem; letter-spacing: 2px; }
.test-text {
  font-size: .9375rem; color: var(--dark); line-height: 1.72;
  margin-bottom: 1.25rem; font-style: italic;
}
.test-author { display: flex; align-items: center; gap: .875rem; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: .9rem;
}
.test-name  { font-size: .875rem; font-weight: 800; }
.test-role  { font-size: .8rem; color: var(--gray-500); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; cursor: pointer; font-weight: 700; font-size: .9375rem;
  gap: 1rem; transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  font-size: 1.4rem; color: var(--teal); flex-shrink: 0;
  transition: transform .3s; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner {
  padding-bottom: 1.25rem; font-size: .9rem; color: var(--gray-500); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: rgba(255,255,255,.6); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand-name {
  font-size: 1.35rem; font-weight: 900; color: var(--white); margin-bottom: .2rem;
}
.footer-brand-name .tap { color: var(--teal-light); }
.footer-brand-sub {
  font-size: .68rem; color: rgba(255,255,255,.3); text-transform: uppercase;
  letter-spacing: .7px; margin-bottom: .75rem;
}
.footer-tagline {
  font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem;
  font-style: italic;
}
.footer-col-title {
  font-size: .75rem; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: .875rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  text-align: center; font-size: .8rem; color: rgba(255,255,255,.3);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 580px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label {
  display: block; font-size: .8375rem; font-weight: 700; color: var(--dark);
  margin-bottom: .375rem;
}
.form-label span.req { color: var(--orange); margin-left: .15rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--gray-100);
  border-radius: var(--radius-md); font-size: .9375rem; color: var(--dark);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-input.is-error, .form-select.is-error { border-color: var(--error); }
.form-error { font-size: .8rem; color: var(--error); margin-top: .3rem; }
.form-hint  { font-size: .8rem; color: var(--gray-400); margin-top: .3rem; }
.form-textarea { min-height: 90px; resize: vertical; }

.oauth-wrap { display: flex; flex-direction: column; gap: .75rem; }
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  width: 100%; padding: .875rem; border: 2px solid var(--gray-100);
  border-radius: var(--radius-md); background: var(--white); font-size: .9375rem;
  font-weight: 700; color: var(--dark); cursor: pointer; transition: all var(--transition);
  font-family: inherit;
}
.oauth-btn:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.oauth-divider {
  display: flex; align-items: center; gap: .875rem;
  color: var(--gray-400); font-size: .8125rem; margin: 1.25rem 0;
}
.oauth-divider::before, .oauth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-100);
}

/* ── Cards / Badges ─────────────────────────────────────────── */
.card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-xs);
}
.card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .25rem; }
.card-subtitle { font-size: .875rem; color: var(--gray-500); }

.badge {
  display: inline-flex; align-items: center; padding: .22rem .65rem;
  border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning  { background: var(--warning-bg);  color: var(--warning); }
.badge-teal     { background: var(--teal-glow);    color: var(--teal); }
.badge-orange   { background: var(--orange-glow);  color: var(--orange); }
.badge-gray     { background: var(--gray-50);      color: var(--gray-500); }

/* ── Info Box ───────────────────────────────────────────────── */
.info-box {
  background: var(--teal-glow); border: 1px solid rgba(8,145,178,.2);
  border-radius: var(--radius-md); padding: 1rem 1.1rem;
  font-size: .875rem; color: var(--dark); line-height: 1.6;
  display: flex; gap: .65rem; align-items: flex-start;
}
.info-box-icon { flex-shrink: 0; font-size: 1rem; }
.info-box.orange {
  background: var(--orange-glow); border-color: rgba(234,88,12,.2);
}
.info-box.success {
  background: var(--success-bg); border-color: rgba(5,150,105,.2);
}

/* ── Auth Pages ─────────────────────────────────────────────── */
.auth-page { min-height: 100vh; background: var(--off-white); display: flex; flex-direction: column; }
.auth-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 2rem var(--pad);
}
.auth-box {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 2.25rem;
  width: 100%; max-width: 480px; box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo-main { font-size: 1.65rem; font-weight: 900; color: var(--dark); }
.auth-logo-main .tap  { color: var(--teal); }
.auth-logo-main .excl { color: var(--orange); }
.auth-logo-sub { font-size: .7rem; color: var(--gray-400); letter-spacing: .6px; text-transform: uppercase; }
.auth-title    { font-size: 1.45rem; font-weight: 900; text-align: center; margin-bottom: .35rem; }
.auth-subtitle { font-size: .9rem; color: var(--gray-500); text-align: center; margin-bottom: 1.75rem; }
.auth-footer   { text-align: center; margin-top: 1.25rem; font-size: .875rem; color: var(--gray-500); }
.auth-footer a { color: var(--teal); font-weight: 700; }

/* ── Purchase Page ──────────────────────────────────────────── */
.purchase-layout {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 960px) { .purchase-layout { grid-template-columns: 1fr 360px; align-items: start; } }

.pkg-card {
  background: var(--white); border: 2.5px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 1.75rem; cursor: pointer;
  transition: all var(--transition); position: relative; user-select: none;
}
.pkg-card.selected { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg); }
.pkg-card.pkg-pro { border-color: var(--orange-light); }
.pkg-card.pkg-pro.selected { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), var(--shadow-lg); }
.pkg-radio { position: absolute; top: 1.25rem; right: 1.25rem; }
.pkg-radio-ring {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.pkg-card.selected .pkg-radio-ring {
  border-color: var(--teal); background: var(--teal);
}
.pkg-radio-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--white);
  opacity: 0; transition: opacity var(--transition);
}
.pkg-card.selected .pkg-radio-dot { opacity: 1; }

.addon-row {
  display: flex; align-items: flex-start; gap: 1rem; padding: .875rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.addon-row:last-child { border-bottom: none; }
.addon-cb { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.addon-info { flex: 1; }
.addon-name { font-weight: 700; font-size: .9375rem; }
.addon-desc { font-size: .8125rem; color: var(--gray-500); margin-top: .1rem; }
.addon-price { font-weight: 800; font-size: .9375rem; color: var(--dark); white-space: nowrap; }

.order-summary {
  background: var(--white); border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 1.75rem;
}
@media (min-width: 960px) {
  .order-summary { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
}
.order-summary-title {
  font-size: 1.1rem; font-weight: 900; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1.5px solid var(--gray-100);
}
.order-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: .45rem 0; font-size: .9rem; color: var(--dark);
}
.order-line .ol-label { color: var(--gray-500); }
.order-line.order-total {
  font-size: 1.1rem; font-weight: 900;
  border-top: 2px solid var(--dark); margin-top: .75rem; padding-top: .875rem;
}
.order-line.order-free { color: var(--teal); font-weight: 700; font-size: .85rem; }

/* ── Dashboard ──────────────────────────────────────────────── */
.dash-layout { min-height: 100vh; background: var(--gray-50); display: flex; flex-direction: column; }
.dash-topbar {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-xs);
}
.dash-logo { font-size: 1.2rem; font-weight: 900; color: var(--dark); }
.dash-logo .tap  { color: var(--teal); }
.dash-logo .excl { color: var(--orange); }
.dash-user { display: flex; align-items: center; gap: .6rem; }
.dash-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: .875rem;
}
.dash-user-name { font-size: .875rem; font-weight: 700; }
.dash-body {
  display: flex; flex: 1;
}
.dash-sidebar {
  width: 220px; flex-shrink: 0; background: var(--white);
  border-right: 1px solid var(--gray-100); padding: 1.5rem 1rem;
  display: none; flex-direction: column; gap: .25rem;
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
@media (min-width: 768px) { .dash-sidebar { display: flex; } }
.dash-nav-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem .875rem; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 700; color: var(--gray-500);
  cursor: pointer; transition: all var(--transition); border: none;
  background: none; font-family: inherit; width: 100%; text-align: left;
}
.dash-nav-item:hover { background: var(--gray-50); color: var(--dark); }
.dash-nav-item.active { background: var(--dark); color: var(--white); }
.dash-nav-icon { font-size: 1.1rem; flex-shrink: 0; }
.dash-nav-divider {
  height: 1px; background: var(--gray-100); margin: .5rem 0;
}
.dash-mobile-tabs {
  display: flex; overflow-x: auto; background: var(--white);
  border-bottom: 1px solid var(--gray-100); padding: .5rem .75rem; gap: .35rem;
  scrollbar-width: none;
}
.dash-mobile-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .dash-mobile-tabs { display: none; } }
.dash-tab-btn {
  flex-shrink: 0; padding: .55rem 1rem; border-radius: var(--radius-md);
  font-size: .8125rem; font-weight: 700; color: var(--gray-500);
  cursor: pointer; transition: all var(--transition); background: none;
  border: none; font-family: inherit; white-space: nowrap;
}
.dash-tab-btn.active { background: var(--dark); color: var(--white); }

.dash-main { flex: 1; padding: 1.5rem var(--pad); overflow-y: auto; }
.dash-panel { display: none; }
.dash-panel.active { display: flex; flex-direction: column; gap: 1.5rem; }
.dash-panel-title { font-size: 1.3rem; font-weight: 900; margin-bottom: .25rem; }
.dash-panel-subtitle { font-size: .875rem; color: var(--gray-500); }

.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-card {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.25rem; text-align: center;
  box-shadow: var(--shadow-xs);
}
.stat-icon { font-size: 1.5rem; margin-bottom: .4rem; display: block; }
.stat-val { font-size: 1.9rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--gray-500); margin-top: .2rem; }
.stat-trend { font-size: .75rem; color: var(--success); font-weight: 700; margin-top: .15rem; }

.order-track { display: flex; flex-direction: column; }
.ot-step { display: flex; gap: .875rem; position: relative; }
.ot-step:not(:last-child)::after {
  content: ''; position: absolute; left: 15px; top: 36px; bottom: 0;
  width: 2px; background: var(--gray-100);
}
.ot-step.done::after { background: var(--teal); }
.ot-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-50); border: 2px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0; z-index: 1;
}
.ot-step.done .ot-dot { background: var(--teal); border-color: var(--teal); color: var(--white); }
.ot-step.current .ot-dot { background: var(--teal-glow); border-color: var(--teal); color: var(--teal); }
.ot-body { padding-bottom: 1.5rem; }
.ot-title {
  font-size: .9375rem; font-weight: 800;
  color: var(--gray-300);
}
.ot-step.done .ot-title,
.ot-step.current .ot-title { color: var(--dark); }
.ot-desc { font-size: .8125rem; color: var(--gray-400); margin-top: .15rem; }
.ot-step.done .ot-desc,
.ot-step.current .ot-desc { color: var(--gray-500); }

/* Button manager */
.btn-manager { display: flex; flex-direction: column; gap: .75rem; }
.btn-item {
  display: flex; align-items: center; gap: .875rem; padding: .875rem 1rem;
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md); cursor: grab;
  transition: box-shadow var(--transition);
}
.btn-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gray-300); }
.btn-item-icon { font-size: 1.25rem; flex-shrink: 0; }
.btn-item-label { flex: 1; font-size: .9rem; font-weight: 700; }
.btn-item-actions { display: flex; gap: .4rem; }
.btn-edit, .btn-remove {
  padding: .3rem .6rem; border-radius: var(--radius-sm); font-size: .75rem;
  font-weight: 700; cursor: pointer; border: 1px solid var(--gray-100);
  font-family: inherit; transition: all var(--transition);
}
.btn-edit   { background: var(--gray-50); color: var(--gray-700); }
.btn-remove { background: var(--error-bg); color: var(--error); }
.btn-edit:hover   { background: var(--gray-100); }
.btn-remove:hover { border-color: var(--error); }

/* Preview phone */
.preview-phone {
  max-width: 240px; margin: 0 auto;
  background: var(--dark-2); border-radius: 36px; padding: 10px;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,.06);
}
.preview-phone-screen {
  background: #f8fafc; border-radius: 26px; overflow: hidden; min-height: 430px;
}
.preview-notch {
  background: var(--dark); height: 22px;
  display: flex; align-items: center; justify-content: center;
}
.preview-notch-pill {
  width: 60px; height: 5px; background: rgba(255,255,255,.15); border-radius: 3px;
}

/* ── Landing Preview Page ───────────────────────────────────── */
.lp-body { background: #f0f4f8; min-height: 100vh; font-family: var(--font); }
.lp-header {
  background: linear-gradient(160deg, var(--dark) 0%, #1e3a5f 100%);
  color: var(--white); padding: 2rem 1.5rem; text-align: center;
}
.lp-logo-box {
  width: 76px; height: 76px; border-radius: 18px; margin: 0 auto .875rem;
  background: rgba(34,211,238,.12); border: 2px solid rgba(34,211,238,.25);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.lp-name { font-size: 1.75rem; font-weight: 900; margin-bottom: .2rem; }
.lp-type { font-size: .875rem; color: var(--teal-light); font-weight: 600; margin-bottom: .75rem; }
.lp-bio  { font-size: .9rem; color: rgba(255,255,255,.65); max-width: 380px; margin: 0 auto; }
.lp-promo {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); padding: .875rem 1.5rem; text-align: center;
  font-weight: 800; font-size: .9375rem;
}
.lp-actions { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; max-width: 520px; margin: 0 auto; }
.lp-btn {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  padding: .975rem 1.5rem; border-radius: var(--radius-lg);
  font-size: .9375rem; font-weight: 800; text-decoration: none; text-align: center;
  cursor: pointer; transition: all var(--transition); border: none; font-family: inherit; width: 100%;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-btn-dark { background: var(--dark); color: var(--white); }
.lp-btn-teal { background: var(--teal); color: var(--white); }
.lp-btn-orange { background: var(--orange); color: var(--white); }
.lp-btn-outline {
  background: var(--white); color: var(--dark);
  border: 2px solid var(--gray-100);
}
.lp-section { padding: 1.25rem 1.5rem; max-width: 520px; margin: 0 auto; }
.lp-section-title {
  font-size: .72rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: .875rem;
}
.lp-hours { display: flex; flex-direction: column; gap: .5rem; }
.lp-hour-row {
  display: flex; justify-content: space-between; font-size: .875rem;
  padding: .4rem 0; border-bottom: 1px solid var(--gray-100);
}
.lp-hour-day  { color: var(--gray-500); }
.lp-hour-time { font-weight: 700; color: var(--dark); }
.lp-services { display: flex; flex-wrap: wrap; gap: .5rem; }
.lp-service-tag {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-pill); padding: .35rem .9rem;
  font-size: .8125rem; font-weight: 700; color: var(--dark);
}
.lp-footer {
  background: var(--dark); color: rgba(255,255,255,.4);
  text-align: center; padding: 1.25rem; font-size: .8rem;
}
.lp-footer a { color: var(--teal-light); }

/* ── Success Page ───────────────────────────────────────────── */
.success-page {
  min-height: 100vh; background: linear-gradient(160deg, #f0fdf9, #e0f2fe);
  display: flex; flex-direction: column; font-family: var(--font);
}
.success-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 2rem var(--pad);
}
.success-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 3rem 2rem; max-width: 520px; width: 100%;
  text-align: center; box-shadow: var(--shadow-xl);
}
.success-check {
  width: 80px; height: 80px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 0 16px rgba(8,145,178,.1), 0 0 0 32px rgba(8,145,178,.04);
}
.success-title { font-size: 1.75rem; font-weight: 900; margin-bottom: .75rem; }
.success-subtitle { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2rem; }
.success-steps { text-align: left; margin-bottom: 2rem; }
.success-step {
  display: flex; gap: .875rem; align-items: flex-start; padding: .75rem 0;
  border-bottom: 1px solid var(--gray-50);
}
.success-step:last-child { border-bottom: none; }
.ss-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-glow); color: var(--teal); font-weight: 900; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ss-text { font-size: .9rem; line-height: 1.6; color: var(--dark); }
.ss-text strong { display: block; margin-bottom: .1rem; }

/* ── 404 Page ───────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--off-white); padding: 2rem; text-align: center;
  font-family: var(--font);
}
.err-num {
  font-size: clamp(5rem, 18vw, 10rem); font-weight: 900; color: var(--gray-100);
  line-height: 1; margin-bottom: .5rem; letter-spacing: -4px;
}
.err-num span { color: var(--teal-light); }
.err-title { font-size: 1.5rem; font-weight: 900; margin-bottom: .75rem; }
.err-sub { font-size: 1rem; color: var(--gray-500); margin-bottom: 2rem; }

/* ── Divider / misc ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-100); margin: 1.5rem 0; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-sm { gap: .75rem; }
.gap-md { gap: 1.25rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.mt-auto { margin-top: auto; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.fade-in { animation: fadeIn .45s ease both; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 479px) {
  .btn-lg { padding: .9rem 1.5rem; font-size: .9375rem; }
  .auth-box { padding: 1.75rem 1.25rem; }
  .success-box { padding: 2rem 1.25rem; }
}
