:root {
  --bg-main: #0d0e12;
  --bg-secondary: #16181f;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text-main: #f3f2f0;
  --text-soft: rgba(243, 242, 240, 0.82);
  --text-muted: rgba(243, 242, 240, 0.64);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);
  --primary: #adc6ff;
  --primary-strong: #4f7dff;
  --primary-dark: #0a4ac9;
  --primary-glow: rgba(173, 198, 255, 0.32);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.28);
  --motion: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(13, 14, 18, 0.7);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a,
.header-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--motion);
}
.nav a:hover,
.header-link:hover { color: var(--text-main); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #052a66;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(79, 125, 255, 0.24);
}
.header-cta .btn-text,
.header-cta .btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.hero {
  padding: 72px 0 34px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}
.hero-copy,
.hero-showcase,
.social-proof,
.pain-section,
.offer-block,
.how-section,
.functions-section,
.stats-section,
.plugins-section,
.reviews-proof,
.ref-section,
.faq-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy.is-visible { opacity: 1; transform: translateY(0); }
.eyebrow,
.section-chip,
.proof-label,
.showcase-badge,
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 198, 255, 0.16);
  background: rgba(173, 198, 255, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title,
.section-heading h2,
.offer-content h2,
.stats-copy h2,
.faq-title,
.footer-eyebrow,
.showcase-main h2 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.05em;
}
.hero-title {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  max-width: 760px;
}
.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.trust-item {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}
.trust-item strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin-bottom: 10px;
}
.trust-item span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.btn,
.offer-button,
.ref-offer-button,
.footer-main-cta,
.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--motion), opacity var(--motion), background var(--motion), border-color var(--motion), box-shadow var(--motion), color var(--motion);
}
.btn:hover,
.offer-button:hover,
.ref-offer-button:hover,
.footer-main-cta:hover,
.faq-btn:hover { transform: translateY(-2px); }
.btn-primary,
.offer-button.primary,
.ref-offer-button.primary,
.footer-main-cta,
.faq-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #052a66;
  box-shadow: 0 20px 36px rgba(79, 125, 255, 0.25);
}
.btn-primary {
  min-height: 62px;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 800;
}
.btn-secondary {
  min-height: 62px;
  padding: 16px 24px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-size: 17px;
  font-weight: 700;
}
.btn-loader {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width var(--motion), opacity var(--motion);
}
.is-loading .btn-loader {
  width: 18px;
  opacity: 1;
  margin-left: 8px;
}

.hero-showcase {
  display: grid;
  gap: 16px;
}
.showcase-card,
.glass-card,
.proof-card,
.pain-card,
.how-card,
.feature-card,
.stat-card,
.plugin-card,
.review-proof-card,
.ref-offer-block,
.faq-item,
.section-card-inner,
.demo-window {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.showcase-main {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(173, 198, 255, 0.18), transparent 32%),
    linear-gradient(150deg, rgba(25, 31, 50, 0.92) 0%, rgba(12, 14, 20, 0.98) 100%);
}
.showcase-main::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--primary-glow);
  filter: blur(52px);
}
.showcase-main h2 {
  margin: 18px 0 18px;
  max-width: 300px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.03;
  font-weight: 800;
}
.showcase-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 340px;
}
.showcase-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.55;
}
.showcase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(173, 198, 255, 0.9);
}
.inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--primary);
  font-weight: 700;
}
.showcase-image {
  position: absolute;
  right: 14px;
  bottom: -2px;
  width: min(46%, 300px);
  z-index: 1;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.glass-card {
  border-radius: 24px;
  min-height: 185px;
  padding: 22px;
}
.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric-value {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  font-weight: 800;
}
.metric-card p,
.status-card p,
.review-card p,
.proof-card p,
.pain-card p,
.timeline-item p,
.feature-card p,
.stats-copy p,
.review-proof-card p,
.ref-offer-content p,
.faq-answer,
.plugin-card li {
  color: var(--text-muted);
  line-height: 1.7;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.review-card img {
  width: 118px;
  max-width: 100%;
}
.review-card h3,
.status-card strong,
.pain-card h3,
.timeline-item h3,
.feature-card h3,
.plugin-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}
.status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6dff9e;
  box-shadow: 0 0 16px rgba(109, 255, 158, 0.8);
}

