:root {
  --ink: #102035;
  --navy: #0c233f;
  --blue: #2367d1;
  --blue-2: #7db8ff;
  --sky: #e9f3ff;
  --mint: #b9f2da;
  --mint-dark: #0c765a;
  --orange: #ff9e66;
  --cream: #fff8ed;
  --paper: #ffffff;
  --line: #c9d7e8;
  --muted: #5b6b7d;
  --shadow: 0 20px 60px rgba(16, 32, 53, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 68px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark p { color: #b9c8d8; }
.section-sky { background: var(--sky); }
.section-cream { background: var(--cream); }
.section-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 18px; color: var(--blue); font-size: .78rem;
  font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .section-kicker { color: var(--mint); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading p { max-width: 650px; font-size: 1.08rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px;
  border: 1px solid rgba(35, 103, 209, .25); background: rgba(255,255,255,.8);
  border-radius: 10px; color: var(--blue); font-weight: 700; font-size: .85rem;
  box-shadow: 0 8px 30px rgba(35,103,209,.08);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint-dark); box-shadow: 0 0 0 5px rgba(12,118,90,.12); }

.site-header {
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(201,215,232,.72);
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: var(--navy); color: #fff; font-family: "Manrope", sans-serif; font-weight: 800;
  box-shadow: inset -8px -8px 0 rgba(125,184,255,.22);
}
.brand-copy strong { display: block; font-family: "Manrope", sans-serif; letter-spacing: -.03em; }
.brand-copy span { display: block; color: var(--muted); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 5px; }
.desktop-nav a { padding: 10px 12px; border-radius: 9px; color: #34465b; font-size: .92rem; font-weight: 600; }
.desktop-nav a:hover { background: var(--sky); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.language-form { position: relative; }
.language-select {
  min-width: 76px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  padding: 9px 28px 9px 10px; color: var(--ink); font-size: .84rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 11px 18px; border: 1px solid transparent; border-radius: 11px;
  font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 28px rgba(35,103,209,.23); }
.btn-primary:hover { background: #174f9f; }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(12,35,63,.2); }
.btn-light { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-mint { background: var(--mint); color: #073f31; }
.btn-block { width: 100%; }
.mobile-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 11px;
  background: #fff; color: var(--ink);
}
.mobile-menu { display: none; }

.hero { padding: 92px 0 80px; background: linear-gradient(120deg, #fff 0%, #fff 56%, var(--sky) 56%, var(--sky) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 62px; align-items: center; }
.hero h1 { max-width: 760px; margin: 24px 0 24px; color: var(--navy); }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 650px; font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 24px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 26px; color: #45566a; font-size: .93rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: "✓"; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--mint); color: #084c3a; font-weight: 900; }

.product-stage { position: relative; min-height: 540px; }
.product-stage::before { content: ""; position: absolute; inset: 22px -30px -24px 32px; border-radius: 48% 52% 42% 58%; background: var(--orange); opacity: .55; transform: rotate(-5deg); }
.dashboard-mock {
  position: relative; z-index: 2; margin: 10px 0 0 10px; padding: 17px; border: 1px solid rgba(12,35,63,.14);
  border-radius: 28px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.5deg);
}
.mock-bar { display: flex; align-items: center; justify-content: space-between; padding: 3px 2px 17px; border-bottom: 1px solid #e7edf4; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: #dbe4ee; }
.mock-status { padding: 5px 9px; border-radius: 8px; background: #dff7ed; color: #10644f; font-size: .72rem; font-weight: 800; }
.mock-layout { display: grid; grid-template-columns: 112px 1fr; min-height: 400px; }
.mock-sidebar { padding: 18px 12px 12px 0; border-right: 1px solid #e7edf4; }
.mock-side-item { height: 31px; margin: 0 10px 8px 0; border-radius: 8px; background: #eef3f8; }
.mock-side-item.active { background: var(--navy); }
.mock-main { padding: 20px 0 0 18px; }
.mock-title { width: 45%; height: 16px; background: var(--navy); border-radius: 6px; margin-bottom: 18px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card { min-height: 80px; padding: 12px; border: 1px solid #dce5ef; border-radius: 12px; background: #fff; }
.mock-card i { display: block; width: 45%; height: 8px; background: #d7e1ec; border-radius: 5px; margin-bottom: 14px; }
.mock-card strong { font-size: 1.25rem; }
.mock-chat { margin-top: 13px; padding: 14px; border: 1px solid #dce5ef; border-radius: 14px; background: #f9fbfd; }
.bubble { width: fit-content; max-width: 86%; padding: 10px 12px; border-radius: 13px; font-size: .76rem; line-height: 1.4; }
.bubble-user { margin-left: auto; background: var(--blue); color: #fff; border-bottom-right-radius: 4px; }
.bubble-ai { margin-top: 9px; background: #fff; border: 1px solid #dce5ef; border-bottom-left-radius: 4px; color: #33465b; }
.floating-note {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1px solid rgba(16,32,53,.14); border-radius: 13px; background: #fff; box-shadow: 0 14px 30px rgba(16,32,53,.13);
  font-weight: 800; font-size: .84rem;
}
.floating-note.one { left: -25px; top: 50px; }
.floating-note.two { right: -32px; bottom: 55px; }
.float-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); }

.logo-strip { padding: 22px 0; border-block: 1px solid var(--line); background: #fff; }
.logo-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; overflow-x: auto; }
.logo-strip p { flex: 0 0 auto; margin: 0; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.platform-list { display: flex; align-items: center; gap: 28px; min-width: max-content; color: #53677e; font-weight: 800; }

.cards-3, .cards-4 { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -14px; color: #edf3f9; font-family: "Manrope", sans-serif; font-size: 6rem; font-weight: 800; line-height: 1; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 40px; border-radius: 13px; background: var(--sky); color: var(--blue); font-size: 1.25rem; font-weight: 900; }
.feature-card p { margin-bottom: 0; }

.video-frame {
  position: relative; min-height: 510px; display: grid; place-items: center; overflow: hidden;
  border: 1px solid rgba(255,255,255,.2); border-radius: 28px; background:
    linear-gradient(135deg, rgba(125,184,255,.28), transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 90px), #102f52;
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
}
.video-frame::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(185,242,218,.35); border-radius: 50%; }
.video-frame::after { content: ""; position: absolute; width: 470px; height: 470px; border: 1px solid rgba(125,184,255,.22); border-radius: 50%; }
.video-placeholder { position: relative; z-index: 2; text-align: center; padding: 30px; }
.play-button { width: 92px; height: 92px; display: grid; place-items: center; margin: 0 auto 22px; border: 0; border-radius: 24px; background: var(--mint); color: var(--navy); box-shadow: 0 16px 50px rgba(0,0,0,.25); font-size: 2rem; }
.video-placeholder h3 { margin-bottom: 8px; color: #fff; }
.video-placeholder p { color: #b9c8d8; }
.video-label { position: absolute; left: 22px; top: 22px; z-index: 2; padding: 7px 10px; border-radius: 8px; background: rgba(255,255,255,.1); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.workflow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; }
.workflow-step { position: relative; padding: 30px 18px 20px 0; }
.workflow-step:not(:last-child)::after { content: ""; position: absolute; top: 24px; right: 10px; width: calc(100% - 68px); border-top: 1px dashed #8da2b8; transform: translateX(50%); }
.step-number { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid var(--navy); border-radius: 50%; background: #fff; color: var(--navy); font-family: "Manrope", sans-serif; font-weight: 800; }
.workflow-step p { font-size: .95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #31465c; }
.check-list li::before { content: "✓"; flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: var(--mint); color: #07513d; font-weight: 900; }
.language-visual { position: relative; min-height: 440px; }
.globe {
  position: absolute; inset: 20px; border-radius: 50%; background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), var(--shadow);
}
.globe::before, .globe::after { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(125,184,255,.33); border-radius: 50%; }
.globe::after { inset: 0 38%; border-block: 0; }
.language-chip { position: absolute; z-index: 2; padding: 11px 14px; border: 1px solid var(--line); border-radius: 11px; background: #fff; box-shadow: 0 12px 28px rgba(16,32,53,.13); font-weight: 800; }
.language-chip:nth-child(2) { left: 0; top: 70px; }
.language-chip:nth-child(3) { right: 10px; top: 30px; }
.language-chip:nth-child(4) { right: -8px; bottom: 90px; }
.language-chip:nth-child(5) { left: 38px; bottom: 12px; }
.language-chip:nth-child(6) { left: 44%; top: 46%; background: var(--mint); border-color: transparent; }

.no-api-key-callout {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 18px 0 2px;
  padding: 12px 16px;
  border: 1px solid rgba(7, 81, 61, .20);
  border-radius: 14px;
  background: linear-gradient(135deg, #e8fff7 0%, #f7fffc 100%);
  color: #07513d;
  box-shadow: 0 12px 30px rgba(7, 81, 61, .10);
}
.no-api-key-callout__icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #07513d;
  color: #fff;
  font-weight: 900;
}
.no-api-key-callout strong {
  color: #063f31;
  font-size: 1.02rem;
  font-weight: 900;
}
.no-api-key-callout > span:last-child {
  color: #315c50;
  font-size: .92rem;
  font-weight: 700;
}

.integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.integration-card { display: flex; align-items: flex-start; gap: 16px; min-height: 146px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.integration-icon { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--navy); color: #fff; font-weight: 900; }
.integration-card h3 { margin: 3px 0 7px; font-size: 1.08rem; }
.integration-card p { margin: 0; font-size: .91rem; }
.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.platform-cloud span {
  padding: 12px 16px;
  border: 1px solid rgba(16,32,53,.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  color: var(--navy);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(16,32,53,.08);
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.plan-card { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.plan-card.featured { border: 2px solid var(--blue); box-shadow: 0 20px 50px rgba(35,103,209,.16); transform: translateY(-10px); }
.plan-badge { position: absolute; top: 14px; right: 14px; padding: 5px 8px; border-radius: 7px; background: var(--mint); color: #084936; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.plan-name { margin-bottom: 8px; font-size: 1.16rem; }
.plan-summary { min-height: 48px; font-size: .9rem; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 24px 0 3px; color: var(--navy); }
.plan-price strong { font-family: "Manrope", sans-serif; font-size: 2.55rem; letter-spacing: -.05em; }
.plan-price span { color: var(--muted); font-size: .84rem; }
.plan-limit { min-height: 44px; margin-bottom: 20px; color: var(--blue); font-size: .87rem; font-weight: 800; }
.plan-toggle { width: 100%; margin-top: 15px; padding: 10px 0 0; border: 0; border-top: 1px solid #e4ebf3; background: transparent; color: var(--blue); font-weight: 800; text-align: left; }
.plan-features { display: grid; gap: 10px; padding: 15px 0 0; margin: 0; list-style: none; font-size: .86rem; }
.plan-features.collapsed li:nth-child(n+7) { display: none; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; }
.plan-features li::before { content: "✓"; flex: 0 0 auto; color: var(--mint-dark); font-weight: 900; }
.pricing-note { margin-top: 28px; text-align: center; font-size: .9rem; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
.compare-table { width: 100%; min-width: 860px; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td { padding: 17px 18px; border-bottom: 1px solid #e3eaf2; text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 700; }
.compare-table th { background: #f4f8fc; color: var(--navy); font-family: "Manrope", sans-serif; }
.yes { color: var(--mint-dark); font-weight: 900; }
.dash { color: #9aaabc; }

.contact-card { display: grid; grid-template-columns: .78fr 1.22fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.contact-copy { padding: 48px; background: var(--navy); color: #fff; }
.contact-copy p { color: #b9c8d8; }
.contact-copy a { color: var(--mint); font-weight: 800; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 48px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #34485e; font-size: .84rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: #fff; padding: 12px 13px; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; font-size: .78rem; }
.form-status { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--mint-dark); font-size: .86rem; font-weight: 700; }

.page-hero { padding: 90px 0 74px; background: var(--navy); color: #fff; }
.page-hero .section-kicker { color: var(--mint); }
.page-hero h1 { max-width: 910px; margin-bottom: 22px; font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero p { max-width: 730px; color: #bfd0df; font-size: 1.15rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.feature-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 44px 0; border-bottom: 1px solid var(--line); }
.feature-band:last-child { border-bottom: 0; }
.feature-band h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.feature-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-feature { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.mini-feature h3 { margin-bottom: 7px; font-size: 1rem; letter-spacing: -.02em; }
.mini-feature p { margin: 0; font-size: .88rem; }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { padding: 18px 20px; cursor: pointer; font-family: "Manrope", sans-serif; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 20px 18px; margin: 0; }

.site-footer { padding: 65px 0 28px; background: #07182b; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; }
.footer-copy { max-width: 390px; color: #9fb2c6; }
.footer-col h3 { margin-bottom: 16px; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; color: #aebed0; font-size: .9rem; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8196aa; font-size: .8rem; }

@media (max-width: 1060px) {
  .desktop-nav, .nav-actions .login-link { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .mobile-menu {
    position: fixed; inset: 78px 0 auto; z-index: 40; display: none; padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow);
  }
  .mobile-menu.active { display: grid; }
  .mobile-menu a { padding: 12px; border-bottom: 1px solid #edf1f6; font-weight: 700; }
  .mobile-menu .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 16px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--sky) 55%); }
  .product-stage { max-width: 720px; }
  .cards-4, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .workflow { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .workflow-step { padding-right: 0; }
  .workflow-step::after { display: none !important; }
  .integration-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 70px; gap: 10px; }
  .brand-copy span { display: none; }
  .brand-mark { width: 39px; height: 39px; }
  .language-select { min-width: 68px; }
  .mobile-menu { top: 70px; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .hero-actions .btn { width: 100%; }
  .product-stage { min-height: 410px; }
  .mock-layout { grid-template-columns: 78px 1fr; min-height: 310px; }
  .mock-main { padding-left: 12px; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .mock-card:last-child { display: none; }
  .floating-note.one { left: 0; top: -5px; }
  .floating-note.two { right: 0; bottom: 0; }
  .cards-3, .cards-4, .pricing-grid, .integration-grid, .feature-list-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .workflow { grid-template-columns: 1fr; }
  .workflow-step::after { display: none !important; }
  .video-frame { min-height: 390px; }
  .language-visual { min-height: 350px; }
  .contact-copy, .contact-form { padding: 30px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full, .form-note, .form-status { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Feature demonstration video library */
.feature-video-library .section-heading {
  max-width: 760px;
}

.feature-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.feature-video-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 24px 55px rgba(0,0,0,.18);
}

/* Use a tall portrait frame so the complete chatbot recording remains readable inside each card. */
.feature-video-media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 45 / 64;
  place-items: center;
  overflow: hidden;
  background: #f7fafc;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.feature-video-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}

/* A clear play control remains visible over the poster until playback begins. */
.feature-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(8,26,46,.92);
  box-shadow: 0 12px 35px rgba(0,0,0,.38);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.feature-video-play:hover,
.feature-video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
  background: #14b88a;
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}

.feature-video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.feature-video-media.is-playing .feature-video-play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.feature-video-copy {
  position: relative;
  flex: 1 1 auto;
  min-height: 176px;
  padding: 24px;
}

.feature-video-copy h3 {
  margin: 0 0 9px;
  padding-right: 44px;
  color: #fff;
  font-size: 1.2rem;
}

.feature-video-copy p {
  margin: 0;
  color: #b9c8d8;
  font-size: .94rem;
}

.feature-video-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

@media (max-width: 980px) {
  .feature-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .feature-video-grid {
    grid-template-columns: 1fr;
  }

  .feature-video-copy {
    min-height: 0;
  }

  .feature-video-play {
    min-height: 50px;
    padding: 0 17px;
  }
}
