@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #f8faf7;
  --bg-alt: #f3f7f4;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: #ffffff;
  --surface-dark: #121212;
  --text: #0f172a;
  --text-soft: #475569;
  --text-dim: #64748b;
  --line: rgba(45, 47, 52, 0.24);
  --line-strong: rgba(45, 47, 52, 0.45);
  --green: #18d677;
  --green-deep: #0f8a4f;
  --green-ink: #1b5a43;
  --blue: #4f8cff;
  --purple: #7b61ff;
  --gold: #f6c84b;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-card: 0 34px 76px -34px rgba(31, 35, 40, 0.58), 0 14px 26px -16px rgba(31, 35, 40, 0.3), inset 0 1.5px 0 rgba(255, 255, 255, 0.92), inset 0 -2px 6px rgba(45, 47, 52, 0.12);
  --shadow-soft: 0 16px 28px -16px rgba(31, 35, 40, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --shadow-btn: 0 14px 24px -14px rgba(18, 190, 102, 0.78);
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.landing-page {
  background: var(--bg);
}

.section-shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 80px;
}

.section-shell--anchored {
  scroll-margin-top: 120px;
}

.section-center,
.section-head {
  max-width: 900px;
  margin: 0 auto 24px;
}

.section-head--center {
  text-align: center;
}

