:root {
  --bg: #07111f;
  --bg-soft: #0c1a2c;
  --bg-card: #10243b;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #0a1626;
  --muted: #617086;
  --white: #ffffff;
  --line: #dfe7ef;
  --accent: #2dd4bf;
  --accent-dark: #14b8a6;
  --blue: #38bdf8;
  --violet: #8b5cf6;
  --shadow: 0 24px 70px rgba(4, 16, 34, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 9999;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #04111b;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  color: white;
  font-size: 0.98rem;
}

.brand-copy small {
  color: #91a4ba;
  margin-top: 4px;
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: #c6d2df;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: white;
}

.main-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: #05201d;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  display: block;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, rgba(56, 189, 248, 0.16), transparent 34%),
    radial-gradient(circle at 25% 80%, rgba(45, 212, 191, 0.11), transparent 30%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 80px;
  align-items: center;
  padding: 105px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.hero .eyebrow,
.dark-section .eyebrow,
.final-cta .eyebrow {
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: #7ee7db;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b9c7d5;
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #04201d;
  box-shadow: 0 14px 35px rgba(45, 212, 191, 0.2);
}

.button-primary:hover {
  background: #5eead4;
}

.button-secondary {
  color: #132338;
  background: white;
  border: 1px solid var(--line);
}

.hero .button-secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: white;
}

.button-light {
  background: white;
  color: #0b1d30;
}

.button.full {
  width: 100%;
}

.hero-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #9eafc1;
  font-size: 0.86rem;
  font-weight: 600;
}

.chat-demo {
  position: relative;
}

.chat-window {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  background: white;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
}

.chat-topbar {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8edf3;
}

.bot-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  font-weight: 900;
  font-size: 0.75rem;
}

.chat-topbar strong,
.chat-topbar span {
  display: block;
}

.chat-topbar strong {
  font-size: 0.92rem;
}

.chat-topbar span {
  color: #607188;
  font-size: 0.72rem;
  margin-top: 2px;
}

.chat-topbar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-body {
  padding: 22px;
  min-height: 380px;
  background: #f6f8fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 82%;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.5;
}

.message.bot {
  align-self: flex-start;
  background: white;
  border-bottom-left-radius: 5px;
  box-shadow: 0 5px 15px rgba(14, 29, 51, 0.06);
}

.message.customer {
  align-self: flex-end;
  background: #0c2540;
  color: white;
  border-bottom-right-radius: 5px;
}

.lead-created {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ecfdf9;
  border-top: 1px solid #d8f5ec;
}

.lead-created span.lead-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #043029;
  font-weight: 900;
}

.lead-created strong,
.lead-created small {
  display: block;
}

.lead-created strong {
  font-size: 0.82rem;
}

.lead-created small {
  color: #607188;
  margin-top: 2px;
  font-size: 0.69rem;
}

.floating-card {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(15, 36, 59, 0.96);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  color: white;
}

.floating-card span {
  font-size: 1.35rem;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 0.76rem;
}

.floating-card small {
  color: #8fa4b8;
  font-size: 0.64rem;
}

.floating-one {
  left: -58px;
  top: 115px;
}

.floating-two {
  right: -32px;
  bottom: 92px;
}

.trust-strip {
  background: #0b192a;
  color: white;
  border-top: 1px solid rgba(255,255,255,.07);
}

.trust-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 30px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.trust-grid div:first-child {
  border-left: 1px solid rgba(255,255,255,.08);
}

.trust-grid strong {
  color: var(--accent);
  font-size: 1.4rem;
}

.trust-grid span {
  color: #8fa3b8;
  margin-top: 3px;
  font-size: 0.77rem;
}

.section {
  padding: 110px 0;
}

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

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.large-copy p {
  margin: 0 0 24px;
  color: #546579;
  font-size: 1.17rem;
  line-height: 1.85;
}

.dark-section {
  background: var(--bg);
  color: white;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 20px 0 0;
  color: #66768a;
  font-size: 1.04rem;
}

.dark-section .section-heading p:last-child {
  color: #9baec0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255,255,255,.18);
  font-size: 1.8rem;
  font-weight: 900;
}

.step-icon,
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(45, 212, 191, .12);
  font-size: 1.25rem;
}