.social-proof { padding: 12px 0 48px; }
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-card {
  border-radius: 24px;
  padding: 24px;
}
.proof-card strong {
  display: block;
  margin: 14px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.section-heading {
  margin-bottom: 32px;
}
.section-heading.centered {
  text-align: center;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
}
.section-heading p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.pain-section,
.offer-block,
.how-section,
.functions-section,
.stats-section,
.plugins-section,
.reviews-proof,
.ref-section,
.faq-wrap { padding: 52px 0; }
.pain-grid,
.feature-grid,
.plugin-grid,
.review-proof-grid {
  display: grid;
  gap: 18px;
}
.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pain-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
}

.section-card { padding-top: 20px; }
.section-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(173, 198, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(24, 28, 40, 0.96), rgba(14, 16, 22, 0.98));
}
.glow-bg,
.ref-glow-bg {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(173, 198, 255, 0.12), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
}
.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: stretch;
}
.offer-content h2,
.stats-copy h2,
.faq-title,
.footer-eyebrow {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 800;
}
.offer-content p,
.ref-offer-content p,
.stats-copy p {
  margin: 0 0 24px;
  font-size: 17px;
}
.offer-buttons,
.ref-offer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.offer-button,
.ref-offer-button {
  min-height: 56px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 800;
}
.white-button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text-main);
}
.offer-more,
.ref-offer-more,
.stat-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--motion), opacity var(--motion), padding var(--motion), margin var(--motion);
}
.offer-more,
.ref-offer-more {
  padding: 0 18px;
  margin-top: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}
.offer-more.is-open,
.ref-offer-more.is-open {
  max-height: 420px;
  opacity: 1;
  padding: 20px 22px;
  margin-top: 6px;
}
.offer-more ul,
.ref-offer-more ul,
.plugin-card ul,
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer-more li,
.ref-offer-more li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.65;
  color: var(--text-soft);
}
.dot {
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}
.offer-visual {
  display: flex;
}
.dashboard-card {
  width: 100%;
  align-self: stretch;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}
.dashboard-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dashboard-line strong {
  color: var(--primary);
}
.dashboard-line.active {
  background: linear-gradient(135deg, rgba(173, 198, 255, 0.14), rgba(79, 125, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(173, 198, 255, 0.14);
}

.how-demo,
.stats-layout,
.footer-grid {
  display: grid;
  gap: 24px;
}
.how-demo,
.stats-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
}
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.timeline-item:first-child { border-top: 0; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(173, 198, 255, 0.1);
  border: 1px solid rgba(173, 198, 255, 0.18);
  color: var(--primary);
  font-weight: 800;
}
.demo-window {
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
}
.demo-header,
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}
.demo-header strong { display: block; }
.demo-header span,
.demo-footer { color: var(--text-muted); font-size: 14px; }
.demo-messages {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.demo-bubble {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.55;
}
.demo-bubble.incoming {
  background: rgba(255, 255, 255, 0.06);
  border-top-left-radius: 6px;
}
.demo-bubble.outgoing {
  margin-left: auto;
  background: rgba(173, 198, 255, 0.12);
  border-top-right-radius: 6px;
}
.demo-status {
  color: #7dffb0 !important;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
  min-height: 210px;
  padding: 26px;
  border-radius: 24px;
  transition: transform var(--motion), border-color var(--motion), box-shadow var(--motion);
}
.feature-card:hover,
.pain-card:hover,
.proof-card:hover,
.plugin-card:hover,
.review-proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(173, 198, 255, 0.16);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(173, 198, 255, 0.08);
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.stats-cards {
  display: grid;
  gap: 14px;
}
.stat-card {
  border-radius: 24px;
  padding: 22px;
}
.stat-summary {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text-main);
  text-align: left;
  font-size: 24px;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}