.section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-badge,
.eyebrow-pill,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(45, 47, 52, 0.42);
  border-radius: 999px;
  background: linear-gradient(to bottom, #fff, #f2f7f3);
  color: #1f5a44;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  box-shadow: 0 16px 30px -16px rgba(45, 47, 52, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.section-caption {
  margin: 10px 0 0;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
.hero__title {
  margin: 14px 0 0;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
}

.section-text,
.hero__subtitle,
.metric-card__text,
.price-card p,
.timeline-card p,
.blog-card p,
.faq-item__body p,
.site-footer__brand p,
.cta-panel__note {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: start;
  padding-top: 42px;
}

.hero__content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow-pill {
  margin: 0 auto 20px;
}

.eyebrow-pill__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(to bottom, #22de81, #0ccb6b);
  color: #04351d;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero__title {
  font-size: clamp(40px, 5.2vw, 72px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero__actions--center {
  margin-top: 30px;
}

.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 14px;
  line-height: 1.4;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--xl {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  border-color: var(--green);
  background: linear-gradient(to bottom, #33d082, #12be66);
  color: white;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--primary:hover {
  background: linear-gradient(to bottom, #2bc176, #10af5f);
  box-shadow: 0 18px 28px -14px rgba(18, 190, 102, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--secondary {
  border-color: rgba(45, 47, 52, 0.35);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
  color: #1f2328;
  box-shadow: 0 10px 18px -14px rgba(31, 35, 40, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.btn--ghost {
  border-color: rgba(45, 47, 52, 0.35);
  background: transparent;
  color: var(--text);
}

.btn--logout {
  border-color: rgba(239, 68, 68, 0.35);
  background: transparent;
  color: #ef4444;
}

.btn__arrow {
  font-size: 18px;
  line-height: 1;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 47, 52, 0.08);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-brand__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-brand__text {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.site-nav {
  flex: 1;
}

.site-nav__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.site-nav__link {
  position: relative;
  color: var(--text);
  font-weight: 600;
  padding: 6px 0;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav__link:hover::after {
  width: 70%;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 47, 52, 0.18);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.site-header__toggle span + span {
  margin-top: 5px;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 47, 52, 0.25);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 180ms ease;
}

.lang-switcher__trigger:hover {
  border-color: rgba(45, 47, 52, 0.45);
  background: rgba(255, 255, 255, 0.8);
}

.lang-switcher__trigger svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.lang-switcher__chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 200ms ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  padding: 6px;
  border-radius: 16px;
  border: 1.5px solid rgba(45, 47, 52, 0.2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px -12px rgba(31, 35, 40, 0.35), 0 8px 16px -8px rgba(31, 35, 40, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.lang-switcher.is-open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 140ms ease;
}

.lang-switcher__option:hover {
  background: rgba(24, 214, 119, 0.08);
}

.lang-switcher__option.is-current {
  background: rgba(24, 214, 119, 0.12);
  color: var(--green-deep);
  pointer-events: none;
}

.lang-switcher__option.is-current::after {
  content: "✓";
  margin-left: auto;
  font-size: 13px;
  color: var(--green);
}

.lang-switcher__flag {
  font-size: 18px;
  line-height: 1;
}

/* ========================================
   PANELS & CARDS (shared)
   ======================================== */

.hero__panel {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.hero-demo,
.panel,
.feature-card,
.price-card,
.timeline-card,
.soft-card,
.metric-card,
.blog-card,
.faq-item,
.cta-panel,
.tabs,
.tabs__panel,
.visual {
  border: 2px solid rgba(45, 47, 52, 0.35);
  border-radius: var(--radius-xl);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
  box-shadow: var(--shadow-card);
}

.hero-demo {
  padding: 24px;
  min-height: 560px;
}

.hero-demo__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100%;
}

.hero-demo__card,
.panel__metrics,
.features-grid,
.pricing-grid,
.faq-list,
.blog-grid,
.timeline,
.feature-strip,
.grid-2 {
  display: grid;
  gap: 14px;
}

.hero-demo__card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 22px;
  border: 2px solid rgba(45, 47, 52, 0.26);
  background: linear-gradient(to bottom, rgba(255,255,255,0.72), rgba(255,255,255,0.32));
}

.hero-stack,
.pipeline-grid,
.tabs__panel,
.feature-card__body,
.price-card,
.cta-panel {
  display: flex;
  flex-direction: column;
}

.hero-stack {
  gap: 12px;
  flex: 1;
}

.status-pill,
.offer-card,
.lead-item,
.reply-card,
.typing-card,
.pipeline-lead,
.section-chip,
.summary-line,
.metric-card__kicker,
.price-card__price,
.timeline-num,
.tabs__button,
.tabs__copy h3,
.visual__card p,
.visual__col p,
.visual__tags span,
.visual__rows span,
.faq-item summary,
.blog-card h3 {
  font-weight: 700;
}

/* ========================================
   SCROLL REVEAL ANIMATION
   ======================================== */

.step-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-reveal:nth-child(2) { transition-delay: 80ms; }
.step-reveal:nth-child(3) { transition-delay: 160ms; }
.step-reveal:nth-child(4) { transition-delay: 240ms; }
.step-reveal:nth-child(5) { transition-delay: 320ms; }

.status-pill,
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 47, 52, 0.24);
  background: rgba(24, 214, 119, 0.08);
  color: var(--green-ink);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.offer-card,
.lead-item,
.reply-card,
.typing-card,
.pipeline-lead,
.soft-card,
.metric-card,
.price-card,
.timeline-card,
.blog-card,
.faq-item,
.visual__card,
.visual__col {
  border-radius: 16px;
  border: 1px solid rgba(45, 47, 52, 0.2);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 14px -12px rgba(31, 35, 40, 0.28);
}

.offer-card,
.lead-item,
.reply-card,
.typing-card,
.pipeline-lead,
.soft-card {
  padding: 12px 14px;
  font-size: 14px;
  color: #1f2328;
}

.lead-list,
.pipeline-grid,
.visual__targets,
.visual__rows {
  display: grid;
  gap: 10px;
}

.hero-demo__grid .summary-line,
.cta-panel__note {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: #365649;
}

.hero-demo__grid .mini-kicker {
  margin-bottom: 12px;
}

.pipeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
}

.pipeline-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(45, 47, 52, 0.18);
  background: rgba(255, 255, 255, 0.28);
}

.pipeline-col__title {
  margin: 0;
  color: #1f5a44;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pipeline-lead {
  background: rgba(24, 214, 119, 0.1);
  color: #1b5a43;
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  padding: 22px 0 14px;
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 28s linear infinite;
}

.brand-marquee__item {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  opacity: 0.95;
}

.brand-marquee__logo-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.55);
}

.brand-marquee__logo-wrap img {
  width: auto;
  max-width: 140px;
  height: 28px;
  object-fit: contain;
}

.panel {
  padding: 32px;
}

.panel--split {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.8fr;
}

.panel__metrics {
  align-content: start;
}

.metric-card {
  padding: 24px;
}

.metric-card__kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.metric-card__value,
.price-card__price {
  margin-top: 10px;
  font-size: 42px;
  line-height: 1;
  color: #000;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  grid-column: span 2;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(31, 35, 40, 0.5), 0 18px 30px -16px rgba(31, 35, 40, 0.25), inset 0 1.5px 0 rgba(255, 255, 255, 0.92);
}

.feature-card--wide {
  grid-column: span 4;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}

.feature-card--full {
  grid-column: span 6;
}

@media (min-width: 1025px) {
  .feature-card--full {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
  }
  .feature-card--full .feature-icon-wrapper {
    margin-bottom: 0;
  }
}

.chat-visual,
.visual {
  padding: 16px;
}

.chat-visual {
  border-radius: 18px;
  border: 1px solid rgba(45, 47, 52, 0.18);
  background: rgba(255, 255, 255, 0.34);
  display: grid;
  gap: 12px;
  min-width: 0;
}

.feature-card__body {
  min-width: 0;
}

.bubble {
  max-width: 75%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #0f172a;
}

.bubble--right {
  margin-left: auto;
  border-top-right-radius: 4px;
  background: #c8ead3;
}

.bubble--left {
  border-top-left-radius: 4px;
  background: #d0e5d8;
}

.bubble--status {
  width: fit-content;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #e2ebe5;
  font-size: 11px;
}

.timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-card {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 70px -30px rgba(31, 35, 40, 0.45), inset 0 1.5px 0 rgba(255, 255, 255, 0.92);
}

.timeline-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0f4f31;
  background: linear-gradient(to bottom, #7af5ad, #18d677);
  box-shadow: 0 10px 18px -12px rgba(24, 214, 119, 0.52);
}

.tabs {
  padding: 8px;
}

.tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tabs__button {
  border: 0;
  border-radius: 18px;
  padding: 14px 18px;
  background: transparent;
  color: rgba(45, 47, 52, 0.6);
  cursor: pointer;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  transition: all 180ms ease;
}

.tabs__button.is-active {
  background: linear-gradient(to bottom, #f8fcfa, #ddebe4);
  color: #1f2328;
  box-shadow: 0 14px 22px -12px rgba(31, 35, 40, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.tabs__panel {
  display: none;
  gap: 24px;
  grid-template-columns: 1fr 1.2fr;
  padding: 24px;
  margin-top: 18px;
}

.tabs__panel.is-active {
  display: grid;
}

.tabs__copy h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.tabs__copy p {
  color: var(--text-soft);
  line-height: 1.8;
}

.visual {
  display: grid;
  gap: 12px;
}

.visual__card,
.visual__col {
  padding: 14px;
}

.visual__card--blue {
  background: #dde8ff;
}

.visual__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
}

.visual__flow {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, #3c6fd9, #18d677, #c95f93);
}

.visual__targets {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual__col p,
.visual__card p {
  margin: 0 0 10px;
  color: #1f2328;
}

.visual__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual__tags span,
.visual__rows span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.48);
}

.visual__rows div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(231, 239, 233, 0.92);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.price-card .btn {
  margin-top: auto;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(31, 35, 40, 0.5), inset 0 1.5px 0 rgba(255, 255, 255, 0.92);
}

.price-card--featured {
  border-color: rgba(24, 214, 119, 0.5);
}

.price-card--enterprise {
  border-color: rgba(24, 214, 119, 0.38);
}

.price-card h3,
.feature-card h3,
.timeline-card h3,
.blog-card h3,
.faq-item summary {
  margin: 0;
  color: var(--text);
  line-height: 1.25;
}

.price-card p,
.feature-card p,
.timeline-card p,
.blog-card p,
.faq-item__body p {
  margin: 0;
}

.price-card__price {
  color: #18a45e;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-item {
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item:hover {
  border-color: rgba(24, 214, 119, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 140ms ease;
}

.faq-item summary:hover {
  background: rgba(24, 214, 119, 0.04);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(24, 214, 119, 0.1);
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 600;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(24, 214, 119, 0.2);
}

.faq-item__body {
  padding: 0 20px 20px;
}

/* ========================================
   BLOG SECTION — REDESIGNED
   ======================================== */

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  padding: 0;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 80px -30px rgba(31, 35, 40, 0.55), 0 18px 30px -16px rgba(31, 35, 40, 0.25), inset 0 1.5px 0 rgba(255, 255, 255, 0.92);
}

.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card__thumb {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #a5d6a7);
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.06);
}

.blog-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 60%);
  pointer-events: none;
}

.blog-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);
}

.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-dim);
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--text);
  transition: color 180ms ease;
}

