/* ==========================================================================
   Nirvaga marketing site — design system (v0 "Run. Understand. Grow.")
   Exact tokens from the product design. Off-white ground, charcoal type,
   a single red-orange accent (#ec4113), black primary CTAs, rounded display
   headings, hairline borders and very soft shadows.
   ========================================================================== */

:root {
  --background: #fbfbfa;         /* off-white page */
  --card: #ffffff;              /* cards / form card */
  --foreground: #1c1c1e;        /* charcoal text */
  --muted-foreground: #6b6b70;  /* secondary text */
  --border: #e7e7e4;            /* subtle border */
  --muted: #f4f4f2;             /* faint panel tint */
  --brand: #ec4113;             /* Nirvaga accent (red-orange) */
  --brand-foreground: #ffffff;
  --brand-wash: #fdece6;        /* faint accent tint */
  --ink: #111113;              /* near-black surfaces / buttons */
  --ring: rgba(236, 65, 19, 0.35);
  --radius: 14px;
  --radius-lg: 24px;
  --maxw: 72rem;                /* 1152px */
  --display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
.hidden { display: none !important; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }

/* eyebrow */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 18px;
}
.lede { color: var(--muted-foreground); font-size: 18px; line-height: 1.6; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  background: var(--ink); color: #fff; cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { border-color: var(--foreground); background: var(--card); filter: none; }
.btn-brand { background: var(--brand); color: var(--brand-foreground); }
.btn-brand:hover { filter: brightness(1.05); box-shadow: 0 6px 16px -6px rgba(236,65,19,.5); }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

.link-arrow { font-weight: 600; color: var(--foreground); display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; }
.link-arrow .arw { transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--brand); }
.link-arrow:hover .arw { transform: translateX(3px); }

/* ---- header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,251,250,.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-family: var(--display); font-weight: 300; font-size: 1.25rem; letter-spacing: .01em; color: var(--foreground); display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.brand .mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(140deg,#F2A72C,#DA3222); display: grid; place-items: center; }
.brand .mark svg { width: 22px; height: 22px; }
.brand .word { position: relative; }
.foot-top .about .brand { font-size: 1.35rem; }
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-center a { font-size: 14.5px; font-weight: 500; color: var(--muted-foreground); padding: 8px 14px; border-radius: 999px; transition: color .18s var(--ease), background .18s var(--ease); }
.nav-center a:hover { color: var(--foreground); background: rgba(17,17,19,.05); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-right .login { font-size: 14.5px; font-weight: 500; color: var(--foreground); }
.nav-right .login:hover { color: var(--brand); }
.menu-btn { display: none; }

.mobile-nav { display: none; }
@media (max-width: 900px) {
  .nav-center, .nav-right .login { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); cursor: pointer; color: var(--foreground); }
  .mobile-nav { display: block; position: fixed; inset: 66px 0 auto 0; z-index: 55; background: var(--background); border-bottom: 1px solid var(--border); padding: 14px 24px 24px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .22s var(--ease), opacity .22s var(--ease); }
  .mobile-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-nav a { display: block; padding: 13px 6px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--border); }
  .mobile-nav .btn { margin-top: 18px; }
}

/* ---- hero --------------------------------------------------------------- */
.hero { padding: 92px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(38px, 6.2vw, 66px); font-weight: 600; }
.hero h1 .accent { color: var(--brand); }
.hero .sub { margin: 26px auto 0; max-width: 560px; font-size: clamp(17px,2.2vw,20px); color: var(--muted-foreground); }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero .note { margin-top: 20px; font-size: 13.5px; color: var(--muted-foreground); }

