*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAF9;
  --bg-card: #FFFFFF;
  --bg-tint: #F5F5F3;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-soft: #7A7A7A;
  --text-faint: #A8A8A6;
  --accent: #FF6B57;
  --accent-soft: #FFE8E3;
  --accent-deep: #E8553F;
  --line: #ECECE8;
  --line-soft: #F2F2EE;

  --sh-purple: #C9B6E8;
  --sh-orange: #FFC9A0;
  --sh-yellow: #FFE08A;
  --sh-blue: #B6D2F2;
  --sh-pink: #FFC0CB;
  --sh-mint: #BFE6CC;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --shadow-soft: 0 1px 2px rgba(20, 20, 20, 0.04), 0 4px 12px rgba(20, 20, 20, 0.04);
  --shadow-mid: 0 4px 12px rgba(20, 20, 20, 0.05), 0 18px 40px rgba(20, 20, 20, 0.06);
  --shadow-deep: 0 8px 24px rgba(20, 20, 20, 0.06), 0 30px 80px rgba(20, 20, 20, 0.10);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   SCATTERED FLOATING SHAPES
   ============================================ */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
.shape.sq { border-radius: 4px; }
.shape.ci { border-radius: 50%; }
.shape.plus {
  background: transparent !important;
  position: absolute;
}
.shape.plus::before, .shape.plus::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
}
.shape.plus::before { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.shape.plus::after  { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }

@keyframes drift1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(8px,-14px) rotate(8deg); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-10px,-10px) rotate(-10deg); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(6px,12px) rotate(15deg); } }
@keyframes drift4 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-12px,8px) rotate(-6deg); } }

/* ============================================
   NAVIGATION (Glassmorphism)
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(236, 236, 232, 0.6);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text);
  font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); font-weight: 500; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.875rem; font-weight: 400;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500;
  font-size: 0.875rem; padding: 0.7rem 1.5rem;
  border-radius: 5px; text-decoration: none;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  border-color: #333;
  cursor: pointer; letter-spacing: -0.005em;
  transition: all 0.3s ease;
}
.btn:hover { background: #333; color: #fff; transform: translateY(0); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #FFFFFF !important; }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 8px 24px rgba(255, 107, 87, 0.28); }
.btn-outline {
  background: rgba(255, 255, 255, 0.6); color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--bg); border-color: var(--text-soft); color: var(--text); }
.btn-lg { font-size: 0.95rem; padding: 0.95rem 1.85rem; border-radius: 10px; font-weight: 500; }
.btn-ghost-play {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0.6rem 1.4rem 0.6rem 0.6rem;
  font-size: 0.92rem; color: var(--text); font-weight: 400;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.btn-ghost-play:hover { transform: translateY(-1px); box-shadow: var(--shadow-mid); }
.btn-ghost-play .play-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 9rem 5% 5rem;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}
.hero-content {
  max-width: 920px; margin: 0 auto;
  position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -0.035em; color: var(--text);
  margin: 0 0 1.6rem;
}
.hero h1 .hl {
  display: inline-block;
  background: #1A1A1A; color: #FFFFFF;
  padding: 0.02em 0.22em 0.06em;
  border-radius: 4px;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-mid);
  max-width: 640px; margin: 0 auto 2.4rem;
  font-weight: 400; line-height: 1.65;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; align-items: center;
  margin-bottom: 4.5rem;
}

/* Hero Dashboard Mockup */
.dashboard-mock {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(236, 236, 232, 0.8);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  transform: perspective(1400px) rotateX(2deg);
  transform-origin: center top;
}
.dash-bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  background: rgba(250, 250, 249, 0.9);
  border-bottom: 1px solid var(--line);
}
.dash-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar .dot.r { background: #FF5F57; }
.dash-bar .dot.y { background: #FEBC2E; }
.dash-bar .dot.g { background: #28C840; }
.dash-bar .url {
  flex: 1; text-align: center; font-size: 0.75rem;
  color: var(--text-faint); font-weight: 400;
}
.dash-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.dash-side {
  background: rgba(250, 250, 249, 0.5);
  border-right: 1px solid var(--line);
  padding: 1.4rem 1rem;
}
.ds-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  margin-bottom: 1.6rem; padding-left: 0.4rem;
}
.ds-logo svg { flex-shrink: 0; }
.ds-section {
  font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 0 0.4rem; margin: 0.85rem 0 0.5rem;
}
.ds-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.78rem; color: var(--text-mid);
  padding: 0.45rem 0.6rem; border-radius: 6px;
  margin-bottom: 0.1rem; cursor: default;
  transition: background 0.18s;
}
.ds-item:hover { background: rgba(0,0,0,0.03); }
.ds-item .ds-ico {
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 4px; background: var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
}
.ds-item.active {
  background: var(--accent-soft); color: var(--accent-deep); font-weight: 500;
}
.ds-item.active .ds-ico { background: var(--accent); color: #FFF; }

.dash-main { padding: 1.5rem 1.6rem; }
.dm-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.3rem;
}
.dm-title { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.dm-sub { font-size: 0.7rem; color: var(--text-faint); margin-top: 0.15rem; }
.dm-pill {
  font-size: 0.7rem; padding: 0.35rem 0.75rem;
  background: var(--bg-tint); border-radius: 100px;
  color: var(--text-mid); font-weight: 400;
}
.kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem; margin-bottom: 1.3rem;
}
.kpi {
  background: #FFFFFF; border: 1px solid var(--line);
  padding: 0.85rem 0.95rem; border-radius: 10px;
}
.kpi-l { font-size: 0.65rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.kpi-v { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-top: 0.3rem; letter-spacing: -0.02em; }
.kpi-c { font-size: 0.66rem; margin-top: 0.25rem; font-weight: 500; }
.kpi-c.up { color: #1F9D55; }
.kpi-c.dn { color: var(--accent); }

.dash-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.75rem;
}
.dash-card {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 10px; padding: 1rem 1.1rem;
}
.dc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; }
.dc-title { font-size: 0.78rem; font-weight: 500; color: var(--text); }
.dc-tag { font-size: 0.62rem; color: var(--text-faint); }

/* mini bar chart */
.bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; padding-top: 8px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--line); position: relative; }
.bar.lit { background: var(--accent); }
.bar.lit-soft { background: rgba(255, 107, 87, 0.45); }
.bar-lbl {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 0.58rem; color: var(--text-faint);
}