.blog-card:hover h3 {
  color: var(--green-deep);
}

.blog-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
  flex: 1;
}

.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  transition: gap 180ms ease;
}

.blog-card:hover .blog-card__readmore {
  gap: 10px;
}

.blog-card--empty {
  padding: 24px;
}

.blog-card--empty .blog-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card--empty .blog-card__thumb svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  color: var(--green-deep);
}

/* ========================================
   SINGLE POST — BLOG TEMPLATE
   ======================================== */

.single-post-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 120px;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.single-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 47, 52, 0.2);
  background: rgba(255, 255, 255, 0.5);
  transition: all 180ms ease;
}

.single-post__back:hover {
  background: rgba(24, 214, 119, 0.08);
  border-color: rgba(24, 214, 119, 0.3);
}

.single-post__hero-img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  border: 2px solid rgba(45, 47, 52, 0.2);
  box-shadow: var(--shadow-card);
}

.single-post__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.single-post__category {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(24, 214, 119, 0.1);
  color: var(--green-deep);
  border: 1px solid rgba(24, 214, 119, 0.2);
}

.single-post__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

.single-post__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 32px;
}

.single-post__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-soft);
}

.single-post__content h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 48px 0 16px;
}

.single-post__content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}

.single-post__content p {
  margin: 0 0 20px;
}

