/* ============================================================
   GrowthPack Lab — style.css  (v3 — orange redesign)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ---- Design tokens ---- */
:root {
  --primary:       #F97316;   /* orange-500 */
  --primary-dark:  #EA6C0B;   /* hover */
  --primary-xdark: #C2570A;   /* active */
  --primary-light: #FFF7ED;   /* orange-50 */
  --primary-mid:   #FED7AA;   /* orange-200 */
  --primary-glow:  rgba(249,115,22,0.12);

  --text:           #1C1917;   /* stone-900 */
  --text-secondary: #44403C;   /* stone-700 */
  --text-muted:     #78716C;   /* stone-500 */
  --text-xmuted:    #A8A29E;   /* stone-400 */

  --border:         #E7E5E4;   /* stone-200 */
  --border-hover:   #D6D3D1;   /* stone-300 */

  --bg-white:       #FFFFFF;
  --bg-subtle:      #F5F5F4;   /* stone-100 */
  --bg-gray:        #FAFAF9;   /* stone-50 */
  --bg-muted:       #F5F5F4;   /* stone-100 */

  --success:        #16A34A;   /* green-600 */
  --success-light:  #DCFCE7;
  --warning:        #D97706;   /* amber-600 */
  --warning-light:  #FFFBEB;

  --shadow-xs:  0 1px 2px rgba(28,25,23,0.05);
  --shadow-sm:  0 1px 4px rgba(28,25,23,0.06), 0 2px 8px rgba(28,25,23,0.04);
  --shadow-md:  0 2px 12px rgba(28,25,23,0.07);
  --shadow-lg:  0 8px 40px rgba(28,25,23,0.12), 0 2px 8px rgba(28,25,23,0.06);

  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "DM Sans", system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1168px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text);
}
h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 520px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(249,115,22,0.3), 0 4px 16px rgba(249,115,22,0.2);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-secondary);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.18s;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: all 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: #FFF7ED;
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(28,25,23,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(249,115,22,0.11), 0 2px 8px rgba(28,25,23,0.06);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-gray { background: var(--bg-gray); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtext { margin: 12px auto 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 16px;
}
.nav.scrolled .nav-inner {
  box-shadow: 0 4px 24px rgba(28,25,23,0.11);
}

.nav-inner {
  max-width: 1100px;
  margin: 12px auto 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(231,229,228,0.9);
  border-radius: 999px;
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 16px rgba(28,25,23,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: 8px;
}
.nav-logo svg { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 2px;
  margin-right: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text); background: var(--primary-light); }
.nav-links a.active { color: var(--primary); font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}
.nav-login:hover { color: var(--text); background: var(--bg-subtle); }
.nav-cta { padding: 9px 18px; font-size: 13px; }

/* Language switcher — dropdown */
.lang-dropdown {
  position: relative;
  margin-right: 4px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border, rgba(0,0,0,0.1));
  background: var(--bg-subtle);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.03em;
}
.lang-current:hover { background: var(--primary-light); color: var(--primary); }
.lang-current-flag { font-size: 14px; line-height: 1; }
.lang-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bg, #fff);
  border: 1px solid var(--border, rgba(0,0,0,0.1));
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li { margin: 0; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
}
.lang-opt .lang-opt-flag { font-size: 16px; line-height: 1; }
.lang-opt .lang-opt-code {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.lang-opt:hover { background: var(--bg-subtle); }
.lang-opt.active { background: var(--primary-light); color: var(--primary); }
.lang-opt.active .lang-opt-code { color: var(--primary); }

/* Drawer (mobile) variant */
.drawer-lang { padding: 0 12px 4px; }
.drawer-lang .lang-dropdown { margin-right: 0; }
.drawer-lang .lang-current { width: 100%; justify-content: center; border-radius: 8px; }
.drawer-lang .lang-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  margin-top: 6px;
  display: none;
}
.drawer-lang .lang-dropdown.open .lang-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.hamburger:hover { background: var(--bg-subtle); }
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile { display: none; position: fixed; inset: 0; z-index: 99; }
.nav-mobile.open { display: block; }
.nav-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0.5); }
.nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 272px;
  height: 100%;
  background: #fff;
  padding: 72px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -4px 0 32px rgba(28,25,23,0.12);
}
.nav-drawer a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-drawer a:hover { background: var(--bg-subtle); }
.nav-drawer .drawer-divider { height: 1px; background: var(--border); margin: 8px 4px; }
.nav-drawer .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #FFF7ED 0%, #FFFFFF 55%);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  text-align: left;
  max-width: 560px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-text .eyebrow { margin-bottom: 20px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-subtext {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  align-items: center;
}
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
}
.proof-badge svg { color: var(--success); }
.proof-badge-subtle {
  background: var(--primary-light);
  border-color: var(--primary-mid);
  color: #92400E;
}