/* mini list */
.tlist { display: flex; flex-direction: column; gap: 0.55rem; }
.trow { display: flex; align-items: center; gap: 0.7rem; font-size: 0.74rem; }
.trow .td { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.trow .tn { flex: 1; color: var(--text); font-weight: 400; }
.trow .tv { color: var(--text-soft); font-size: 0.7rem; }
.td.gn { background: #28C840; }
.td.yn { background: #FEBC2E; }
.td.rn { background: var(--accent); }
.td.bn { background: #4A90E2; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  position: relative;
  border-top: 1px solid rgba(236,236,232,0.7);
  border-bottom: 1px solid rgba(236,236,232,0.7);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  padding: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 -1px 0 rgba(255,255,255,0.4) inset;
}
.trust-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.875rem; color: var(--text-soft); font-weight: 400;
  flex-shrink: 0; padding: 1.45rem 2.2rem;
  border-right: 1px solid rgba(236,236,232,0.6);
  letter-spacing: -0.005em;
  transition: color 0.2s ease, background 0.2s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--text); background: rgba(255,255,255,0.45); }
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
}

/* ============================================
   GENERAL SECTIONS
   ============================================ */
section { padding: 7rem 5%; position: relative; }
.lbl {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}
.stitle {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 1.1rem;
}
.stitle .hl {
  display: inline; background: none; color: inherit;
  padding: 0; border-radius: 0; font-weight: 400;
}
.ssub {
  font-size: 1.02rem; color: var(--text-mid);
  max-width: 580px; font-weight: 400; line-height: 1.7;
}
.sh { margin-bottom: 3.5rem; max-width: 760px; }

/* ============================================
   INTRO / PROBLEM STATEMENT
   ============================================ */