.single-post__content a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(24, 214, 119, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 180ms ease;
}

.single-post__content a:hover {
  text-decoration-color: var(--green);
}

.single-post__content img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
  border: 2px solid rgba(45, 47, 52, 0.15);
}

.single-post__content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(24, 214, 119, 0.05);
  font-style: italic;
  color: var(--text);
}

.single-post__content ul,
.single-post__content ol {
  padding-left: 24px;
  margin: 16px 0;
}

.single-post__content li {
  margin-bottom: 8px;
}

.single-post__content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 24px 0;
}

.single-post__content code {
  background: rgba(45, 47, 52, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9em;
}

.single-post__content pre code {
  background: none;
  padding: 0;
}

.single-post__author {
  margin-top: 48px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(45, 47, 52, 0.2);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-post__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7af5ad, #18d677);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
  color: #04351d;
  flex-shrink: 0;
}

.single-post__author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.single-post__author-bio {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}

/* ========================================
   FOOTER LANGUAGE LINKS
   ======================================== */

.footer-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(205, 216, 209, 0.6);
}

.footer-langs__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  margin-right: 4px;
}

.footer-langs a {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 160ms ease;
}

.footer-langs a:hover {
  background: rgba(24, 214, 119, 0.08);
  border-color: rgba(24, 214, 119, 0.2);
  color: var(--green-deep);
}

.footer-langs a.is-current {
  background: rgba(24, 214, 119, 0.1);
  border-color: rgba(24, 214, 119, 0.25);
  color: var(--green-deep);
}

.footer-langs__sep {
  width: 1px;
  height: 14px;
  background: rgba(45, 47, 52, 0.15);
}

/* ========================================
   SECTION LINK
   ======================================== */

.section-link {
  color: #0f6b3a;
  font-weight: 700;
}

/* ========================================
   CTA PANEL
   ======================================== */

.cta-panel {
  padding: 44px 22px 30px;
  text-align: center;
  align-items: center;
  border-top: 1px solid rgba(45, 47, 52, 0.12);
  border-bottom: 1px solid rgba(45, 47, 52, 0.12);
}

/* ========================================
   FEATURE ICON WRAPPER
   ======================================== */

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--bg-alt);
  padding: 0 16px 48px;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(210, 221, 213, 1);
  background: linear-gradient(to bottom, #fff, #f8fbf9, #f1f6f3);
  box-shadow: var(--shadow-card);
}