.step-card h3,
.feature-card h3,
.industry-grid h3 {
  margin: 24px 0 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.step-card p {
  margin: 0;
  color: #95a8bb;
  font-size: 0.92rem;
}

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

.feature-card {
  min-height: 275px;
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid #e8eef5;
  border-radius: var(--radius-md);
}

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

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.dashboard-section {
  background: #eef3f8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}

.dashboard-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  font-weight: 700;
}

.check-list span {
  margin-right: 10px;
  color: #0d7569;
}

.dashboard-mock {
  padding: 25px;
  border-radius: 24px;
  background: #0d1e32;
  color: white;
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 2px 22px;
}

.dashboard-top strong,
.dashboard-top small {
  display: block;
}

.dashboard-top small {
  color: #8ea2b7;
  margin-top: 3px;
}

.status-pill {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45,212,191,.13);
  color: #73eadc;
  font-size: 0.72rem;
  font-weight: 700;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.stats-row div {
  padding: 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.055);
}

.stats-row small,
.stats-row strong {
  display: block;
}

.stats-row small {
  color: #90a4b9;
  font-size: 0.7rem;
}

.stats-row strong {
  margin-top: 3px;
  font-size: 1.4rem;
}

.lead-row {
  margin-top: 9px;
  padding: 13px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 13px;
  background: white;
  color: var(--text);
}

.lead-avatar {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eef7;
  color: #38506b;
  font-size: 0.7rem;
  font-weight: 800;
}

.lead-row strong,
.lead-row small {
  display: block;
}

.lead-row strong {
  font-size: 0.79rem;
}

.lead-row small {
  color: #758397;
  margin-top: 2px;
  font-size: 0.66rem;
}

.lead-status {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 800;
}

.lead-status.new {
  background: #dcfce7;
  color: #166534;
}

.lead-status.contacted {
  background: #e0f2fe;
  color: #075985;
}

.lead-status.scheduled {
  background: #ede9fe;
  color: #5b21b6;
}