.intro {
  background: var(--bg-soft);
  position: relative; overflow: hidden;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.intro-visual {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(236, 236, 232, 0.8);
  border-radius: 16px; padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-mid);
}
.fl-lbl {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 1.2rem;
}
.fr { display: flex; align-items: center; gap: 0; margin-bottom: 0.55rem; }
.fb {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 0.5rem 0.85rem; font-size: 0.78rem; font-weight: 400;
  color: var(--text); flex-shrink: 0; white-space: nowrap;
}
.fb.live {
  border-color: rgba(255,107,87,0.35);
  background: var(--accent-soft); color: var(--accent-deep);
}
.fa-line { flex: 1; height: 1px; background: var(--line); position: relative; min-width: 16px; }
.fa-line::after { content:''; position:absolute; right:-1px; top:-3px; border:3px solid transparent; border-left-color:var(--line); }
.istat {
  margin-top: 1.5rem; padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; gap: 2rem;
}
.istat-item .num {
  font-size: 1.7rem; font-weight: 500; color: var(--accent);
  display: block; line-height: 1; letter-spacing: -0.03em;
}
.istat-item .lx {
  font-size: 0.7rem; color: var(--text-faint);
  margin-top: 0.4rem; font-weight: 400;
}

/* ============================================
   FEATURES / CORE MODULES
   ============================================ */
.features { background: var(--bg); }
.feat-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem;
}
.mgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.mc {
  background: rgba(255, 255, 255, 0.55);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.18s ease;
  position: relative;
}
.mc:hover { background: var(--bg-soft); }
.mc:nth-child(4n) { border-right: none; }
.mc:nth-last-child(-n+4) { border-bottom: none; }
.mi {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--accent-soft);
  margin-bottom: 1.15rem;
  color: var(--accent);
}
.mn { font-weight: 500; font-size: 0.98rem; margin-bottom: 0.5rem; color: var(--text); letter-spacing: -0.01em; }
.md { font-size: 0.83rem; color: var(--text-soft); line-height: 1.6; font-weight: 400; }

.addons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.25rem;
}
.addon {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 1.5rem 1.85rem;
  display: flex; align-items: center; gap: 1.4rem;
}
.aico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-tint);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text);
}
.abadge {
  display: inline-block; font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  border: 1px solid rgba(255,107,87,0.2);
  padding: 0.22rem 0.6rem; border-radius: 4px; margin-bottom: 0.5rem;
}
.feat-cta {
  margin-top: 1.25rem; padding: 1.5rem 2rem;
  background: rgba(245, 245, 243, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.feat-cta p { color: var(--text-mid); font-size: 0.93rem; font-weight: 400; }

/* ============================================
   WHY FLOOID ERP
   ============================================ */
.why { background: var(--bg-soft); position: relative; overflow: hidden; }
.why-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  position: relative; z-index: 1;
}
.why-tabs {
  display: flex; flex-direction: column; gap: 0.45rem;
  position: sticky; top: 100px;
}
.why-tab {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  background: transparent;
}
.why-tab:hover {
  background: rgba(255,255,255,0.6);
  border-color: rgba(236,236,232,0.8);
}
.why-tab.active {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,107,87,0.2);
  box-shadow: var(--shadow-soft);
}
.why-tab-num {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s ease;
}
.why-tab.active .why-tab-num { color: var(--accent); }
.why-tab-label {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-soft); line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.why-tab.active .why-tab-label { color: var(--text); }
.why-tab-bar {
  height: 2px; width: 0; border-radius: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-tab.active .why-tab-bar { width: 32px; }

.why-panel-wrap {
  position: relative; min-height: 400px;
}
.why-panel {
  display: none;
  animation: panelIn 0.32s ease forwards;
}
.why-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.why-panel-inner {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(236,236,232,0.9);
  border-radius: 20px;
  padding: 3rem 3rem 2.5rem;
  box-shadow: var(--shadow-mid);
  position: relative; overflow: hidden;
}
.why-panel-num {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.why-panel-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--text);
  margin-bottom: 1.2rem;
}
.why-panel-desc {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.72; font-weight: 400;
  max-width: 520px; margin-bottom: 2rem;
}
/* Doodle illustration area */
.why-doodle {
  position: relative; height: 160px;
  margin-top: 1rem;
}
.why-doodle svg {
  width: 100%; height: 100%;
  overflow: visible;
}
/* Subtle accent blob behind panel */
.why-panel-inner::before {
  content:''; position:absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(255,107,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .why-layout { grid-template-columns: 1fr; gap: 2rem; }
  .why-tabs { flex-direction: row; flex-wrap: wrap; position: static; gap: 0.5rem; }
  .why-tab { flex: 1; min-width: 140px; }
  .why-panel-inner { padding: 2rem 1.75rem; }
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { background: var(--bg); position: relative; overflow: hidden; }
.ind-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.ind-pills {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  position: relative; z-index: 1;
}
.pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.7rem 1.55rem;
  font-size: 0.88rem; font-weight: 400;
  color: var(--text); letter-spacing: -0.005em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: default;
}
.pill:hover {
  background: var(--text); border-color: var(--text);
  color: #FFF; transform: translateY(-2px);
}

/* ============================================
   PRICING — 3-card layout
   ============================================ */
.pricing { background: var(--bg-soft); position: relative; overflow: hidden; }
.pricing .sh { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.pricing .sh .ssub { margin: 0 auto; }

/* Billing toggle */
.p-toggle {
  display: inline-flex; align-items: center;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.3rem;
  gap: 0;
  margin: 0 auto 3rem;
}
.p-toggle-btn {
  font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  border: none; background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; align-items: center; gap: 0.5rem;
}
.p-toggle-btn.active {
  background: var(--text);
  color: #FFF;
}
.p-save-badge {
  font-size: 0.62rem; font-weight: 600;
  background: #22C55E; color: #FFF;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* Cards wrapper */
.p-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

/* Individual card */
.p-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 2rem 2rem;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.p-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-3px);
}

/* Featured middle card */
.p-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-mid);
  padding-top: 1.4rem;
}
.p-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-deep);
  transform: translateY(-4px);
}