.stat-card.is-open .stat-details {
  max-height: 220px;
  opacity: 1;
  padding-top: 16px;
}
.stat-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.plugin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.plugin-card {
  border-radius: 28px;
  padding: 28px;
}
.card-autostars {
  background: linear-gradient(135deg, rgba(80, 65, 158, 0.94), rgba(30, 24, 61, 0.98));
}
.card-autosteam {
  background: linear-gradient(135deg, rgba(41, 73, 127, 0.96), rgba(15, 24, 42, 0.98));
}
.card-other {
  background: linear-gradient(135deg, rgba(58, 60, 75, 0.96), rgba(24, 25, 33, 0.98));
}
.plugin-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}
.plugin-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4e2ff;
}

.review-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.review-proof-card {
  border-radius: 28px;
  padding: 28px;
}
.review-proof-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.review-stars {
  color: var(--primary);
  letter-spacing: 0.18em;
}
.review-proof-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
}

.ref-offer-block {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 32px;
}

.faq-section {
  max-width: 920px;
  margin: 0 auto;
}
.faq-title {
  text-align: center;
  margin-bottom: 28px;
}
.faq-item {
  border-radius: 22px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  list-style: none;
  position: relative;
  padding: 22px 60px 22px 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--primary);
}
.faq-answer {
  padding: 0 24px 22px;
}
.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.faq-btn {
  min-height: 58px;
  padding: 16px 26px;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0 112px;
  border-top: 1px solid var(--line-soft);
  background: rgba(9, 10, 13, 0.84);
}
.footer-grid {
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  align-items: start;
}
.footer-main-cta {
  min-height: 68px;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 800;
  width: fit-content;
}
.footer-lock {
  margin: 16px 0 0;
  color: var(--text-muted);
}
.footer-socials h3,
.footer-info h3 {
  margin: 0 0 16px;
  font-size: 18px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
}
.footer-info li { margin-bottom: 10px; }
.footer-info a { color: var(--text-muted); }
.footer-info a:hover { color: var(--text-main); }

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #052a66;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(79, 125, 255, 0.35);
}

@media (max-width: 1180px) {
  .hero-layout,
  .offer-shell,
  .how-demo,
  .stats-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid,
  .social-proof-grid,
  .pain-grid,
  .feature-grid,
  .plugin-grid,
  .review-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcase-image {
    width: min(42%, 260px);
  }
}