.industries-section {
  background: white;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.industry-grid article > span {
  font-size: 1.75rem;
}

.industry-grid h3 {
  margin-top: 14px;
}

.industry-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.pricing-section {
  background: var(--surface-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 35px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(12, 34, 59, 0.05);
}

.price-card.featured {
  border: 2px solid var(--accent-dark);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: #05231f;
  font-size: 0.67rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-label {
  color: #718095;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price-card h3 {
  margin: 8px 0 15px;
  font-size: 2.65rem;
  letter-spacing: -0.05em;
}

.price-card h3 span {
  color: #7a8798;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-intro {
  min-height: 80px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  min-height: 200px;
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d8a79;
  font-weight: 900;
}

.pricing-note {
  text-align: center;
  color: #7a8796;
  font-size: 0.78rem;
  margin-top: 25px;
}

.website-section {
  background: white;
}

.website-card {
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
  border-radius: 28px;
  background: #0c1b2d;
  color: white;
}

.website-card p:not(.eyebrow) {
  color: #9eb0c2;
}

.website-services {
  display: grid;
  gap: 11px;
}

.website-services span {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  font-size: 0.9rem;
  font-weight: 600;
}

.website-services span::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.demo-section {
  background: #eef4f8;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: start;
}

.demo-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.contact-details {
  margin-top: 30px;
  display: grid;
  gap: 8px;
}

.contact-details a {
  color: #0a7166;
  font-weight: 800;
}

.contact-details span {
  color: #718095;
}

.lead-form {
  padding: 35px;
  display: grid;
  gap: 17px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #26384d;
  font-size: 0.82rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d7e0e9;
  border-radius: 11px;
  padding: 13px 14px;
  outline: none;
  color: var(--text);
  background: #fbfcfd;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.lead-form small {
  color: #8090a1;
  text-align: center;
}

.final-cta {
  padding: 75px 0;
  background: linear-gradient(135deg, #075f58, #0a8277);
  color: white;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.final-cta h2 {
  max-width: 720px;
}

.site-footer {
  padding: 70px 0 25px;
  background: #06101c;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 430px;
  color: #879aae;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.footer-links a {
  color: #8fa1b4;
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #667b90;
  font-size: 0.72rem;
}

.demo-chat-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #05211e;
  box-shadow: 0 15px 45px rgba(0,0,0,.25);
  cursor: pointer;
}

.demo-chat-button span {
  font-size: 1.15rem;
}

.mini-chat {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1200;
  width: min(370px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 19px;
  background: white;
  box-shadow: 0 25px 80px rgba(0,0,0,.32);
  transform: translateY(20px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}

.mini-chat.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mini-chat-header {
  padding: 15px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0c2036;
  color: white;
}

.mini-chat-header strong,
.mini-chat-header small {
  display: block;
}

.mini-chat-header small {
  color: #91a5b8;
  margin-top: 2px;
  font-size: .7rem;
}

.mini-chat-header button {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.mini-chat-body {
  min-height: 280px;
  max-height: 390px;
  overflow-y: auto;
  padding: 16px;
  background: #f6f8fb;
}

.mini-message,
.mini-user-message {
  width: fit-content;
  max-width: 87%;
  padding: 11px 13px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: .82rem;
}

.mini-message {
  background: white;
  box-shadow: 0 4px 12px rgba(13,31,52,.06);
}

.mini-user-message {
  margin-left: auto;
  background: #102b47;
  color: white;
}

.quick-reply {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid #cfe0e6;
  border-radius: 10px;
  background: white;
  color: #0d5f58;
  text-align: left;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.quick-reply:hover {
  border-color: var(--accent-dark);
}

.mini-chat-input {
  padding: 10px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #e7ecf1;
}

.mini-chat-input input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d6e0e8;
  border-radius: 10px;
  padding: 10px 11px;
  outline: none;
}

.mini-chat-input button {
  width: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #05211e;
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #081525;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-layout,
  .dashboard-grid,
  .demo-grid,
  .website-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 65px;
  }

  .chat-window {
    margin: auto;
  }

  .floating-one {
    left: -10px;
  }

  .floating-two {
    right: -10px;
  }

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

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

  .feature-wide {
    grid-column: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .website-card {
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 78px 0 90px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .chat-demo {
    padding: 0 4px;
  }

  .floating-card {
    display: none;
  }

  .chat-body {
    min-height: 330px;
    padding: 16px;
  }

  .trust-grid,
  .steps,
  .feature-grid,
  .industry-grid,
  .pricing-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .trust-grid div:first-child {
    min-height: 95px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .section {
    padding: 80px 0;
  }

  .split-layout,
  .dashboard-grid,
  .demo-grid {
    gap: 45px;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .step-card {
    min-height: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .price-card ul,
  .price-intro {
    min-height: 0;
  }

  .website-card {
    padding: 34px 24px;
  }

  .dashboard-mock {
    padding: 16px;
  }

  .lead-row {
    grid-template-columns: auto 1fr;
  }

  .lead-status {
    grid-column: 2;
    width: fit-content;
  }

  .final-cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 35px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .demo-chat-button strong {
    display: none;
  }

  .demo-chat-button {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}

.plan-best-for {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.plan-best-for strong {
  color: var(--text);
}

.seasonal-plan {
  position: relative;
  margin-top: 70px;
  padding: 48px;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(45, 212, 191, 0.12),
      rgba(56, 189, 248, 0.08)
    ),
    #0c1b2d;
  color: white;
  overflow: hidden;
}

.seasonal-plan::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.08);
}

.seasonal-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 30px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: #05231f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.seasonal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seasonal-plan h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.seasonal-plan h3 span {
  color: #91a5b8;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.seasonal-plan p {
  color: #9eb0c2;
}

.seasonal-benefits {
  display: grid;
  gap: 12px;
}

.seasonal-benefits span {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e3ed;
  font-size: 0.9rem;
  font-weight: 600;
}

.seasonal-example {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.seasonal-example strong {
  display: block;
  margin-bottom: 8px;
}

.seasonal-example p {
  margin: 0;
}

.pricing-footer-message {
  max-width: 760px;
  margin: 60px auto 0;
  text-align: center;
}

.pricing-footer-message h3 {
  margin-bottom: 14px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.pricing-footer-message p {
  color: var(--muted);
}

@media (max-width: 780px) {
  .seasonal-plan {
    padding: 34px 24px;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
