/* =========================================================
   Servio — Site vitrine commercial
   Design system + styles
   ========================================================= */

:root {
  --ink: #0f1115;
  --ink-2: #171a21;
  --ink-3: #1f2430;
  --paper: #ffffff;
  --paper-2: #f7f6f3;
  --paper-3: #efece6;
  --muted: #6b7280;
  --muted-2: #9aa1ad;
  --line: #e7e3db;
  --line-dark: rgba(255,255,255,.09);

  --accent: #f97316;
  --accent-2: #fbbf24;
  --accent-soft: #fff4e6;
  --teal: #0ea5a4;

  --good: #16a34a;
  --bad: #dc2626;

  --amber: #f59e0b;
  --violet: #7c3aed;
  --green: #22c55e;
  --gray: #9ca3af;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(15,17,21,.06);
  --shadow: 0 18px 44px rgba(15,17,21,.12);
  --shadow-lg: 0 32px 80px rgba(15,17,21,.22);

  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { line-height: 1.15; margin: 0; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #1a1206;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 26px rgba(249,115,22,.35);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(249,115,22,.45); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn-ghost:hover { background: rgba(15,17,21,.05); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { --pad-y: 9px; --pad-x: 16px; font-size: 14px; }
.btn-lg { --pad-y: 15px; --pad-x: 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { display: inline-grid; place-items: center; }
.brand-name { font-size: 21px; letter-spacing: -.03em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-size: 15px; font-weight: 600; color: #3a3f4a; position: relative; }
.main-nav a:hover { color: var(--ink); }
.main-nav a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--accent); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px auto; border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-nav a { padding: 12px 6px; font-weight: 600; border-bottom: 1px solid var(--paper-3); }
.mobile-nav a.btn { margin-top: 10px; border-bottom: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; padding: 76px 0 40px; overflow: hidden; background: var(--ink); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(249,115,22,.32), transparent 60%),
    radial-gradient(700px 500px at 5% 15%, rgba(14,165,164,.20), transparent 55%),
    linear-gradient(180deg, #0f1115, #14171f 60%, #0f1115);
}
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #ffd9a8; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.28); padding: 7px 14px; border-radius: 999px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(251,191,36,.2); }
.hero-copy h1 { font-size: clamp(34px, 5vw, 58px); margin: 18px 0 16px; letter-spacing: -.03em; }
.hero-copy h1 .hl { background: linear-gradient(120deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: #c9cdd6; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 22px; flex-wrap: wrap; }
.hero-badges { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #d7dbe2; }
.ic { width: 18px; height: 18px; fill: none; stroke: var(--accent-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Hero visual */
.hero-visual { position: relative; height: 520px; }
.phone-mock {
  position: absolute; right: 14%; top: 0; width: 250px; height: 500px;
  background: #0b0d12; border-radius: 40px; padding: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: #0b0d12; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen { height: 100%; border-radius: 30px; background: var(--paper-2); overflow: hidden; display: flex; flex-direction: column; color: var(--ink); }
.pm-topbar { display: flex; align-items: center; justify-content: space-between; padding: 26px 16px 10px; background: #fff; border-bottom: 1px solid var(--line); }
.pm-logo { font-weight: 800; font-size: 14px; }
.pm-chip { font-size: 11px; font-weight: 700; background: var(--accent-soft); color: #b45309; padding: 3px 8px; border-radius: 999px; }
.pm-tabs { display: flex; gap: 6px; padding: 10px 12px; background: #fff; }
.pm-tabs span { font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 999px; color: var(--muted); border: 1px solid var(--line); }
.pm-tabs span.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.pm-cards { padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; align-content: start; }
.pm-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pm-img { height: 56px; }
.pm-img.i1 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.pm-img.i2 { background: linear-gradient(135deg,#10b981,#0ea5a4); }
.pm-img.i3 { background: linear-gradient(135deg,#f43f5e,#f59e0b); }
.pm-img.i4 { background: linear-gradient(135deg,#8b5cf6,#0ea5a4); }
.pm-txt { padding: 7px 9px; display: flex; flex-direction: column; }
.pm-txt b { font-size: 11px; }
.pm-txt span { font-size: 11px; color: var(--accent); font-weight: 700; }
.pm-cart { display: flex; align-items: center; gap: 8px; padding: 12px; background: #fff; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.pm-total { margin-left: auto; }
.pm-send { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #1a1206; padding: 6px 12px; border-radius: 999px; }

.ticket-mock {
  position: absolute; left: 0; top: 60px; width: 216px;
  background: #fffdf7; color: #1a1206; border-radius: 10px; padding: 16px 16px 20px;
  font-family: "Courier New", monospace; font-size: 12.5px; box-shadow: var(--shadow);
  border: 1px solid #eadfc6;
}
.tk-head { text-align: center; font-weight: 800; letter-spacing: 1px; }
.tk-line { text-align: center; margin-top: 4px; }
.tk-sep { border-top: 1px dashed #b9a97e; margin: 8px 0; }
.tk-item { margin: 3px 0; }
.tk-note { margin-top: 8px; font-weight: 800; background: #fde68a; padding: 4px 6px; border-radius: 5px; display: inline-block; }

.ca-mock {
  position: absolute; right: 0; bottom: 6px; width: 200px;
  background: rgba(20,23,31,.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px 18px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 4px;
}
.ca-label { font-size: 12px; color: #b7bcc7; font-weight: 600; }
.ca-value { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.ca-sub { font-size: 11px; color: var(--green); font-weight: 600; }

.float-a { animation: floatA 6s ease-in-out infinite; }
.float-b { animation: floatB 7s ease-in-out infinite; }
@keyframes floatA { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@keyframes floatB { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(10px); } }

/* Proof bar */
.proof { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; justify-content: center; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line-dark); flex-wrap: wrap; }
.proof-label { color: #9aa1ad; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.proof-logos { display: flex; align-items: center; gap: 14px; color: #e7e9ee; font-weight: 700; font-size: 15px; flex-wrap: wrap; }
.proof-logos .sep { color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(27px, 3.4vw, 40px); }
.section-head p { color: var(--muted); font-size: 17.5px; margin-top: 14px; }

/* Problems */
.problems { background: var(--paper-2); }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); transition: .2s; }
.prob-emoji { font-size: 30px; }
.prob-card h3 { font-size: 18px; margin: 14px 0 8px; }
.prob-card p { color: var(--muted); font-size: 15px; }

/* Products */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.product-card { position: relative; border: 1px solid var(--line); border-radius: 24px; padding: 34px; background: linear-gradient(180deg, #fff, var(--paper-2)); box-shadow: var(--shadow-sm); overflow: hidden; }
.product-card::before { content:""; position:absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }
.pc-badge { display: inline-block; font-size: 13px; font-weight: 800; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.pc-badge.salle { background: var(--accent-soft); color: #b45309; }
.pc-badge.emporter { background: #e0f2f1; color: #0f766e; }
.product-card h3 { font-size: 24px; }
.pc-lead { color: var(--muted); margin: 12px 0 18px; font-size: 15.5px; }
.pc-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.pc-list li { position: relative; padding-left: 28px; font-size: 15px; }
.pc-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.pc-link { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.pc-link:hover { color: var(--accent); }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.benefit { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; transition: .2s; }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.bf-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent-soft), #ffe8cc); margin-bottom: 16px; }
.bf-ic svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 19px; margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 15px; }

/* How */
.how-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.how-tab { font-family: inherit; font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; transition: .2s; }
.how-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.how-panel { max-width: 780px; margin: 0 auto; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: s; }
.steps li { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.step-n { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: #1a1206; background: linear-gradient(135deg, var(--accent-2), var(--accent)); font-size: 18px; }
.steps h4 { font-size: 18px; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 15px; }

/* Showcase */
.showcase { background: var(--ink); color: #fff; }
.showcase .section-head p, .showcase .section-head h2 { color: #fff; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.show-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 22px; padding: 30px; }
.show-card h3 { font-size: 20px; }
.show-card > p { color: #a9afba; margin: 8px 0 22px; font-size: 15px; }
.tables-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tbl { aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; font-weight: 800; font-size: 17px; color: #0f1115; border: 1px solid rgba(255,255,255,.1); }
.tbl.free { background: #363c49; color: #cfd4dd; }
.tbl.kitchen { background: var(--amber); }
.tbl.ready { background: var(--green); }
.tbl.busy { background: var(--violet); color: #fff; }
.legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; font-size: 13.5px; color: #c7ccd5; }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.lg { width: 14px; height: 14px; border-radius: 5px; display: inline-block; }
.lg.free { background: #363c49; } .lg.kitchen { background: var(--amber); } .lg.ready { background: var(--green); } .lg.busy { background: var(--violet); }

.dash { display: grid; gap: 18px; }
.dash-big { background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(251,191,36,.08)); border: 1px solid rgba(249,115,22,.25); border-radius: 16px; padding: 20px; }
.dash-lbl { display: block; font-size: 12px; color: #a9afba; font-weight: 600; }
.dash-val { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.dash-split { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.dash-split div { background: var(--ink-3); border-radius: 12px; padding: 12px; }
.dash-split b { font-size: 18px; }
.dash-top { display: grid; gap: 12px; }
.dash-top-row { display: grid; grid-template-columns: 1fr 90px; align-items: center; gap: 12px; font-size: 13.5px; }
.dash-top-row .bar { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); width: var(--w); }

/* Features */
.features { background: var(--paper-2); }
.feat-groups { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.feat-group h3 { font-size: 17px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.opt-tag { display:inline-block; font-size:11px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color:#b45309; background:#fff4e6; border:1px solid #ffe0b8; padding:2px 8px; border-radius:999px; vertical-align:middle; margin-left:6px; }
.feat-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.feat-group li { position: relative; padding-left: 22px; font-size: 14.5px; color: #454b57; }
.feat-group li::before { content:""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }

/* Stats */
.stats { background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: #fff; padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-size: clamp(38px, 5vw, 56px); font-weight: 800; background: linear-gradient(120deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
.stat-lbl { color: #b7bcc7; font-size: 14.5px; max-width: 220px; margin: 6px auto 0; }

/* Compare */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.cmp { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; }
.cmp th, .cmp td { padding: 16px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.cmp thead th { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--paper-2); }
.cmp td:first-child { font-weight: 600; }
.cmp .hi { background: var(--accent-soft); }
.cmp thead th.hi { color: #b45309; }
.cmp .good { color: var(--good); font-weight: 700; }
.cmp .bad { color: var(--bad); font-weight: 600; }
.cmp tbody tr:last-child td { border-bottom: none; }

/* Case */
.case-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.case-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 12px 0 16px; }
.case-copy > p { color: var(--muted); font-size: 16.5px; }
.case-points { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
.case-points li { padding-left: 28px; position: relative; font-size: 15.5px; }
.case-points li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.quote { margin: 0; background: var(--paper-2); border-left: 4px solid var(--accent); border-radius: 0 14px 14px 0; padding: 20px 24px; font-size: 17px; font-style: italic; color: #3a3f4a; }
.quote cite { display: block; margin-top: 10px; font-size: 14px; font-style: normal; font-weight: 700; color: var(--muted); }
.case-visual { display: grid; gap: 16px; }
.case-stat { background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: #fff; border-radius: 18px; padding: 26px; text-align: center; }
.cs-num { display: block; font-size: 44px; font-weight: 800; background: linear-gradient(120deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-stat span:last-child { color: #b7bcc7; font-size: 14px; }

/* Pricing */
.pricing { background: var(--paper-2); }
.price-model { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; max-width: 860px; margin: 0 auto 40px; }
.pm-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.pm-tag { display: inline-block; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); background: var(--accent-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.pm-block p { font-size: 14.5px; color: var(--muted); }
.pm-block strong { color: var(--ink); }
.pm-plus { display: grid; place-items: center; font-size: 30px; font-weight: 800; color: var(--accent); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-grid-4 { grid-template-columns: repeat(4,1fr); gap: 18px; }
.price-grid-4 .price-card { padding: 26px 22px; }
.price-grid-4 .pb-amt { font-size: 26px; }
.price-grid-4 .price-card h3 { font-size: 20px; }
.price-dual { display: grid; gap: 12px; margin-bottom: 22px; }
.price-block { background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; }
.price-block.muted { background: #fff; }
.pb-label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.pb-amt { font-size: 30px; font-weight: 800; letter-spacing: -.03em; margin: 2px 0; }
.pb-amt.small { font-size: 23px; }
.pb-amt .per { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-quote { text-align: center; padding: 14px 0 10px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.pb-amt.quote { font-size: 22px; color: var(--accent); letter-spacing: -.01em; }
.price-quote .pb-note { display: block; margin-top: 6px; font-size: 13px; line-height: 1.45; }
.pb-note { font-size: 12px; color: var(--muted-2); }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow); transform: translateY(-6px); }
.pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #1a1206; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; }
.price-card h3 { font-size: 22px; }
.pc-sub { color: var(--muted); font-size: 14px; margin: 6px 0 18px; }
.price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.price .cur { font-size: 13px; color: var(--muted); font-weight: 600; width: 100%; }
.price .amt { font-size: 40px; font-weight: 800; letter-spacing: -.03em; }
.price .per { color: var(--muted); font-weight: 600; }
.price-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price-card li { font-size: 14.5px; color: #454b57; }
.price-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 22px; }
.feat-tier { display: inline-block; vertical-align: middle; margin-left: 8px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); background: var(--accent-soft); padding: 3px 8px; border-radius: 999px; }

/* FAQ */
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 16.5px; padding: 18px 30px 18px 0; position: relative; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--accent); transition: .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 15px; padding: 0 0 20px; }

/* CTA */
.cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 15% 20%, rgba(249,115,22,.22), transparent 60%), radial-gradient(600px 400px at 90% 90%, rgba(14,165,164,.18), transparent 60%); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-copy h2 { font-size: clamp(28px, 3.6vw, 42px); }
.cta-copy p { color: #c9cdd6; font-size: 17px; margin: 16px 0 22px; max-width: 460px; }
.cta-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cta-list li { display: flex; align-items: center; gap: 10px; color: #e0e3ea; font-size: 15px; }
.cta-form { background: #fff; color: var(--ink); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 11px; background: var(--paper-2); color: var(--ink); transition: .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(249,115,22,.12); }
.field input.invalid, .field select.invalid { border-color: var(--bad); }
.form-note { text-align: center; font-size: 14px; margin-top: 12px; font-weight: 600; }
.form-note.ok { color: var(--good); }
.form-note.err { color: var(--bad); }

/* Footer */
.site-footer { background: #0b0d12; color: #c7ccd5; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.brand--foot { color: #fff; }
.footer-brand p { margin-top: 14px; color: #9aa1ad; font-size: 14.5px; max-width: 320px; }
.foot-parent { margin-top: 12px !important; font-size: 13px !important; color: #6b7280 !important; }
.foot-parent strong { color: var(--accent-2); }
.footer-col h4 { font-size: 14px; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; color: #9aa1ad; font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #6b7280; flex-wrap: wrap; gap: 10px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: #9aa1ad; }
.footer-legal a:hover { color: var(--accent-2); }

/* Case study (référence Asian Nour) */
.case-study { background: var(--paper-2); }
.case-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.case-visual-block {
  display: grid;
  gap: 16px;
}
.case-visual-block img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.case-img-secondary { max-height: 420px; object-fit: cover; object-position: top; }
.case-copy-block .case-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.case-copy-block .case-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: #454b57;
}
.case-copy-block .case-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.case-origin {
  margin-top: 36px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Contact form extras */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-legal { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.form-legal a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.cta-alt { margin-top: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cta-alt span { font-size: 14px; color: #b7bcc7; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .price-grid-4 { grid-template-columns: repeat(2,1fr); max-width: 860px; margin: 0 auto; }
  .price-grid-4 .price-card.featured { transform: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 470px; margin: 0 auto; max-width: 420px; }
  .product-grid, .showcase-grid, .case-grid, .cta-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; }
  .case-grid { gap: 30px; }
  .benefit-grid, .feat-groups { grid-template-columns: repeat(2,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-model { grid-template-columns: 1fr; max-width: 460px; }
  .pm-plus { transform: rotate(90deg); font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 34px; }
}
@media (max-width: 720px) {
  .main-nav, .header-cta .btn-sm { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: flex; }
  .section { padding: 68px 0; }
  .benefit-grid, .feat-groups, .cards-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 52px; }
  .hero-visual { transform: scale(.92); }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---- Démo vidéo (tour intégré) ---- */
.demo-video .video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,.08));
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  background: #0b0d12;
}
.demo-video .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-video .video-note { text-align: center; margin-top: 16px; color: var(--muted, #8b93a3); font-size: 14px; }
.demo-video .video-note a { color: var(--accent, #e08a2b); font-weight: 700; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ HUB BYKDRCOMPANY (accueil) ============ */
.hub-hero .container { position: relative; z-index: 1; }
.hub-hero-copy { max-width: 760px; margin: 0 auto; text-align: center; padding: 26px 0 10px; }
.hub-hero-copy .eyebrow { justify-content: center; }
.hub-hero-copy .lead { margin-left: auto; margin-right: auto; }
.hub-hero-copy .hero-actions,
.hub-hero-copy .hero-badges { justify-content: center; }

.nav-home { color: var(--accent) !important; font-weight: 700; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.solution-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-card.featured { border-color: rgba(249,115,22,.45); box-shadow: 0 14px 40px rgba(249,115,22,.12); }
.solution-card h3 { font-size: 20px; margin: 14px 0 10px; }
.solution-card > p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.solution-card ul { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; font-size: 14.5px; }
.solution-card .btn { margin-top: auto; }
.sol-badge { position: absolute; top: -12px; left: 24px; background: #eef0f4; color: #5b6472; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line); }
.sol-badge.live { background: linear-gradient(120deg, var(--accent-2), var(--accent)); color: #1a1206; border: none; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step-card h3 { font-size: 18px; margin: 12px 0 8px; }
.step-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(120deg, var(--accent-2), var(--accent)); color: #1a1206; font-weight: 800; }

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

.cta .section-head h2 { color: #fff; }
.cta .section-head p { color: #c9cdd6; }
.cta .section-head .kicker { color: var(--accent-2); }
.contact-actions { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 980px) {
  .solutions-grid, .steps-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ============ THÈME BYKDRCOMPANY (hub) — noir/bleu, luxe, épuré ============ */
.hub {
  --bk-accent: #3e6df0;
  --bk-accent-2: #8fb0ff;
  --bk-ink: #060a13;
}
.hub .brand-name {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-style: italic; font-weight: 400; letter-spacing: .02em; font-size: 22px;
}
.hub .main-nav a::after { background: var(--bk-accent); }
.hub .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5b86ff, #2f5ce0);
  box-shadow: 0 10px 26px rgba(62,109,240,.35);
}
.hub .btn-primary:hover { box-shadow: 0 14px 34px rgba(62,109,240,.45); }
.hub .hero { background: var(--bk-ink); }
.hub .hero-bg {
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(62,109,240,.30), transparent 60%),
    radial-gradient(700px 500px at 5% 15%, rgba(143,176,255,.10), transparent 55%),
    linear-gradient(180deg, #060a13, #0b1120 60%, #060a13);
}
.hub .hero-copy h1 .hl {
  background: linear-gradient(120deg, var(--bk-accent-2), var(--bk-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hub .eyebrow { color: #c8d6ff; background: rgba(62,109,240,.14); border-color: rgba(62,109,240,.32); }
.hub .eyebrow .dot { background: var(--bk-accent-2); box-shadow: 0 0 0 4px rgba(143,176,255,.18); }
.hub .kicker { color: var(--bk-accent); }
.hub .sol-badge.live { background: linear-gradient(120deg, #5b86ff, #2f5ce0); color: #fff; }
.hub .solution-card.featured { border-color: rgba(62,109,240,.45); box-shadow: 0 14px 40px rgba(62,109,240,.12); }
.hub .step-num { background: linear-gradient(120deg, #5b86ff, #2f5ce0); color: #fff; }
.hub .cta { background: var(--bk-ink); }
.hub .cta::before {
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(62,109,240,.24), transparent 60%),
    radial-gradient(600px 400px at 90% 90%, rgba(143,176,255,.10), transparent 60%);
}
.hub .cta .section-head .kicker { color: var(--bk-accent-2); }
.hub .site-footer { background: var(--bk-ink); }

/* ---------- Signature ByKdrCompany.com (auto sur toutes les pages) ---------- */
.brand-signature {
  position: fixed; inset-inline: 0;
  bottom: max(.35rem, env(safe-area-inset-bottom, 0px));
  z-index: 60; display: flex; justify-content: center;
  pointer-events: none; user-select: none;
}
.brand-signature span {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: .625rem; font-style: italic; font-weight: 400;
  letter-spacing: .28em; text-indent: .28em;
  color: #9aa1ad; opacity: .5;
}
@media (min-width: 640px) {
  .brand-signature { inset-inline: auto 0; justify-content: flex-end; padding-right: max(1rem, env(safe-area-inset-right, 0px)); }
  .brand-signature span { text-indent: 0; letter-spacing: .22em; }
}
@media print { .brand-signature { display: none; } }