@media (max-width: 860px) {
  .header-actions {
    display: none;
  }
  .burger { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    min-width: 220px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 11, 15, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .hero {
    padding-top: 34px;
  }
  .hero-trust,
  .showcase-grid,
  .social-proof-grid,
  .pain-grid,
  .feature-grid,
  .plugin-grid,
  .review-proof-grid {
    grid-template-columns: 1fr;
  }
  .showcase-main {
    min-height: 380px;
  }
  .showcase-image {
    width: min(44%, 220px);
  }
  .timeline-item {
    grid-template-columns: 48px 1fr;
  }
  .site-footer {
    padding-bottom: 96px;
  }
  .mobile-sticky-cta {
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--container));
  }
  .header-inner {
    min-height: 72px;
  }
  .logo {
    font-size: 20px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle,
  .section-heading p,
  .offer-content p,
  .stats-copy p,
  .ref-offer-content p {
    font-size: 15px;
  }
  .btn-primary,
  .btn-secondary,
  .offer-button,
  .ref-offer-button,
  .footer-main-cta,
  .faq-btn {
    width: 100%;
  }
  .hero-actions,
  .offer-buttons,
  .ref-offer-buttons {
    flex-direction: column;
  }
  .showcase-main,
  .glass-card,
  .proof-card,
  .pain-card,
  .feature-card,
  .plugin-card,
  .review-proof-card,
  .ref-offer-block,
  .section-card-inner,
  .demo-window,
  .stat-card,
  .faq-item {
    border-radius: 22px;
  }
  .showcase-main {
    padding: 22px;
    min-height: 360px;
  }
  .showcase-main h2,
  .offer-content h2,
  .stats-copy h2,
  .faq-title,
  .footer-eyebrow {
    font-size: 30px;
  }
  .showcase-image {
    position: relative;
    width: 180px;
    margin: 18px 0 0 auto;
    right: auto;
    bottom: auto;
  }
  .trust-item,
  .pain-card,
  .feature-card,
  .plugin-card,
  .review-proof-card {
    padding: 22px;
  }
  .section-card-inner,
  .ref-offer-block {
    padding: 24px 18px;
  }
  .faq-question {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
}


.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

:root {
  --card-radius: 24px;
  --card-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

html { scroll-padding-top: 88px; }
.site-header { backdrop-filter: blur(10px); background: rgba(13, 14, 18, 0.52); }
.header-inner { min-height: 72px; gap: 18px; }
.nav a { position: relative; padding: 8px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(173,198,255,.2), rgba(79,125,255,.95)); transform: scaleX(0); transform-origin: center; transition: transform var(--motion), opacity var(--motion); opacity: 0; }
.nav a.is-active, .nav a:hover { color: var(--text-main); }
.nav a.is-active::after, .nav a:hover::after { transform: scaleX(1); opacity: 1; }
.header-cta { display:inline-flex; align-items:center; justify-content:center; height:42px; min-height:42px; padding:0 16px; border-radius:14px; line-height:1; }
.hero { padding: 64px 0 28px; }
.hero-layout { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 32px; align-items: center; }
.hero-title { max-width: 680px; font-size: clamp(48px, 6vw, 78px); line-height: .94; }
.hero-subtitle { max-width: 520px; margin-top: 20px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: rgba(243,242,240,.78); }
.hero-actions { margin-top: 28px; }
.hero-mini-trust { display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.mini-trust-item { display:inline-flex; align-items:center; gap:10px; min-height:44px; padding:10px 14px; border-radius:16px; background: rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.06); color: var(--text-soft); font-size:14px; font-weight:600; }
.mini-trust-item .material-symbols-outlined, .card-icon { font-size:22px; color: var(--primary); }
.hero-showcase, .proof-card, .pain-card, .feature-card, .review-proof-card, .demo-window, .section-card-inner, .faq-item { box-shadow: var(--card-shadow); border-radius: var(--card-radius); backdrop-filter: blur(12px); }
.hero-product-card { border:1px solid rgba(255,255,255,.08); border-radius: 28px; padding: 22px; background: linear-gradient(180deg, rgba(18,22,31,.94), rgba(9,11,16,.98)); box-shadow: 0 30px 70px rgba(0,0,0,.34); display:grid; gap:18px; }
.hero-product-topbar { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.hero-product-title { display:grid; gap:4px; }
.hero-product-title strong { font-size: 18px; }
.hero-product-title span, .hero-product-status, .chat-label, .hero-side-card__label { color: var(--text-muted); font-size: 13px; }
.hero-product-status { padding:8px 12px; border-radius:999px; background: rgba(110,231,183,.12); color:#9ce7c2; border:1px solid rgba(110,231,183,.18); text-transform: uppercase; letter-spacing:.06em; }
.hero-product-chat { display:grid; gap:12px; }
.chat-bubble { padding:16px 18px; border-radius:20px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); }
.chat-bubble.outgoing { margin-left: 52px; background: rgba(79,125,255,.14); }
.chat-bubble.success { border-color: rgba(110,231,183,.18); }
.chat-bubble p { margin:8px 0 0; line-height:1.5; color: var(--text-soft); }
.hero-product-sidebar { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px; }
.hero-side-card { padding:16px; border-radius:20px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); }
.hero-side-card strong { display:block; margin:8px 0; font-family:Manrope,Inter,sans-serif; font-size:28px; line-height:1; }
.hero-side-card p { margin:0; color: var(--text-muted); line-height:1.45; }
.hero-side-card--accent { background: linear-gradient(180deg, rgba(79,125,255,.18), rgba(255,255,255,.04)); }
.social-proof { margin-top: 24px; }
.social-proof-grid, .pain-grid, .feature-grid { gap: 18px; }
.proof-card, .pain-card, .feature-card, .review-proof-card { padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.06); }
.pain-card, .feature-card { transition: transform var(--motion), border-color var(--motion), background var(--motion), box-shadow var(--motion); }
.pain-card:hover, .feature-card:hover { transform: translateY(-4px); border-color: rgba(173,198,255,.2); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); }
.card-icon { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; margin-bottom:14px; border-radius:14px; background: rgba(173,198,255,.08); border:1px solid rgba(173,198,255,.14); }
.section-heading h2, .offer-content h2, .faq-title { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.02; }
.section-heading p { max-width: 760px; margin-inline:auto; color: var(--text-muted); }
.offer-block { margin-top: 34px; }
.section-card-inner { background: linear-gradient(180deg, rgba(18,22,31,.92), rgba(10,12,18,.98)); }
.offer-shell { display:grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: stretch; }
.offer-buttons { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.offer-button { min-height:56px; padding: 0 22px; font-weight: 800; border-radius:16px; }
.white-button { border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); color: var(--text-main); }
.offer-console { height:100%; padding:24px; border-radius:24px; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.06); display:grid; gap:18px; }
.offer-console__head { display:grid; gap:6px; }
.offer-console__head span, .offer-console__note { color: var(--text-muted); }
.offer-console__timeline { display:grid; gap:12px; }
.dashboard-line { display:flex; justify-content:space-between; gap:16px; padding:14px 16px; border-radius:16px; background: rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.06); color: var(--text-soft); }
.dashboard-line strong { color: var(--text-main); }
.dashboard-line.active { background: rgba(79,125,255,.14); border-color: rgba(173,198,255,.18); }
.step-number { width:56px; height:56px; border-radius:18px; font-size:22px; font-weight:800; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color:#06295f; box-shadow: 0 16px 32px rgba(79,125,255,.2); }
.step-heading { display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.timeline-item { padding:24px; border-radius:24px; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-cta { display:flex; justify-content:center; margin-top: 28px; }
.review-proof-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:18px; }
.review-proof-head, .review-proof-meta, .review-proof-person { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.review-proof-person { justify-content:flex-start; }
.review-avatar { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; background: rgba(173,198,255,.12); color: var(--primary); font-weight:800; background-size:cover; background-position:center; }
.review-proof-person strong { display:block; }
.review-proof-person span, .review-proof-meta { color: var(--text-muted); font-size: 14px; }
.review-proof-card p { color: var(--text-soft); line-height:1.6; }
.review-proof-meta { align-items:flex-start; justify-content:space-between; }
.review-proof-meta a { color: var(--primary); }
.review-proof-empty { max-width:720px; margin:0 auto; padding:24px; border-radius:24px; background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); text-align:center; color: var(--text-muted); }
.footer-grid--simple { display:flex; justify-content:space-between; align-items:center; gap:24px; padding: 24px 0 48px; }
.footer-links-simple { display:flex; flex-wrap:wrap; gap:18px; color: var(--text-muted); font-weight:600; }
.footer-links-simple a:hover { color: var(--text-main); }
@media (max-width: 980px) { .hero-layout, .offer-shell, .how-demo, .review-proof-grid { grid-template-columns: 1fr; } .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .hero-product-sidebar { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .site-header { background: rgba(13,14,18,.82); } .nav { display:none; position:absolute; top:72px; left:20px; right:20px; padding:16px; border-radius:20px; background:#11141c; border:1px solid rgba(255,255,255,.08); box-shadow: var(--card-shadow); } .nav.is-open { display:grid; gap:12px; } .burger { display:flex; } .header-actions { margin-left:auto; } .hero { padding-top: 42px; } .feature-grid, .pain-grid, .social-proof-grid { grid-template-columns: 1fr; } .footer-grid--simple { flex-direction:column; align-items:flex-start; } }
@media (max-width: 640px) { .container { width:min(var(--container), calc(100% - 24px)); } .header-actions { display:none; } .hero-title { font-size: 44px; } .btn-primary, .btn-secondary { width:100%; } .hero-mini-trust { flex-direction:column; } .chat-bubble.outgoing { margin-left: 18px; } .feature-grid { grid-template-columns: 1fr; } }
