:root {
  --ink: #f8fbfa;
  --muted: #a8b8bd;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #07182b;
  --surface: #10243a;
  --navy: #10243a;
  --blue: #22d3ee;
  --blue-dark: #0891b2;
  --cyan: #60a5fa;
  --mint: #2dd4bf;
  --amber: #38bdf8;
  --soft: #142f4a;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  --shadow-strong: 0 24px 70px rgba(7, 17, 31, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #07182b 0%, #0f2942 42%, #07182b 100%);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(7, 17, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.2);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.button,
.logo-strip,
.contact-points,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  width: 174px;
  min-width: 174px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.logo-symbol {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
}

.logo-word {
  fill: #ffffff;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-dropdown {
  position: relative;
}

.language-current,
.language-menu button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 88px;
  min-height: 38px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.language-current svg {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: var(--mint);
  transition: transform 180ms ease;
}

.language-dropdown.open .language-current svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: none;
  min-width: 100%;
  padding: 6px;
  background: rgba(7, 17, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.language-dropdown.open .language-menu {
  display: grid;
  gap: 5px;
}

.language-menu button {
  width: 100%;
  border-color: transparent;
  background: transparent;
}

.language-dropdown .flag {
  font-size: 1rem;
  line-height: 1;
}

.language-menu button.active,
.language-menu button:hover {
  color: #07182b;
  background: var(--mint);
}

.nav-links a,
.header-action {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(34, 211, 238, 0.44);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
}

.header-action:hover {
  background: var(--blue-dark);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 76px);
  min-height: 94vh;
  padding: 132px clamp(22px, 7vw, 104px) 104px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(45, 212, 191, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 76%, rgba(96, 165, 250, 0.16), transparent 22rem),
    linear-gradient(135deg, #07182b 0%, #142f4a 58%, #1e4f77 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(0deg, #07182b, rgba(7, 24, 43, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  flex: 0 0 min(640px, 52%);
}

.hero-product {
  position: relative;
  z-index: 2;
  flex: 1 1 520px;
  min-height: 430px;
  transform: translateY(-56px);
}

.hero-product-mockup {
  flex-basis: 620px;
  min-height: 440px;
  transform: translateY(-44px);
}

.campaign-mockup {
  position: absolute;
  top: 8px;
  right: 0;
  width: min(100%, 720px);
  overflow: visible;
  color: #e9f0f4;
  background:
    linear-gradient(140deg, rgba(45, 212, 191, 0.18), rgba(15, 47, 87, 0.18) 42%, rgba(7, 24, 43, 0.98)),
    #07182b;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  background: rgba(6, 16, 24, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-topbar span {
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 950;
}

.mockup-topbar div {
  display: flex;
  gap: 12px;
}

.mockup-topbar svg {
  width: 17px;
  color: rgba(255, 255, 255, 0.68);
}

.mockup-layout {
  display: grid;
  grid-template-columns: 118px 1fr 52px;
  min-height: 356px;
}

.mockup-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px 10px;
  background:
    linear-gradient(180deg, rgba(15, 47, 87, 0.74), rgba(7, 24, 43, 0.94));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-user {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 7px;
  align-items: center;
  margin-bottom: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.mockup-user b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.65rem;
}

.mockup-user span,
.mockup-sidebar > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
}

.mockup-sidebar > span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 8px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.mockup-sidebar > span.active {
  color: #fff;
  background: linear-gradient(135deg, #0ea5a3, #22d3ee);
}

.mockup-sidebar svg {
  width: 14px;
  flex: 0 0 14px;
}

.mockup-content {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

.mockup-heading,
.funnel-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mockup-heading small,
.funnel-card small,
.metric-grid small {
  display: block;
  color: #667085;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mockup-heading strong,
.funnel-card strong {
  display: block;
  margin-top: 3px;
  color: #111827;
  font-size: 0.92rem;
}

.mockup-heading button {
  padding: 9px 12px;
  color: #233140;
  background: #edf2f7;
  border: 1px solid #d5dde6;
  border-radius: 999px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 850;
}

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

.metric-grid article,
.funnel-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dfe6ed;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(15, 32, 46, 0.08);
}

.metric-grid article {
  position: relative;
  min-height: 70px;
  padding: 12px;
  overflow: hidden;
}

.metric-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
}

.metric-grid article:nth-child(2)::before,
.metric-grid article:nth-child(5)::before {
  background: #8b5cf6;
}

.metric-grid article:nth-child(3)::before,
.metric-grid article:nth-child(6)::before {
  background: #0ea5a3;
}

.metric-grid article strong {
  display: block;
  margin-top: 4px;
  color: #111827;
  font-size: 1.08rem;
  line-height: 1;
}

.metric-grid article span {
  display: block;
  margin-top: 5px;
  color: #7a8794;
  font-size: 0.58rem;
  font-weight: 650;
}

.funnel-card {
  margin-top: 12px;
  padding: 14px;
}

.funnel-row {
  display: grid;
  grid-template-columns: 92px 1fr 38px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: #4b5967;
  font-size: 0.64rem;
  font-weight: 800;
}

.funnel-row b {
  height: 8px;
  background: #e8eff5;
  border-radius: 999px;
  overflow: hidden;
}

.funnel-row b::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #2563eb);
  border-radius: inherit;
}

.funnel-row em {
  color: #111827;
  font-style: normal;
  text-align: right;
}

.profile-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding-top: 20px;
  background: rgba(222, 233, 241, 0.72);
  border-left: 1px solid rgba(7, 24, 43, 0.08);
}