/* App screenshot mock */
.hero-visual { position: relative; }

.app-mock {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(28,25,23,0.12), 0 2px 8px rgba(28,25,23,0.06);
  background: var(--bg-white);
}
.app-mock::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #FB923C 100%);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #F5F5F4;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dot:first-child { background: #FCA5A5; }
.mock-dot:nth-child(2) { background: #FDE68A; }
.mock-dot:nth-child(3) { background: #A7F3D0; }
.mock-url {
  flex: 1;
  height: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.mock-body { padding: 20px; background: var(--bg-white); }

.mock-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-page-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mock-status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--warning-light);
  color: var(--warning);
  border: 1px solid #FDE68A;
}

.mock-score-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mock-score-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mock-score-denom {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1;
}
.mock-score-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
  font-weight: 500;
}

.mock-metric-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  align-items: center;
}
.mock-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mock-metric-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
}
.mock-metric-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: var(--bg-muted);
  border-radius: 2px;
  overflow: hidden;
}
.mock-metric-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--primary);
}
.mock-metric-fill.fill-danger { background: #EF4444; opacity: 0.7; }
.mock-metric-fill.fill-warning { background: var(--warning); opacity: 0.7; }

/* ============================================================
   BIZ TYPES
   ============================================================ */
.biz-types {
  padding: 28px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.biz-types-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-xmuted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.biz-chips {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.biz-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
}
.biz-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   PLATFORMS BAR
   ============================================================ */
.platforms-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.platforms-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-xmuted);
  margin-bottom: 20px;
}
.platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.platform-logo {
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.platform-logo:hover { opacity: 0.75; }
.platform-logo svg {
  width: 28px;
  height: 28px;
  color: var(--text);
}
.platform-text span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ============================================================
   HOW IT WORKS — numbered stagger
   ============================================================ */
.steps-list {
  max-width: 720px;
  margin: 0 auto;
}
.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-mid);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 4px;
}
.step-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-mid);
  padding: 2px 8px;
  border-radius: 999px;
}
.step-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}
.step-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 0 104px;
}

/* Legacy step-card/step-grid kept for compatibility */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.step-card { padding: 28px 24px; position: relative; }
.step-num-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-icon-wrap { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.step-icon-wrap svg { width: 18px; height: 18px; }
.step-card h3 { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.steps-grid .step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 42px; right: -10px;
  width: 20px; height: 1px;
  background: var(--border);
}

/* ============================================================
   FEATURE SECTIONS (alternating)
   ============================================================ */
.feature-section { padding: 100px 0; }
.feature-section.section-gray { background: var(--bg-gray); }
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-inner.reversed { direction: rtl; }
.feature-inner.reversed > * { direction: ltr; }

.feature-text .eyebrow { margin-bottom: 16px; }
.feature-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.feature-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 440px;
}

.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1.5px solid var(--primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 10px; height: 10px; stroke: var(--primary); stroke-width: 2.5; }

/* ---- Feature mock panels ---- */
.feature-visual {}

.feature-mock {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: 0 6px 32px rgba(28,25,23,0.10), 0 2px 8px rgba(28,25,23,0.05);
}
.feature-mock::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #FB923C 100%);
}
.feature-mock .mock-topbar { background: #F5F5F4; }
.feature-mock-body { padding: 20px; }

/* Score card mock */
.score-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.score-big {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.score-meta { text-align: right; }
.score-meta-label { font-size: 11px; font-weight: 600; color: var(--text-xmuted); text-transform: uppercase; letter-spacing: 1px; }
.score-meta-tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--warning-light);
  color: var(--warning);
  border: 1px solid #FDE68A;
  margin-top: 4px;
}

