/* =================================================
   Lestrojbox 2.0 — Clean / Modern / Blue
   ================================================= */

:root {
  --navy: #0B1E3F;          /* deepest, dark sections + headlines */
  --navy-2: #142849;
  --ink: #1A2540;            /* body text on light */
  --ink-soft: #4A5A7A;
  --muted: #6B7A99;
  --line: #E1E7F0;
  --line-2: #EEF2F7;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FC;        /* gentle blue-tinted alt */
  --bg-soft-2: #EEF3FB;
  --blue: #2D5BFF;           /* primary accent — electric blue */
  --blue-deep: #1E40D9;
  --blue-soft: #E8EFFE;
  --blue-tint: #F0F5FF;
  --green: #1FA86A;
  --red: #DC3545;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.04), 0 1px 1px rgba(11, 30, 63, 0.02);
  --shadow:    0 4px 14px rgba(11, 30, 63, 0.06), 0 1px 4px rgba(11, 30, 63, 0.04);
  --shadow-lg: 0 24px 56px rgba(11, 30, 63, 0.10), 0 8px 16px rgba(11, 30, 63, 0.06);

  --sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --serif: 'Newsreader', 'Times New Roman', serif;
}

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

html, body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01';
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--blue); color: white; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}

.serif-em { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }

/* ================== Announce bar ================== */
.announce {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.announce strong { color: white; font-weight: 600; }
.announce-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ================== Nav ================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand-mark { width: 32px; height: 32px; }
.nav-brand-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
}
.lang-toggle button {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.lang-toggle button.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ================== Buttons ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s, box-shadow 0.15s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue-deep), var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-2); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-light {
  background: white;
  color: var(--navy);
}
.btn-light:hover { background: var(--bg-soft); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }
.btn:active { transform: translateY(1px); }

/* ================== Hero ================== */
.hero {
  padding: 96px 0 64px;
  background: var(--bg);
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--navy);
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -0.025em;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions .play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 4px;
}
.hero-actions .play-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}

.hero-quick {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.hero-quick > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-quick svg { color: var(--blue); flex-shrink: 0; }

/* hero product visual */
.hero-visual {
  margin-top: 64px;
  position: relative;
}
.hero-visual-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 12px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 12px;
}
.hero-visual-dots { display: flex; gap: 6px; }
.hero-visual-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: block;
}
.hero-visual-url {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.hero-visual-img {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-visual-img img { width: 100%; display: block; }

.hero-visual-pill {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.hero-visual-pill .pill-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pill-1 { top: 50px; left: -28px; }
.pill-2 { bottom: 60px; right: -36px; }
.pill-3 { top: 38%; right: 24px; }

/* ================== Logos / Trust ================== */
.trust {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.7;
}
.trust-row span {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-family: var(--sans);
}

/* ================== Section ================== */
.section {
  padding: 128px 0;
}
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-head .kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section-dark .section-head .kicker { color: #6FA8FF; }
.section-head h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-head h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--blue); letter-spacing: -0.02em; }
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ================== Features ================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}
.feat-card .feat-icon {
  width: 48px; height: 48px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feat-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.feat-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================== Showcase row (alternating) ================== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.showcase:last-child { margin-bottom: 0; }
.showcase-rev .showcase-text { order: 2; }
.showcase-text .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.showcase h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.showcase p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}
.showcase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.showcase ul li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.showcase-img {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================== Metrics inline ================== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}
.metric {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.metric:last-child { border-right: 0; }
.metric .num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.metric .num em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--blue);
  margin-left: 4px;
  letter-spacing: -0.02em;
}
.metric .label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ================== Video ================== */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ================== Pricing ================== */
.pricing-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 999px;
  margin: 0 auto 56px;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle-wrap { display: flex; justify-content: center; }