.profile-rail span {
  width: 30px;
  height: 30px;
  filter: blur(4px);
  opacity: 0.72;
  background:
    radial-gradient(circle at 52% 34%, #a7f3d0 0 20%, transparent 21%),
    linear-gradient(135deg, #09213a, #22d3ee);
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.profile-rail span:nth-child(even) {
  background:
    radial-gradient(circle at 48% 33%, #bae6fd 0 20%, transparent 21%),
    linear-gradient(135deg, #2563eb, #07182b);
}

.mockup-floating-card {
  position: absolute;
  right: 72px;
  bottom: -34px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  min-width: 164px;
  padding: 14px 15px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13, 22, 30, 0.94), rgba(14, 38, 55, 0.9)),
    rgba(7, 24, 43, 0.92);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.mockup-floating-card svg {
  grid-row: span 2;
  width: 23px;
  color: var(--blue);
}

.mockup-floating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.mockup-floating-card strong {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.2vw, 4.05rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions,
.trust-row {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(10, 122, 106, 0.22);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(10, 122, 106, 0.24);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 680px);
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.trust-card i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--mint);
  background: rgba(140, 232, 223, 0.1);
  border: 1px solid rgba(140, 232, 223, 0.2);
  border-radius: 8px;
}

.trust-card svg {
  width: 20px;
  height: 20px;
}

.trust-card strong,
.trust-card span {
  display: block;
}

.trust-card strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1;
}

.trust-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.32;
}

.logo-strip {
  position: relative;
  z-index: 3;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1120px;
  margin: -34px auto 0;
  padding: 0 18px;
}

.logo-strip span {
  min-width: 150px;
  padding: 16px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  font-weight: 850;
}

.section,
.feature-band,
.proof-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) clamp(18px, 4vw, 32px);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 38px;
}

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

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.benefit-grid,
.pricing-grid,
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid article,
.price-card,
.proof-stats article,
.faq-item {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
}

.benefit-grid article {
  min-height: 228px;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-grid article:hover,
.price-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 122, 106, 0.22);
  box-shadow: var(--shadow);
}

.benefit-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 26px;
  color: var(--blue);
}

.benefit-grid p,
.price-card p,
.price-card li,
.quote p,
.faq-item p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-image {
  position: relative;
  min-height: 500px;
  background:
    linear-gradient(0deg, rgba(7, 17, 31, 0.28), rgba(7, 17, 31, 0.04)),
    url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1400&q=84") center / cover;
  border-radius: 8px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.feature-content {
  max-width: 680px;
}

.feature-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.72;
}

.feature-overlay-card,
.feature-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.feature-overlay-card {
  left: 22px;
  bottom: 24px;
  max-width: 300px;
  padding: 16px 18px;
  font-weight: 850;
}

.feature-overlay-card svg {
  width: 22px;
  min-width: 22px;
  color: var(--mint);
}

.feature-mini-card {
  right: 22px;
  top: 24px;
  display: grid;
  gap: 2px;
  min-width: 128px;
  padding: 16px;
}

.feature-mini-card strong {
  color: var(--mint);
  font-size: 2rem;
  line-height: 1;
}

.feature-mini-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.module-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.module-list div:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(140, 232, 223, 0.26);
}

.module-list svg {
  width: 24px;
  min-width: 24px;
  color: var(--mint);
}