.score-categories { display: flex; flex-direction: column; gap: 10px; }
.score-cat-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.score-cat-name { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.score-cat-val { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.score-bar-track {
  height: 5px;
  background: var(--bg-muted);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill { height: 100%; border-radius: 3px; background: var(--primary); }
.score-bar-fill.bar-danger { background: #EF4444; opacity: 0.6; }

.score-action {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--primary-xdark);
  font-weight: 500;
  line-height: 1.5;
}

/* Progress mock */
.progress-mock-body { padding: 20px; }
.phase-list { display: flex; flex-direction: column; gap: 0; }
.phase-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.phase-row:last-child { border-bottom: none; }
.phase-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phase-dot svg { width: 13px; height: 13px; }
.phase-dot.done { background: var(--success-light); color: var(--success); }
.phase-dot.active { background: var(--primary-light); color: var(--primary); }
.phase-dot.pending { background: var(--bg-muted); color: var(--text-xmuted); }
.phase-row-info { flex: 1; min-width: 0; }
.phase-row-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.phase-row-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.phase-row-badge {
  font-size: 10px; font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.badge-done { background: var(--success-light); color: var(--success); }
.badge-active { background: var(--primary-light); color: var(--primary); }
.badge-pending { background: var(--bg-muted); color: var(--text-xmuted); }

/* Community mock */
.community-mock-body { padding: 20px; }
.feed-list { display: flex; flex-direction: column; gap: 0; }
.feed-item {
  display: flex;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.feed-item:last-child { border-bottom: none; }
.feed-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.feed-content { flex: 1; min-width: 0; }
.feed-author { font-size: 12px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.feed-author-badge {
  font-size: 9px; font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--primary-light);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feed-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ---- Diagnostics result mock ---- */
.diag-result-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.diag-result-row:last-of-type { border-bottom: none; }
.diag-result-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diag-result-icon svg { width: 13px; height: 13px; }
.diag-icon-ok   { background: #D1FAE5; color: #059669; }
.diag-icon-warn { background: #FEF3C7; color: #D97706; }
.diag-cta-row {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--primary-light);
  border-radius: 8px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-anchor-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-xdark);
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-anchor-top svg { color: var(--primary); flex-shrink: 0; }
.pricing-upsell-hint {
  display: block;
  font-size: 11px;
  color: var(--text-xmuted);
  margin-top: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}
/* 3-card variant */
.pricing-grid-3 {
  grid-template-columns: 1fr 1.15fr 1fr;
  max-width: 1040px;
}
.pricing-card {
  padding: 32px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(28,25,23,0.07);
}
.pricing-card.popular {
  border-color: var(--primary);
  background: #FFFAF7;
  box-shadow: 0 0 0 4px var(--primary-light), 0 8px 32px rgba(249,115,22,0.12);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-price sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-muted);
}
.pricing-price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 24px;
}
.pricing-divider { height: 1px; background: var(--border); margin: 0 0 20px; }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-features li svg {
  width: 16px; height: 16px;
  stroke: var(--primary);
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  justify-content: center;
}
.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* DFY "od €497" — smaller font */
.pricing-price-from {
  font-size: 38px !important;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-price-from sup {
  font-size: 18px !important;
}

/* Credit note inside Checklista card */
.pricing-credit-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 12px;
  color: var(--primary-xdark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.pricing-credit-note svg {
  width: 14px; height: 14px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Payment note below pricing grid */
.pricing-payment-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}
.pricing-payment-note svg {
  flex-shrink: 0;
  stroke: var(--text-xmuted);
  stroke-width: 2;
  margin-top: 2px;
}

/* ============================================================
   PLATFORM FEATURES GRID
   ============================================================ */
.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.pf-tile {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.pf-tile:hover {
  box-shadow: 0 4px 20px rgba(249,115,22,0.08), 0 2px 6px rgba(28,25,23,0.05);
  border-color: var(--primary-mid);
  transform: translateY(-2px);
}
.pf-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--primary);
}
.pf-icon svg { width: 17px; height: 17px; }
.pf-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pf-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.pf-tile-more {
  background: var(--primary-light);
  border-color: var(--primary-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-more-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pf-more-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   TESTIMONIALS — featured + 2 secondary
   ============================================================ */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 52px;
}
.testimonial-featured {
  background: var(--primary-light);
  border: 1.5px solid var(--primary-mid);
  border-radius: 20px;
  padding: 40px;
}
.quote-mark svg {
  width: 32px; height: 24px;
  color: var(--primary-mid);
  margin-bottom: 20px;
}
.testimonial-text-featured {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 13px; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.testimonial-stars-inline { color: #F59E0B; font-size: 13px; margin-left: auto; }

.testimonials-secondary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card-sm { padding: 24px; }
.testimonial-card-sm p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 12px 0 16px;
  font-style: italic;
}
.testimonial-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.testimonial-author-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.testimonial-author-sm strong { color: var(--text); font-weight: 600; display: block; }
.testimonial-author-sm span { color: var(--text-muted); }
.testimonial-avatar-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Legacy testimonials-grid kept for compatibility */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testimonial-card { padding: 28px 24px; }
.testimonial-quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-weight: 400; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 32px;
}
.founder-card {
  padding: 32px;
  text-align: center;
}
.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.founder-name {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.founder-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.founder-stats { list-style: none; padding: 0; text-align: left; display: inline-block; }
.founder-stats li { font-size: 13px; color: var(--text-muted); padding: 3px 0; line-height: 1.4; }
.founder-stats li strong { color: var(--text); font-weight: 700; }
.founders-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.blog-card { overflow: hidden; }
.blog-thumb {
  height: 160px;
  border-radius: 10px 10px 0 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--text-xmuted);
}
.blog-thumb svg { width: 32px; height: 32px; stroke-width: 1.5; }
.blog-thumb-tracking svg  { color: #EA580C; }
.blog-thumb-google svg    { color: #16A34A; }
.blog-thumb-meta svg      { color: #EA580C; }
.blog-thumb-analytics svg { color: #7C3AED; }
.blog-thumb-infra svg     { color: #0369A1; }
.blog-thumb-dfy svg       { color: #BE123C; }
.blog-thumb-tracking  { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.blog-thumb-google    { background: linear-gradient(135deg, #F0FDF4, #DCFCE7); }
.blog-thumb-meta      { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.blog-thumb-analytics { background: linear-gradient(135deg, #FAF5FF, #E9D5FF); }
.blog-thumb-infra     { background: linear-gradient(135deg, #F0F9FF, #BAE6FD); }
.blog-thumb-dfy       { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.blog-body { padding: 18px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.blog-cat {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-read { font-size: 12px; color: var(--text-xmuted); }
.blog-date { font-size: 12px; color: var(--text-xmuted); }
.blog-title {
  font-size: 15px; font-weight: 600;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.blog-link {
  font-size: 13px; font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}
.blog-link:hover { gap: 7px; }
.blog-footer-link { text-align: center; margin-top: 36px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-banner .section-subtext {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 18px;
  flex-wrap: wrap;
}
.cta-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-trust span { display: flex; align-items: center; gap: 5px; }
.cta-trust span svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.9); stroke-width: 2.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1C1917;
  color: #D6D3D1;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: #FAFAF9; margin-bottom: 10px; }
.footer-tagline {
  font-size: 13px;
  color: #78716C;
  margin-bottom: 20px;
  max-width: 200px;
  line-height: 1.6;
  margin-top: 8px;
}
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #78716C;
  transition: all 0.15s;
}
.social-icon svg { width: 14px; height: 14px; }
.social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.footer-col h4 {
  color: #FAFAF9;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: #A8A29E; transition: color 0.15s; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 24px;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: #57534E; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: #57534E; transition: color 0.15s; }
.footer-legal a:hover { color: var(--primary); }

/* ============================================================
   FLOATING CHAT
   ============================================================ */
.chat-badge {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3), 0 4px 20px rgba(249,115,22,0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}
.chat-badge:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
.chat-badge svg { width: 20px; height: 20px; }

/* ============================================================
   APP.HTML — Feature Grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.feature-card { padding: 22px 20px; }
.feature-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}
.feature-card-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.feature-card h3 { font-size: 14px; margin-bottom: 6px; font-weight: 600; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   APP.HTML — Tabs / Phases
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 0.15s;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  letter-spacing: -0.01em;
}
.tab-btn:hover { color: var(--text); background: var(--bg-subtle); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.tab-panel { display: none; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.phase-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.badge-free { background: var(--success-light); color: var(--success); border: 1px solid #A7F3D0; }
.badge-p1 { background: var(--primary-light); color: var(--primary-xdark); border: 1px solid var(--primary-mid); }
.badge-p2 { background: var(--warning-light); color: var(--warning); border: 1px solid #FDE68A; }

.phase-title { margin-bottom: 12px; font-size: 24px; }
.phase-desc { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.phase-modules h4 {
  font-size: 11px; font-weight: 700;
  color: var(--text-xmuted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  margin-top: 20px;
}
.phase-modules h4:first-child { margin-top: 0; }

.phase-mock {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ============================================================
   BLOG.HTML
   ============================================================ */
.blog-hero { background: var(--bg-subtle); padding: 60px 0; border-bottom: 1px solid var(--border); }
.blog-hero h1 { margin-bottom: 12px; }
.blog-search-wrap { margin-top: 28px; max-width: 440px; }
.blog-search {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.blog-search input {
  flex: 1;
  border: none; outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: none;
}
.blog-search input::placeholder { color: var(--text-xmuted); }
.search-icon { color: var(--text-xmuted); display: flex; }
.search-icon svg { width: 16px; height: 16px; }

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 52px;
}
.page-btn {
  height: 36px; min-width: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-weight: 600; font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
}
.page-btn:hover { background: var(--bg-subtle); border-color: var(--border-hover); color: var(--text); }
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-prev, .page-next { padding: 0 14px; gap: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1200px — wide laptop ---- */
@media (max-width: 1200px) {
  .pricing-grid-3 { grid-template-columns: 1fr 1.1fr 1fr; max-width: 960px; }
  .platform-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- 1024px — tablet landscape ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 48px; }
  .feature-inner { gap: 48px; }
  .platform-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- 900px — stacking hero + testimonials ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
  /* Popular card first on mobile */
  #pricing-checklist { order: 2; }
  #pricing-platform  { order: 1; }
  #pricing-dfy       { order: 3; }
  .platform-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px — mobile ---- */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .feature-section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav { padding: 0 10px; }
  .nav-inner {
    border-radius: 16px;
    margin: 8px 0 0;
    padding: 6px 8px 6px 14px;
  }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 96px 0 56px; }
  .hero-text { text-align: left; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn { justify-content: center; min-height: 48px; }
  .hero-proof { flex-wrap: wrap; gap: 8px; }

  /* Biz chips */
  .biz-chips { gap: 8px; justify-content: flex-start; }
  .biz-chip { font-size: 13px; padding: 8px 14px; }

  /* Platforms bar */
  .platforms-row { gap: 20px; }
  .platform-logo svg { width: 22px; height: 22px; }

  /* Features */
  .feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-inner.reversed { direction: ltr; }
  .feature-visual { order: -1; }

  /* Steps */
  .steps-list { max-width: 100%; }
  .step-item { grid-template-columns: 1fr; gap: 6px; }
  .step-number { font-size: 36px; }
  .step-divider { margin-left: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }

  /* Platform features grid */
  .platform-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pf-tile { padding: 18px 16px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-grid-3 { max-width: 440px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-payment-note { font-size: 12px; flex-direction: column; align-items: center; text-align: center; }

  /* Testimonials */
  .testimonial-featured { padding: 28px 24px; }
  .testimonial-text-featured { font-size: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }

  /* App.html features grid */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Tabs */
  .tab-panel.active { grid-template-columns: 1fr; gap: 24px; }
  .phase-visual { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-banner { padding: 60px 0; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-banner-actions .btn { justify-content: center; min-height: 48px; }
  .cta-trust { flex-direction: column; align-items: center; gap: 8px; }

  /* Founders */
  .founders-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ---- 480px — small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  h1 { font-size: clamp(30px, 8vw, 38px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }

  .section { padding: 44px 0; }
  .feature-section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }

  .hero { padding: 88px 0 48px; }
  .hero-visual { display: none; } /* hide mock on very small screens */

  .biz-chip svg { width: 14px; height: 14px; }

  .platforms-row { gap: 14px; }
  .platform-logo svg { width: 18px; height: 18px; }
  .platform-text span { font-size: 11px; }

  .platform-features-grid { grid-template-columns: 1fr; gap: 10px; }

  .pricing-grid-3 { max-width: 100%; }
  .popular-badge { font-size: 10px; padding: 3px 10px; }

  .step-number { font-size: 30px; }
  .step-body h3 { font-size: 17px; }
  .step-body p { font-size: 14px; }

  .testimonial-featured { padding: 22px 18px; }
  .testimonial-text-featured { font-size: 15px; }
  .testimonials-secondary { gap: 12px; }

  .blog-page-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .biz-chips { justify-content: flex-start; }

  .chat-badge { bottom: 16px; right: 16px; width: 44px; height: 44px; }
  .chat-badge svg { width: 18px; height: 18px; }

  .pricing-payment-note { font-size: 11px; }
}

/* ---- Touch targets ---- */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-login { min-height: 44px; display: inline-flex; align-items: center; }
  .lang-btn { min-width: 36px; min-height: 36px; }
  .hamburger { min-width: 44px; min-height: 44px; }
  .blog-link { padding: 4px 0; min-height: 32px; }
  .social-icon { width: 40px; height: 40px; }
  .check-list li { min-height: 36px; }
}