.pricing-toggle button {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  transition: background 0.15s, color 0.15s;
}
.pricing-toggle button.active {
  background: var(--navy);
  color: white;
}
.pricing-toggle .save {
  display: inline-block;
  margin-left: 6px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.pricing-toggle button.active .save { background: var(--blue); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.plan-pop {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, var(--blue-tint) 0%, white 30%);
  box-shadow: var(--shadow);
}
.plan-pop-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.plan-tagline {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  min-height: 42px;
  line-height: 1.45;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  color: var(--navy);
}
.plan-price .cur {
  font-size: 22px;
  font-weight: 600;
}
.plan-price .num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-price .per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.plan-billed {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.plan-features li.no { color: var(--muted); text-decoration: line-through; }
.plan-features li svg.ok { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.plan-features li svg.no { color: var(--line); flex-shrink: 0; margin-top: 3px; }
.plan-cta { width: 100%; justify-content: center; }

/* Pro extras */
.plan-extras {
  margin-top: 18px;
  padding: 16px;
  background: var(--blue-tint, #f3f6ff);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.plan-extras-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--navy); margin-bottom: 4px;
}
.plan-extras-sub {
  font-size: 12px; color: var(--ink-soft, #6b7280); margin-bottom: 12px;
}
.plan-extra {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px; border-radius: 8px;
  cursor: pointer; user-select: none;
  transition: background .15s;
}
.plan-extra:hover { background: rgba(255,255,255,.6); }
.plan-extra.on { background: white; }
.plan-extra input { display: none; }
.plan-extra-box {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid var(--line); background: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: white;
}
.plan-extra.on .plan-extra-box {
  background: var(--blue); border-color: var(--blue);
}
.plan-extra-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.plan-extra-label { font-weight: 600; color: var(--navy); font-size: 14px; }
.plan-extra-hint { font-size: 12px; color: var(--ink-soft, #6b7280); }
.plan-extra-price {
  font-weight: 700; color: var(--navy); font-size: 14px;
  white-space: nowrap; align-self: center;
}

/* Coming soon plan */
.plan-coming {
  opacity: 0.7;
  background: #fafbfc;
}
.plan-coming-tag {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink, #1f2937); color: white;
  padding: 5px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
}
.plan-price-coming { color: var(--ink-soft, #9ca3af); }
.plan-price-coming .num { font-size: 48px; }
.btn-disabled {
  background: #e5e7eb; color: #9ca3af; cursor: not-allowed;
  border: 1px solid var(--line);
}
.btn-disabled:hover { background: #e5e7eb; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
}

/* addons */
.addons {
  margin-top: 80px;
}
.addons-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.addon-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--navy);
}
.addon-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
  flex-grow: 1;
}
.addon-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}

/* ================== Promo ================== */
.promo {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,255,0.4) 0%, transparent 60%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,91,255,0.18);
  color: #9CB7FF;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}
.promo h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.promo h3 em { font-family: var(--serif); font-style: italic; color: #9CB7FF; font-weight: 500; }
.promo p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; max-width: 460px; }
.promo-form { position: relative; z-index: 1; }
.promo-input-row {
  display: flex;
  background: white;
  border-radius: var(--radius);
  padding: 6px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.promo-input-row input {
  flex: 1;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  border-radius: var(--radius);
}
.promo-input-row input::placeholder { color: var(--muted); }
.promo-input-row button {
  padding: 11px 20px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: -0.005em;
}
.promo-input-row button:hover { background: var(--blue-deep); }
.promo-hint, .promo-msg {
  font-size: 12.5px;
  margin-top: 6px;
}
.promo-hint { color: rgba(255,255,255,0.5); }
.promo-msg-ok { color: #6FE39A; }
.promo-msg-err { color: #FF8E8E; }

/* ================== Testimonials ================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tstm {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.tstm-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--blue);
}
.tstm-quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.tstm-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tstm-avatar {
  width: 40px; height: 40px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.tstm-author-text { display: flex; flex-direction: column; }
.tstm-author-name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.tstm-author-role { font-size: 13px; color: var(--muted); }

/* ================== FAQ ================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  gap: 24px;
}
.faq-q-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--blue);
  transition: transform 0.25s, background 0.15s;
  flex-shrink: 0;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--blue); color: white; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-text {
  overflow: hidden;
}
.faq-a-text > div {
  padding-bottom: 26px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
}

/* ================== Notify bar ================== */
.notify {
  background: linear-gradient(135deg, var(--blue) 0%, #5C7BFF 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notify::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.4;
}
.notify h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  position: relative;
}
.notify h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
}
.notify p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative;
}
.notify-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.notify-form input[type=email] {
  flex: 1;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 15px;
}
.notify-form button {
  padding: 11px 22px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.notify-form button:hover { background: var(--navy-2); }
.notify-form-msg {
  margin-top: 16px;
  font-size: 14px;
  color: white;
  position: relative;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ================== Contact ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info .kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.contact-info h3 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.contact-info h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.contact-info p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
}
.contact-info li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.contact-direct {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-direct > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.contact-direct .icon-wrap {
  width: 36px; height: 36px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-direct a { color: var(--navy); font-weight: 600; }
.contact-direct .label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

/* form */
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h4 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.form-card-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-field label em { color: var(--red); font-style: normal; margin-left: 2px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }

.form-radios { display: flex; gap: 8px; flex-wrap: wrap; }
.form-radio {
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.15s;
  background: white;
}
.form-radio input { display: none; }
.form-radio.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.form-radio:hover:not(.active) { border-color: var(--ink-soft); color: var(--navy); }

.form-actions { margin-top: 24px; }
.form-msg {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 18px;
}
.form-msg-err { background: #FFF0F1; color: var(--red); }
.form-ok-state { text-align: center; padding: 36px 16px; }
.form-ok-mark {
  width: 64px; height: 64px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.form-ok-state h4 { margin-bottom: 8px; }
.form-ok-state p { color: var(--ink-soft); margin-bottom: 24px; font-size: 15px; }

/* ================== Footer ================== */
.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-row img { width: 36px; height: 36px; }
.footer-brand-row span {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.footer-tag {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 320px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.1s;
}
.footer-col li a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ================== Responsive ================== */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric { border-bottom: 1px solid var(--line); }
  .metric:nth-child(n+3) { border-bottom: 0; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .showcase, .showcase-rev { grid-template-columns: 1fr; gap: 32px; }
  .showcase-rev .showcase-text { order: 0; }
  .pill-1 { left: 0; }
  .pill-2 { right: 0; }
  .pill-3 { display: none; }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 32px; }
  .hero-visual { margin-top: 48px; }
  .feat-grid, .addons-grid, .footer-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .promo, .notify, .form-card { padding: 32px 24px; }
  .pill-1, .pill-2, .pill-3 { display: none; }
}