/* Recommended badge */
.p-recommended {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600;
  color: var(--accent);
  background: rgba(255,107,87,0.08);
  border: 1px solid rgba(255,107,87,0.2);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.2rem;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  letter-spacing: 0.04em;
}

/* Plan name */
.p-plan-name {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

/* Price */
.p-price {
  display: flex; align-items: flex-end; gap: 0.15rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.p-price-sym { font-size: 1.4rem; font-weight: 500; color: var(--text); align-self: flex-start; margin-top: 0.35rem; }
.p-price-num { font-size: 3.2rem; font-weight: 600; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.p-price-per { font-size: 0.85rem; color: var(--text-soft); font-weight: 400; padding-bottom: 0.4rem; }
.p-price-custom { font-size: 1.6rem; font-weight: 600; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; padding-bottom: 0.1rem; }

/* Tagline */
.p-tagline {
  font-size: 0.85rem; color: var(--text-soft);
  line-height: 1.55; font-weight: 400;
  margin-bottom: 1.5rem;
  min-height: 2.5em;
}

/* CTA button */
.p-cta {
  display: block; width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: all 0.2s ease;
  border: 1.5px solid var(--line);
  background: rgba(236,236,232,0.25);
  color: var(--text);
}
.p-cta:hover { border-color: var(--text-soft); background: var(--bg-tint); }
.p-cta.p-cta-accent {
  background: var(--accent); border-color: var(--accent); color: #FFF;
}
.p-cta.p-cta-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 6px 20px rgba(255,107,87,0.3); }

/* Divider */
.p-divider {
  height: 1px; background: var(--line);
  margin-bottom: 1.5rem;
}

/* Feature list */
.p-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.p-features li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--text-mid);
  font-weight: 400; line-height: 1.45;
}
.p-feat-icon {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.05rem;
  color: var(--accent);
}
.p-feat-icon.muted { color: var(--text-faint); }

/* Max users tag */
.p-users-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* Billing toggle wrapper centring */
.p-toggle-wrap { display: flex; justify-content: center; }