.integrations-section {
  padding-top: clamp(66px, 8vw, 96px);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.integrations-grid article {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 20px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.integrations-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(140, 232, 223, 0.28);
}

.integrations-grid svg {
  width: 28px;
  height: 28px;
  color: var(--mint);
}

.integrations-grid span {
  font-weight: 850;
  font-size: 0.92rem;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.billing-toggle button {
  min-height: 40px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}

.billing-toggle button.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.plans-table-wrap {
  max-width: 1120px;
  margin: 34px auto 0;
  overflow-x: auto;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(96, 165, 250, 0.08)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.plans-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #e9f0f4;
  text-align: left;
}

.plans-table th {
  padding: 18px 20px;
  color: #fff;
  background: #08213b;
  font-size: 0.9rem;
  font-weight: 900;
}

.plans-table td {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.plans-table tbody tr {
  background: rgba(255, 255, 255, 0.035);
}

.plans-table tbody tr:nth-child(even) {
  background: rgba(96, 165, 250, 0.055);
}

.plans-table tbody tr:hover {
  background: rgba(45, 212, 191, 0.09);
}

.plans-table strong {
  color: #fff;
  font-weight: 950;
}

.plans-table .price-highlight {
  display: block;
  color: var(--mint);
  font-weight: 950;
}

.plan-price-cell {
  min-width: 178px;
}

.plan-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 12px;
  padding: 9px 13px;
  color: #07182b;
  background: var(--mint);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.plan-buy-button:hover {
  background: #7ee4ee;
  box-shadow: 0 12px 26px rgba(34, 211, 238, 0.18);
  transform: translateY(-2px);
}

.plan-buy-button svg {
  width: 16px;
  height: 16px;
}

.purchase-modal[hidden] {
  display: none;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.purchase-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 20, 0.74);
  backdrop-filter: blur(10px);
}

.purchase-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 34px);
  color: #111827;
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #344657;
  background: #eaf1f5;
  border: 1px solid #d9e2e7;
  border-radius: 8px;
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.purchase-dialog-heading {
  max-width: 620px;
  padding-right: 48px;
}

.purchase-dialog-heading .eyebrow {
  color: var(--blue-dark);
}

.purchase-dialog h2 {
  color: #07182b;
}

.selected-plan {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 8px 11px;
  color: #075985;
  background: #e0f7fb;
  border: 1px solid #b9edf5;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.trial-plan-detail {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 16px;
  color: #0f2a3d;
  background: #eefdf8;
  border: 1px solid #a9f0df;
  border-radius: 8px;
}

.trial-plan-detail[hidden] {
  display: none;
}

.trial-plan-detail strong {
  font-size: 0.9rem;
  color: #067565;
}

.trial-plan-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-plan-detail li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

.trial-plan-detail li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: #24d3c7;
  border-radius: 999px;
  content: "";
}

.trial-plan-detail p {
  margin: 0;
  color: #476174;
  font-size: 0.9rem;
  font-weight: 800;
}

.trial-plan-detail a {
  color: #174ea6;
  font-weight: 900;
  text-decoration: none;
}

.trial-plan-detail a:hover {
  text-decoration: underline;
}

.purchase-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.purchase-form label {
  display: grid;
  gap: 8px;
  color: #344657;
  font-size: 0.92rem;
  font-weight: 850;
}

.purchase-form input,
.purchase-form select,
.purchase-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #111827;
  background: #fff;
  border: 1px solid #d9e2e7;
  border-radius: 8px;
  outline: none;
}

.purchase-form select {
  cursor: pointer;
}

.purchase-form input:focus,
.purchase-form select:focus,
.purchase-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 122, 106, 0.14);
}

.purchase-form textarea {
  min-height: 110px;
  resize: vertical;
}

.purchase-full {
  grid-column: 1 / -1;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  min-height: 520px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card.featured {
  border-color: rgba(10, 122, 106, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  color: #fff;
  background: var(--mint);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.plan-name {
  margin-bottom: 16px;
  color: var(--blue-dark) !important;
  font-weight: 950;
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 2.6rem;
}

.price-card h3 small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li svg {
  width: 18px;
  min-width: 18px;
  color: var(--mint);
}

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

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.proof-heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

.quote {
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(53, 194, 209, 0.12), transparent 38%),
    var(--navy);
  border-radius: 8px;
  border: 1px solid var(--line);
}

.quote svg {
  width: 28px;
  margin-bottom: 18px;
  color: var(--cyan);
}

.quote blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.52;
}

.quote p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
}

.proof-stats article {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(140, 232, 223, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.055);
}

.proof-stats strong {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.proof-stats span {
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  display: grid;
  width: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 22px;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-weight: 900;
  color: #fff;
}

.faq-question svg {
  width: 20px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-answer {
  display: none;
  margin: -6px 22px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: none;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(135deg, #07182b, #142f4a 58%, #1e4f77);
}

.contact-section h2 {
  max-width: 650px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.contact-points svg {
  width: 18px;
  color: #7ee4ee;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344657;
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #111827;
  background: #f8fafc;
  border: 1px solid #d9e2e7;
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 122, 106, 0.14);
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #526174;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  color: #047857;
}

.form-status.warning {
  color: #9a3412;
}

.form-status.error {
  color: #b91c1c;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.62);
  background: #07182b;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: #fff;
  font-weight: 950;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .feature-band,
  .proof-section,
  .contact-section,
  .benefit-grid,
  .pricing-grid,
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }

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

  .feature-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand {
    width: 54px;
    min-width: 54px;
  }

  .logo-word {
    display: none;
  }

  .header-action {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.76rem;
  }

  .language-dropdown {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 76px;
    background:
      linear-gradient(135deg, #07182b 0%, #142f4a 58%, #1e4f77 100%);
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
  }

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

  .hero-product {
    display: none;
  }

  .plans-table {
    min-width: 760px;
  }

  .plan-buy-button {
    width: 100%;
  }

  .purchase-modal {
    padding: 14px;
  }

  .purchase-dialog {
    max-height: 88vh;
  }

  .purchase-form {
    grid-template-columns: 1fr;
  }

  .trial-plan-detail ul {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .trust-card,
  .logo-strip span {
    width: 100%;
  }

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

  .module-list {
    grid-template-columns: 1fr;
  }

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

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

  .site-footer {
    display: grid;
  }
}