.site-footer__top {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.45fr 1fr;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.site-footer__cols h4 {
  margin: 0 0 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64706a;
}

.site-footer__cols a {
  display: block;
  margin: 0 0 12px;
  color: #334155;
  font-weight: 600;
}

.site-footer__powered {
  margin-top: 18px;
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(205, 216, 209, 1);
  color: #4f6259;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */

@media (max-width: 1024px) {
  .site-header__toggle {
    display: inline-grid;
    align-content: center;
  }

  .site-nav,
  .site-actions {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .site-actions {
    display: flex;
  }

  .site-header.is-open .lang-switcher {
    display: block;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    order: 4;
    flex-basis: 100%;
  }

  .site-header.is-open .site-actions {
    order: 5;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .site-nav__links {
    justify-content: flex-start;
    padding-top: 10px;
    flex-direction: column;
    gap: 16px;
  }

  .hero-demo__grid,
  .panel--split,
  .feature-card--wide,
  .tabs__panel,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    grid-column: span 1;
  }

  .feature-card--wide,
  .feature-card--full {
    grid-column: span 2;
  }

  .pricing-grid,
  .blog-grid,
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .section-head--split {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-shell {
    padding-bottom: 64px;
  }

  .hero-demo {
    min-height: auto;
    padding: 16px;
  }

  .hero-demo__grid {
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--full {
    grid-column: span 1;
  }

  .pricing-grid,
  .blog-grid,
  .feature-strip,
  .grid-2,
  .pipeline-grid,
  .visual__targets,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .panel,
  .price-card,
  .feature-card,
  .timeline-card,
  .blog-card,
  .cta-panel {
    padding: 20px;
  }

  .blog-card {
    padding: 0;
  }

  .tabs__nav {
    grid-template-columns: 1fr;
  }

  .tabs__panel {
    padding: 18px;
  }

  .site-footer__inner {
    padding: 18px;
  }

  .single-post__hero-img {
    height: 220px;
  }

  .single-post__content {
    font-size: 16px;
  }
}

/* ========================================
   RESPONSIVE — MOBILE HEADER
   ======================================== */

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__inner {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .site-brand__text {
    font-size: 24px;
    line-height: 1;
  }

  .site-header__toggle {
    display: inline-grid;
    align-content: center;
    flex: 0 0 auto;
  }

  .site-nav,
  .site-actions,
  .lang-switcher {
    display: none;
    width: 100%;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .site-actions {
    display: block;
  }

  .site-header.is-open .lang-switcher {
    display: block;
    order: 6;
    margin-top: 8px;
  }

  .site-header.is-open .lang-switcher .lang-switcher__dropdown {
    display: none;
  }

  .site-header.is-open .lang-switcher.is-open .lang-switcher__dropdown {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(45, 47, 52, 0.15);
    margin-top: 8px;
  }

  .site-header.is-open .site-nav {
    order: 3;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(45, 47, 52, 0.12);
  }

  .site-header.is-open .site-actions {
    order: 4;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(45, 47, 52, 0.12);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-content: start;
  }

  .site-nav__link {
    padding: 10px 0;
    font-size: 15px;
  }

  .site-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 12px 14px;
  }

  .site-brand__text {
    font-size: 22px;
  }

  .site-header__toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .site-actions .btn {
    min-height: 44px;
    font-size: 14px;
  }
}

/* ========================================
   DARK MODE
   ======================================== */

@media (prefers-color-scheme: dark) {
  body {
    background: #0a0a0a;
    color: #f3f4f6;
  }

  .site-header,
  .landing-page,
  .site-footer {
    background: #0a0a0a;
  }

  .section-badge,
  .eyebrow-pill,
  .mini-kicker {
    background: rgba(24, 214, 119, 0.15);
    border-color: rgba(24, 214, 119, 0.25);
    color: #7af5ad;
    box-shadow: none;
  }

  .site-nav__link,
  .section-title,
  .hero__title,
  .feature-card h3,
  .timeline-card h3,
  .blog-card h3,
  .faq-item summary,
  .price-card h3,
  .site-brand__text {
    color: #f8fafc;
  }

  .section-text,
  .hero__subtitle,
  .metric-card__text,
  .price-card p,
  .timeline-card p,
  .blog-card p,
  .faq-item__body p,
  .site-footer__brand p,
  .cta-panel__note,
  .section-caption {
    color: #cbd5e1;
  }

  .hero-demo,
  .panel,
  .feature-card,
  .price-card,
  .timeline-card,
  .soft-card,
  .metric-card,
  .blog-card,
  .faq-item,
  .cta-panel,
  .tabs,
  .tabs__panel,
  .visual,
  .hero-demo__card,
  .pipeline-col {
    background: linear-gradient(to bottom, #171717, #121212);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 44px -24px rgba(0, 0, 0, 0.8);
  }

  .site-header {
    background: rgba(10, 10, 10, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .site-nav__link,
  .btn--ghost,
  .site-brand__text {
    color: #f8fafc;
  }

  .site-header__toggle {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
  }

  .site-header__toggle span {
    background: #f8fafc;
  }

  .site-actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
  }

  .site-footer {
    background: #090d16;
  }

  .site-footer__inner {
    background: linear-gradient(to bottom, #111827, #0f172a);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 44px -24px rgba(0, 0, 0, 0.8);
  }

  .site-footer__brand p,
  .site-footer__powered,
  .site-footer__bottom,
  .site-footer__cols h4,
  .site-footer__cols a {
    color: #cbd5e1;
  }

  .site-footer__cols a:hover,
  .site-footer__powered a:hover {
    color: #ffffff;
  }

  .site-footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .site-nav {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  /* Dark mode language switcher */
  .lang-switcher__trigger {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
  }

  .lang-switcher__trigger:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
  }

  .lang-switcher__dropdown {
    background: rgba(23, 23, 23, 0.95);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  }

  .lang-switcher__option {
    color: #f8fafc;
  }

  .lang-switcher__option:hover {
    background: rgba(24, 214, 119, 0.1);
  }

  .lang-switcher__option.is-current {
    background: rgba(24, 214, 119, 0.15);
    color: #7af5ad;
  }

  /* Dark mode blog cards */
  .blog-card__thumb {
    background: linear-gradient(135deg, #0f2e1f, #1a3a2a, #0d3320);
  }

  .blog-card__category {
    background: rgba(23, 23, 23, 0.92);
    color: #7af5ad;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .blog-card__meta {
    color: #94a3b8;
  }

  .blog-card:hover h3 {
    color: #7af5ad;
  }

  .blog-card__readmore {
    color: #7af5ad;
  }

  /* Dark mode single post */
  .single-post__back {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #7af5ad;
  }

  .single-post__back:hover {
    background: rgba(24, 214, 119, 0.1);
  }

  .single-post__title {
    color: #f8fafc;
  }

  .single-post__content {
    color: #cbd5e1;
  }

  .single-post__content h2,
  .single-post__content h3 {
    color: #f8fafc;
  }

  .single-post__content a {
    color: #7af5ad;
  }

  .single-post__content blockquote {
    background: rgba(24, 214, 119, 0.06);
    color: #f8fafc;
  }

  .single-post__author {
    background: linear-gradient(to bottom, #171717, #121212);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .single-post__author-name {
    color: #f8fafc;
  }

  .single-post__author-bio {
    color: #cbd5e1;
  }

  /* Dark mode footer langs */
  .footer-langs a {
    color: #cbd5e1;
  }

  .footer-langs a:hover {
    background: rgba(24, 214, 119, 0.1);
    color: #7af5ad;
  }

  .footer-langs a.is-current {
    background: rgba(24, 214, 119, 0.12);
    color: #7af5ad;
  }

  .footer-langs__sep {
    background: rgba(255, 255, 255, 0.1);
  }

  .footer-langs__label {
    color: #94a3b8;
  }

  /* Dark mode FAQ */
  .faq-item:hover {
    border-color: rgba(122, 245, 173, 0.3);
  }

  .faq-item summary::after {
    background: rgba(122, 245, 173, 0.1);
    color: #7af5ad;
  }

  .faq-item[open] summary::after {
    background: rgba(122, 245, 173, 0.18);
  }

  .faq-item summary:hover {
    background: rgba(122, 245, 173, 0.04);
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .site-actions {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .site-nav__link,
  .site-brand__text {
    color: #f8fafc;
  }

  .site-actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    color: #f8fafc;
  }

  .offer-card,
  .lead-item,
  .reply-card,
  .typing-card,
  .pipeline-lead,
  .soft-card,
  .pipeline-col__title {
    color: #cbd5e1;
  }

  .metric-card__value {
    color: #ffffff;
  }

  .price-card__price {
    color: #7af5ad;
  }
}