@media (max-width: 860px) {
  .p-cards { grid-template-columns: 1fr; max-width: 420px; }
  .p-card.featured { order: -1; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq { background: var(--bg); position: relative; overflow: hidden; }
.faq-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.fgrid {
  max-width: 880px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.fi {
  border-bottom: 1px solid var(--line);
}
.fi summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.fi summary::-webkit-details-marker { display: none; }
.fi summary:hover { color: var(--accent); }
.fq {
  font-weight: 400; font-size: 0.98rem;
  color: var(--text); line-height: 1.4;
  letter-spacing: -0.005em;
  flex: 1; padding-right: 2rem;
}
.fa-icn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-tint);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease;
  color: var(--text-mid);
}
.fi[open] .fa-icn { background: var(--accent); color: #FFF; transform: rotate(45deg); }
.fa-txt {
  font-size: 0.93rem; color: var(--text-soft);
  line-height: 1.7; padding: 0 0.5rem 1.5rem 0.5rem;
  max-width: 700px;
  font-weight: 400;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.cta-section {
  background: var(--bg-soft);
  position: relative; overflow: hidden;
  padding: 7rem 5% 5rem;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  text-align: center;
  max-width: 920px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1.12; color: var(--text);
}
.cta-section h2 .hl {
  background: #1A1A1A; color: #FFF;
  padding: 0.02em 0.18em 0.06em; border-radius: 4px; font-weight: 400;
}
.cta-sub {
  color: var(--text-mid); font-size: 32px;
  max-width: 760px; margin: 1rem auto 0;
  line-height: 1.5; font-weight: 400;
  letter-spacing: -0.02em;
}
.cta-acts {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
/* Bottom dashboard mini-mock */
.cta-dash {
  margin: 3rem auto 0;
  max-width: 1000px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(236, 236, 232, 0.8);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative; z-index: 1;
}
.ctad-head {
  padding: 0.85rem 1.2rem;
  background: rgba(250, 250, 249, 0.7);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 1rem;
}
.ctad-tabs { display: flex; gap: 0.4rem; }
.ctad-tab {
  font-size: 0.72rem; padding: 0.35rem 0.85rem;
  border-radius: 6px; color: var(--text-soft);
  font-weight: 400;
}
.ctad-tab.active { background: var(--text); color: #FFF; font-weight: 500; }
.ctad-body {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: var(--line);
}
.ctad-cell {
  background: rgba(255,255,255,0.85);
  padding: 1.4rem 1.5rem;
  min-height: 180px;
}
.ctad-l { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 500; }
.ctad-v { font-size: 1.6rem; font-weight: 500; color: var(--text); margin: 0.6rem 0 0.3rem; letter-spacing: -0.02em; }
.ctad-d { font-size: 0.74rem; color: var(--text-soft); }
.ctad-line {
  margin-top: 1rem; height: 38px;
  display: flex; align-items: flex-end; gap: 4px;
}
.ctad-line span {
  flex: 1; border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--accent), rgba(255,107,87,0.4));
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 5rem 5% 3rem; }
.ftop {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 3.5rem; gap: 2.5rem; flex-wrap: wrap;
}
.flogo {
  font-size: 1.3rem; font-weight: 600; color: #FFF;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.flogo span { color: var(--accent); font-weight: 600; }
.fdesc {
  margin-top: 1rem; font-size: 0.95rem; font-weight: 400;
  max-width: 280px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.flinks { display: flex; gap: 2.2rem; flex-wrap: wrap; align-items: center; }
.flinks a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.flinks a:hover { color: #FFF; }
.fbot {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
footer .fbot p { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.45); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .mgrid { grid-template-columns: repeat(2, 1fr); }
  .mc:nth-child(4n) { border-right: 1px solid var(--line); }
  .mc:nth-child(2n) { border-right: none; }
  .mc:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .mc:nth-last-child(-n+2) { border-bottom: none; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .ctad-body { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .intro-grid, .ind-intro { grid-template-columns: 1fr; gap: 3rem; }
  .addons { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 5rem 5%; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-main { padding: 1.2rem; }
  .feat-header, .faq-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .hero { padding: 7rem 5% 4rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn, .hero-cta .btn-ghost-play { width: 100%; justify-content: center; }
  .mgrid { grid-template-columns: 1fr; border-right: none; }
  .mc { border-right: none !important; }
  .mc:not(:last-child) { border-bottom: 1px solid var(--line) !important; }
}