/* ---- dashboard mock ----------------------------------------------------- */
.mock { margin: 60px auto 0; max-width: 980px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 40px 90px -50px rgba(0,0,0,.30); overflow: hidden; text-align: left; }
.mock-bar { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--border); }
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: #e2e2de; display: block; }
.mock-bar .ttl { font-size: 12.5px; color: var(--muted-foreground); }
.mock-body { display: grid; grid-template-columns: 190px 1fr; }
.mock-side { border-right: 1px solid var(--border); padding: 16px 12px; }
.mock-side .s-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; color: var(--muted-foreground); }
.mock-side .s-item.active { background: var(--muted); color: var(--foreground); font-weight: 600; }
.mock-side .s-item i { width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: .5; }
.mock-main { padding: 22px; }
.mock-main .m-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-main .m-head .mt { font-family: var(--display); font-weight: 600; font-size: 16px; }
.mock-main .m-head .ms { font-size: 12px; color: var(--muted-foreground); margin-top: 2px; }
.mock-main .m-head .chip { font-size: 12px; color: var(--muted-foreground); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.kpi { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--card); }
.kpi.hl { background: var(--brand-wash); border-color: #f6d3c7; }
.kpi .l { font-size: 11px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .06em; }
.kpi .v { font-family: var(--display); font-weight: 600; font-size: 22px; margin-top: 6px; }
.kpi .d { font-size: 12px; margin-top: 5px; color: var(--muted-foreground); }
.kpi .d.up { color: #1f9d57; }
.mock-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; margin-top: 12px; }
.mock-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.mock-card .ct { font-size: 13px; color: var(--foreground); font-weight: 600; }
.mock-card .cs { font-size: 11.5px; color: var(--muted-foreground); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin-top: 16px; }
.bars .b { flex: 1; background: #ececE8; border-radius: 5px 5px 0 0; }
.bars .b.on { background: var(--brand); }
.mock-side-cards { display: grid; gap: 12px; }
.mini { border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.mini .l { font-size: 11px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .06em; }
.mini .v { font-family: var(--display); font-weight: 600; font-size: 20px; margin-top: 4px; }
.mini .d { font-size: 11.5px; color: var(--muted-foreground); margin-top: 3px; }
@media (max-width: 720px) { .mock-body { grid-template-columns: 1fr; } .mock-side { display: none; } .kpis { grid-template-columns: repeat(2,1fr); } .mock-grid { grid-template-columns: 1fr; } }

/* ---- section head ------------------------------------------------------- */
.head { max-width: 640px; }
.head.center { margin: 0 auto; text-align: center; }
.head h2 { font-size: clamp(28px,4vw,42px); }
.head h2 .muted { color: var(--muted-foreground); }
.head p { margin-top: 16px; color: var(--muted-foreground); font-size: 17px; }

/* ---- 3-column bordered board (Run/Understand/Grow) ---------------------- */
.board { margin-top: 44px; border: 1px solid var(--border); border-radius: var(--radius-lg); display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; background: var(--card); }
.board .col { padding: 30px; border-right: 1px solid var(--border); }
.board .col:last-child { border-right: 0; }
.board .col .n { font-family: var(--display); color: var(--brand); font-size: 13px; font-weight: 600; }
.board .col h3 { display: inline-block; margin-left: 8px; font-size: 22px; vertical-align: baseline; }
.board .col .sub { color: var(--muted-foreground); font-size: 14px; margin-top: 8px; }
.board .col ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.board .col li { display: flex; gap: 10px; font-size: 14.5px; color: var(--foreground); align-items: center; }
.board .col li::before { content: ""; width: 5px; height: 5px; border-radius: 1px; background: var(--brand); flex: none; }
@media (max-width: 860px) { .board { grid-template-columns: 1fr; } .board .col { border-right: 0; border-bottom: 1px solid var(--border); } .board .col:last-child { border-bottom: 0; } }

/* ---- solutions cards ---------------------------------------------------- */
.sol-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.sol { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; background: var(--card); display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.sol:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(0,0,0,.25); }
.sol .top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sol h3 { font-size: 20px; }
.sol .badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.badge.now { background: var(--brand-wash); color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.badge.now::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.badge.soon { background: var(--muted); color: var(--muted-foreground); border: 1px solid var(--border); }
.sol p { color: var(--muted-foreground); font-size: 14px; margin: 12px 0 20px; flex: 1; }
@media (max-width: 900px) { .sol-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .sol-grid { grid-template-columns: 1fr; } }

/* ---- numbered insight cards --------------------------------------------- */
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.insight-card { display: flex; gap: 18px; align-items: center; border: 1px solid var(--border); border-radius: 999px; padding: 22px 28px; background: var(--card); }
.insight-card .n { font-family: var(--display); color: var(--brand); font-size: 13px; font-weight: 600; flex: none; }
.insight-card p { font-size: 15.5px; font-weight: 500; color: var(--foreground); }
.foot-note { color: var(--muted-foreground); font-size: 13.5px; margin-top: 20px; }
@media (max-width: 760px) { .insight-grid { grid-template-columns: 1fr; } .insight-card { border-radius: 18px; } }

/* ---- dark AI panel ------------------------------------------------------ */
.dark-panel { background: var(--ink); color: #f5f4f2; border-radius: 28px; padding: 64px 40px; text-align: center; }
.dark-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: #d9d7d2; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 7px 14px; }
.dark-badge .spark { color: var(--brand); }
.dark-panel h2 { color: #fff; font-size: clamp(26px,3.8vw,40px); max-width: 640px; margin: 22px auto 0; }
.ai-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 780px; margin: 44px auto 0; }
.ai-card { border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 22px; text-align: left; background: rgba(255,255,255,.02); }
.ai-card .k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); display: flex; align-items: center; gap: 7px; }
.ai-card p { color: #c9c7c2; font-size: 14px; margin-top: 12px; line-height: 1.6; }
.flow-pills { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.flow-pills .pill { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 18px; font-size: 13.5px; color: #e7e5e1; }
.flow-pills .arw { color: #6a6862; }
@media (max-width: 720px) { .dark-panel { padding: 48px 22px; } .ai-cards { grid-template-columns: 1fr; } }

/* ---- split / branch ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { margin-top: 26px; display: grid; gap: 12px; }
.feature-list li { list-style: none; display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--foreground); }
.feature-list li::before { content: ""; width: 5px; height: 5px; border-radius: 1px; background: var(--brand); flex: none; }
.branch-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; box-shadow: 0 30px 70px -50px rgba(0,0,0,.28); }
.branch-card .ct { font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.branch-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.branch-row .lab { font-size: 13.5px; color: var(--muted-foreground); width: 76px; flex: none; }
.branch-row .track { flex: 1; height: 10px; background: var(--muted); border-radius: 999px; overflow: hidden; }
.branch-row .track i { display: block; height: 100%; background: var(--brand); border-radius: 999px; }
.branch-row .amt { font-family: var(--display); font-weight: 600; font-size: 15px; width: 56px; text-align: right; flex: none; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }

/* ---- pricing ------------------------------------------------------------ */
.price-toggle { display: inline-flex; background: var(--muted); border-radius: 999px; padding: 4px; gap: 4px; margin: 26px auto 0; }
.price-toggle button { border: 0; background: transparent; cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--muted-foreground); padding: 9px 20px; border-radius: 999px; transition: background .2s var(--ease), color .2s var(--ease); }
.price-toggle button.active { background: var(--card); color: var(--foreground); box-shadow: 0 1px 2px rgba(0,0,0,.06); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.price-card.pop { border-color: var(--brand); box-shadow: 0 30px 70px -48px rgba(236,65,19,.4); }
.price-card .badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; }
.price-card h3 { font-size: 20px; }
.price-card .amount { font-family: var(--display); font-weight: 600; font-size: 40px; margin-top: 14px; }
.price-card .amount small { font-size: 15px; color: var(--muted-foreground); font-weight: 500; }
.price-card .tagline { color: var(--muted-foreground); font-size: 14.5px; margin-top: 6px; }
.price-card .cta { margin-top: 22px; }
.price-card ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--foreground); }
.price-card li::before { content: "✓"; color: var(--brand); font-weight: 700; }
.price-card li.head-li { color: var(--muted-foreground); font-weight: 600; }
.price-card li.head-li::before { content: ""; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---- steps (record/understand/recommend/grow) --------------------------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.step { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: var(--card); }
.step .n { font-family: var(--display); color: var(--brand); font-size: 13px; font-weight: 600; }
.step h3 { font-size: 20px; margin-top: 8px; }
.step p { color: var(--muted-foreground); font-size: 14px; margin-top: 6px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---- vision list -------------------------------------------------------- */
.vision-list { margin-top: 40px; border-top: 1px solid var(--border); }
.vision-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; border-bottom: 1px solid var(--border); transition: padding-left .2s var(--ease); }
.vision-row:hover { padding-left: 12px; }
.vision-row .l { display: flex; align-items: baseline; gap: 14px; }
.vision-row .l h3 { font-size: clamp(24px,3.4vw,34px); }
.vision-row .l .tag { font-size: 11px; font-weight: 600; color: var(--muted-foreground); border: 1px solid var(--border); border-radius: 999px; padding: 3px 9px; }
.vision-row .d { color: var(--muted-foreground); font-size: 15px; }
.vision-row .arw { color: var(--foreground); }
@media (max-width: 700px) { .vision-row { flex-direction: column; align-items: flex-start; gap: 8px; } .vision-row .d { font-size: 14px; } }

/* ---- testimonials empty ------------------------------------------------- */
.testi { text-align: center; border: 1px dashed var(--border); border-radius: var(--radius-lg); padding: 60px 24px; background: var(--card); margin-top: 40px; }
.testi h3 { font-size: 22px; }
.testi p { color: var(--muted-foreground); font-size: 15.5px; margin: 12px auto 0; max-width: 460px; }

/* ---- final CTA ---------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(28px,4.2vw,46px); max-width: 620px; margin: 0 auto; }
.cta-band .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---- footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); padding: 60px 0 40px; margin-top: 24px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; }
.foot-top .about .brand { font-size: 24px; }
.foot-top .about p { color: var(--muted-foreground); font-size: 14px; margin-top: 14px; max-width: 240px; }
.foot-top .col h5 { font-family: var(--sans); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-foreground); margin: 0 0 14px; }
.foot-top .col a { display: block; color: var(--muted-foreground); font-size: 14.5px; padding: 5px 0; }
.foot-top .col a:hover { color: var(--foreground); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted-foreground); font-size: 13px; }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-top .about { grid-column: 1 / -1; } .foot-bottom { flex-direction: column; gap: 10px; } }

/* ---- shared form fields (demo, etc.) ------------------------------------ */
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 30px 70px -50px rgba(0,0,0,.28); }
.form-card label { display: block; margin-bottom: 8px; font-size: 13.5px; font-weight: 600; }
.form-card .frow + .frow { margin-top: 18px; }
.field { height: 50px; width: 100%; border: 1px solid var(--border); border-radius: var(--radius); background: var(--background); padding: 0 1rem; font-size: 15px; font-family: var(--sans); color: var(--foreground); outline: none; transition: border-color .2s, box-shadow .2s; }
.field::placeholder { color: var(--muted-foreground); }
.field:focus { border-color: rgba(236,65,19,.5); box-shadow: 0 0 0 4px rgba(236,65,19,.1); }
select.field { appearance: none; -webkit-appearance: none; cursor: pointer; }
select.field.placeholder { color: var(--muted-foreground); }

/* ---- feature cards (salon, etc.) --------------------------------------- */
.fcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.fcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.fcard:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(0,0,0,.22); }
.fcard .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-wash); font-size: 22px; margin-bottom: 16px; }
.fcard h3 { font-size: 20px; margin-bottom: 8px; }
.fcard p { color: var(--muted-foreground); font-size: 14.5px; }
@media (max-width: 900px) { .fcards { grid-template-columns: 1fr; } }

/* ---- coming soon -------------------------------------------------------- */
.coming { text-align: center; padding: 120px 0; }
.coming .badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--muted-foreground); border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px; }
.coming h1 { font-size: clamp(34px,5vw,56px); margin-top: 22px; }
.coming p { color: var(--muted-foreground); font-size: 18px; margin: 18px auto 30px; max-width: 460px; }
.coming .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- sample screens (solution pages) ------------------------------------ */
.screen { border: 1px solid var(--border); border-radius: 14px; background: var(--card); box-shadow: 0 30px 70px -50px rgba(0,0,0,.3); overflow: hidden; }
.screen .bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.screen .bar i { width: 10px; height: 10px; border-radius: 50%; background: #e2e2de; display: block; }
.screen .bar .t { font-size: 12px; color: var(--muted-foreground); margin-left: 8px; }
.screen .body { padding: 18px; }

/* POS / billing */
.pos { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.pos .catrow { display: flex; justify-content: space-between; align-items: center; padding: 11px 12px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; font-size: 13.5px; }
.pos .catrow .q { color: var(--muted-foreground); font-size: 12px; }
.pos .catrow .add { width: 26px; height: 26px; border-radius: 8px; background: var(--brand-wash); color: var(--brand); display: grid; place-items: center; font-weight: 700; }
.pos .cart { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--muted); }
.pos .cart .ct { font-size: 12px; color: var(--muted-foreground); margin-bottom: 8px; }
.pos .cart .line { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; }
.pos .cart .total { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 600; font-size: 18px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 10px; }
.pos .cart .pay { display: block; text-align: center; margin-top: 12px; background: var(--brand); color: #fff; border-radius: 10px; padding: 10px; font-size: 13px; font-weight: 600; }

/* appointments day column */
.cal { display: grid; gap: 8px; }
.cal .slot { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: start; }
.cal .slot .tm { font-size: 12px; color: var(--faint); padding-top: 4px; }
.cal .appt { border-radius: 8px; padding: 9px 12px; font-size: 12.5px; border: 1px solid var(--border); }
.cal .appt.a { background: var(--brand-wash); border-color: #f6d3c7; }
.cal .appt .who { font-weight: 600; }
.cal .appt .svc { color: var(--muted-foreground); font-size: 11.5px; }
.cal .appt.free { color: var(--faint); background: transparent; border-style: dashed; }

/* invoice */
.inv { max-width: 440px; margin: 0 auto; border: 1px solid var(--border); border-radius: 10px; padding: 22px; font-size: 12.5px; }
.inv .top { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.inv .top h4 { font-size: 16px; }
.inv .top .muted { color: var(--muted-foreground); font-size: 11.5px; margin-top: 3px; }
.inv table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.inv td, .inv th { padding: 7px 0; text-align: left; }
.inv th { color: var(--muted-foreground); font-size: 11px; border-bottom: 1px solid var(--border); }
.inv td { border-bottom: 1px solid var(--border); }
.inv td.r, .inv th.r { text-align: right; }
.inv .grand { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 600; font-size: 16px; margin-top: 12px; }

/* table */
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th { text-align: left; color: var(--muted-foreground); font-weight: 600; font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.tbl td { padding: 11px 10px; border-bottom: 1px solid var(--border); }
.tbl .chip { font-size: 11px; padding: 3px 9px; border-radius: 999px; background: var(--brand-wash); color: var(--brand); font-weight: 600; }
.tbl .chip.grey { background: var(--muted); color: var(--muted-foreground); }

/* tour row */
.tour { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.tour.rev .tour-visual { order: -1; }
.tour + .tour { margin-top: 72px; }
.tour .tag { font-family: var(--display); color: var(--brand); font-size: 13px; font-weight: 600; }
.tour h3 { font-size: clamp(24px,3vw,32px); margin: 10px 0 12px; }
.tour p { color: var(--muted-foreground); font-size: 15.5px; }
.tour ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.tour li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; }
.tour li::before { content: ""; width: 5px; height: 5px; border-radius: 1px; background: var(--brand); flex: none; }
@media (max-width: 900px) { .tour { grid-template-columns: 1fr; gap: 26px; } .tour.rev .tour-visual { order: 0; } .pos { grid-template-columns: 1fr; } }
