:root {
  --primary: #1e3aff;
  --primary-2: #4f6bff;
  --dark: #0a0f2c;
  --ink: #12172f;
  --muted: #667085;
  --line: #e7ebf3;
  --panel: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 15, 44, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(30, 58, 255, 0.08), transparent 28%),
    #fbfcff;
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #071032, var(--dark));
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.loaded .loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-word {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--white);
  animation: float 1.8s ease-in-out infinite;
}

.loader-logo {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 18px;
  box-shadow: 0 0 52px rgba(30, 58, 255, 0.44);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.loader-text {
  color: var(--white);
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 34px rgba(79, 107, 255, 0.55);
}

.loader-ring {
  position: absolute;
  top: -30px;
  width: 126px;
  height: 126px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 4;
  opacity: 0.92;
}

.loader-ring .dash {
  animation: dashArray 2s ease-in-out infinite, dashOffset 2s linear infinite;
}

.loader-ring .spin {
  stroke: var(--primary-2);
  animation: spinDashArray 2s ease-in-out infinite, spin 8s ease-in-out infinite, dashOffset 2s linear infinite;
  transform-origin: center;
}

.loader-word p {
  margin: 0;
  color: #d8def0;
  font-size: 13px;
  font-weight: 750;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(30, 58, 255, 0.24);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 235, 243, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.site-header.scrolled {
  min-height: 64px;
  box-shadow: 0 14px 40px rgba(10, 15, 44, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 19px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: #2b3556;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link {
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher button {
  min-width: 32px;
  height: 28px;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.language-switcher .active {
  color: var(--white);
  background: var(--primary);
}

.primary-button,
.secondary-button,
.ghost-button,
.price-card button,
.crm-top button,
.modal-form button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-button,
.price-card button,
.crm-top button,
.modal-form button,
.lead-form button {
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(30, 58, 255, 0.22);
}

.primary-button::after,
.price-card button::after,
.crm-top button::after,
.modal-form button::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -38%;
  width: 32%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.34);
  transition: left 0.5s ease;
}

.primary-button:hover::after,
.price-card button:hover::after,
.crm-top button:hover::after,
.modal-form button:hover::after {
  left: 125%;
}

.secondary-button,
.ghost-button {
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.large {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.price-card button:hover,
.crm-top button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 78% 16%, rgba(30, 58, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  animation: glowMove 8s ease-in-out infinite;
}

.hero-section::before {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 12%;
  background: rgba(30, 58, 255, 0.16);
}

.hero-section::after {
  width: 180px;
  height: 180px;
  left: 9%;
  bottom: 8%;
  background: rgba(79, 107, 255, 0.13);
  animation-delay: 1.4s;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark);
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(100deg, var(--dark) 0%, var(--primary) 48%, #6d7cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 32px rgba(30, 58, 255, 0.12);
}

h2 {
  max-width: 760px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.14;
  font-weight: 850;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.hero-text {
  max-width: 590px;
  margin: 18px 0 0;
  color: #56627a;
  font-size: 16px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 20px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #34405f;
  font-size: 13px;
  font-weight: 750;
}

.hero-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-panel {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: rise 0.7s ease both;
  transform-style: preserve-3d;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(30, 58, 255, 0.55), transparent 35%, rgba(79, 107, 255, 0.35));
  border-radius: 14px;
  opacity: 0.46;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: #f8f9fd;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  background: #c8cedb;
  border-radius: 50%;
}

.browser-bar strong {
  margin-left: 8px;
  color: #7a8497;
  font-size: 12px;
}

.crm-preview {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
}

.crm-preview aside {
  padding: 18px;
  color: #c9d2ec;
  background: var(--dark);
}

.crm-preview aside b {
  display: block;
  margin: 16px 0 14px;
  color: var(--white);
  font-size: 13px;
}

.crm-preview aside p {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.crm-preview aside p.active {
  margin-inline: -8px;
  padding-inline: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.crm-main {
  padding: 20px;
}

.crm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.crm-top small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.crm-top strong {
  display: block;
  margin-top: 4px;
  color: var(--dark);
  font-size: 21px;
}

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

.metric-grid article,
.chart-card,
.task-card,
.feature-grid article,
.price-card,
.support-grid article,
.testimonial-grid article,
.workflow-steps article,
.roadmap-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.metric-grid article {
  padding: 14px;
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid strong {
  margin-top: 7px;
  color: var(--dark);
  font-size: 20px;
}

.analytics-row {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
  margin-top: 12px;
}

.chart-card {
  position: relative;
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 182px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(30, 58, 255, 0.08), var(--white));
}

.chart-title {
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--dark);
  font-size: 12px;
}

.chart-title small {
  color: var(--muted);
}

.chart-card span {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  border-radius: 8px 8px 4px 4px;
  animation: bar 2.4s ease-in-out infinite;
}

.task-card {
  padding: 16px;
}

.task-card b {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.task-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

.task-card span {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
}

.task-card em {
  font-style: normal;
}

.crm-table {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.crm-table > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.7fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  color: #3b4662;
  font-size: 12px;
}

.crm-table > div:first-child {
  color: var(--muted);
  background: #f8f9fd;
  font-weight: 850;
}

.crm-table > div:last-child {
  border-bottom: 0;
}

.crm-table mark {
  width: fit-content;
  padding: 5px 8px;
  color: #087443;
  background: #e7f8ef;
  border-radius: 999px;
  font-weight: 850;
}

.crm-table mark.warn {
  color: #a04400;
  background: #fff1dd;
}

.pipeline-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.pipeline-mini span {
  padding: 10px;
  color: var(--primary);
  background: rgba(30, 58, 255, 0.08);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(231, 235, 243, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(10, 15, 44, 0.14);
  backdrop-filter: blur(16px);
  animation: float 3.2s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.floating-card strong {
  color: var(--primary);
  font-size: 20px;
}

.floating-card.debt {
  top: 64px;
  left: -22px;
}

.floating-card.attendance {
  right: -18px;
  top: 130px;
  animation-delay: 0.5s;
}

.floating-card.lead {
  right: 26px;
  bottom: 32px;
  animation-delay: 1s;
}

.partner-section,
.problem-section,
.section-block,
.audience-section,
.split-section,
.workflow-section,
.integration-section,
.roadmap-section,
.numbers-section,
.testimonial-section,
.faq-section {
  padding: clamp(56px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.partner-section {
  padding-top: 34px;
  text-align: center;
}

.partner-section p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 750;
}

.partner-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.partner-logos span {
  flex: 0 0 auto;
  padding: 12px 18px;
  color: #7a8497;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
  animation: logoDrift 12s linear infinite;
}

.problem-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 42px;
  align-items: end;
  color: var(--white);
  background: var(--dark);
}

.problem-section h2 {
  color: var(--white);
}

.problem-section > p,
.split-section p {
  margin: 0;
  color: #d8def0;
  font-size: 16px;
  line-height: 1.68;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid,
.audience-grid,
.pricing-grid,
.support-grid,
.testimonial-grid,
.workflow-steps,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.audience-grid article,
.price-card,
.support-grid article,
.testimonial-grid article,
.workflow-steps article,
.roadmap-grid article {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-grid article:hover,
.audience-grid article:hover,
.price-card:hover,
.support-grid article:hover,
.testimonial-grid article:hover,
.workflow-steps article:hover,
.roadmap-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 255, 0.25);
  box-shadow: 0 18px 48px rgba(10, 15, 44, 0.08);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.audience-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

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

.audience-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.audience-grid article::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -40px;
  background: rgba(30, 58, 255, 0.08);
  border-radius: 50%;
}

.audience-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.audience-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.workflow-section {
  background: var(--white);
}

.workflow-steps article {
  background:
    linear-gradient(180deg, rgba(30, 58, 255, 0.045), transparent 70%),
    var(--white);
}

.workflow-steps span,
.roadmap-grid b {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.workflow-steps p,
.roadmap-grid p,
.integration-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.feature-grid p,
.price-card p,
.support-grid p,
.testimonial-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
  background: var(--dark);
}

.split-section h2 {
  color: var(--white);
}

.game-board {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(30, 58, 255, 0.25);
}

.game-board div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  animation: pulseSoft 3s ease-in-out infinite;
}

.game-board span {
  font-weight: 750;
}

.game-board strong {
  font-size: 20px;
}

.integration-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(30, 58, 255, 0.16), transparent 28%),
    var(--dark);
}

.integration-section h2 {
  color: var(--white);
}

.integration-section p {
  color: #d8def0;
}

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

.integration-grid span {
  display: grid;
  min-height: 86px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 6px;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(10, 15, 44, 0.08);
}

.billing-toggle button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.billing-toggle button.active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(30, 58, 255, 0.28);
}

.price-card {
  position: relative;
}

.price-card.featured {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow);
}

.price-card.featured h3,
.price-card.featured strong {
  color: var(--white);
}

.price-card.featured p,
.price-card.featured small {
  color: #d8def0;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  color: var(--dark);
  font-size: 28px;
}

.price-card small {
  display: block;
  margin: 4px 0 22px;
  color: var(--muted);
  min-height: 22px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 104px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(30, 58, 255, 0.5);
}

.price-card.featured li {
  color: #d8def0;
}

.price-card button {
  width: 100%;
}

.comparison-table {
  margin-top: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(10, 15, 44, 0.07);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.65fr);
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row.head {
  color: var(--dark);
  background: #f8f9fd;
  font-weight: 900;
}

.comparison-row b {
  color: var(--primary);
  text-align: center;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.numbers-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
}

.numbers-section div {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.numbers-section strong,
.numbers-section span {
  display: block;
}

.numbers-section strong {
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
}

.numbers-section span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
}

.roadmap-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(30, 58, 255, 0.55), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(79, 107, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #050a1e 0%, #0a0f2c 58%, #111a46 100%);
}

.roadmap-section .section-heading h2,
.roadmap-section .eyebrow {
  color: var(--white);
}

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

.roadmap-grid article {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.roadmap-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px 999px 0 0;
}

.roadmap-grid b {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 14px;
  box-shadow: 0 0 34px rgba(30, 58, 255, 0.56);
}

.roadmap-grid h3 {
  color: var(--white);
}

.roadmap-grid p {
  color: #d8def0;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

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

.support-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
}

.support-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 255, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.support-grid article:hover::before {
  opacity: 1;
}

.support-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  color: var(--primary);
  background: rgba(30, 58, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-grid article {
  position: relative;
  min-height: 260px;
}

.testimonial-grid article::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  color: rgba(30, 58, 255, 0.12);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-grid b,
.testimonial-grid span {
  display: block;
}

.testimonial-grid b {
  margin-top: 24px;
  color: var(--dark);
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(30, 58, 255, 0.25);
  box-shadow: 0 16px 38px rgba(10, 15, 44, 0.07);
}

.faq-list summary {
  color: var(--dark);
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--dark);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
  color: #d8def0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #d8def0;
  font-weight: 750;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 15, 44, 0.62);
  backdrop-filter: blur(12px);
}

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

.modal-panel {
  position: relative;
  width: min(500px, 100%);
  padding: 26px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: modalIn 0.24s ease both;
}

.modal-panel h2 {
  font-size: clamp(25px, 4vw, 34px);
}

.modal-title-dot {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 10px;
  padding-left: 30px;
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.modal-title-dot::before,
.modal-title-dot::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
}

.modal-title-dot::after {
  animation: pulse 1s linear infinite;
}

.modal-copy {
  color: var(--muted);
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--dark);
  background: var(--panel);
  border-radius: 8px;
  font-size: 24px;
}

.modal-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.modal-form label {
  position: relative;
}

.modal-form .input {
  width: 100%;
  min-height: 54px;
  padding: 12px 12px 22px;
  border: 1px solid rgba(105, 105, 105, 0.28);
  border-radius: 10px;
  background: var(--white);
  outline: none;
}

.modal-form label span {
  position: absolute;
  left: 12px;
  top: 16px;
  color: var(--muted);
  font-size: 14px;
  cursor: text;
  transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}

.modal-form .input:focus + span,
.modal-form .input:not(:placeholder-shown) + span,
.modal-form .input:valid + span {
  top: 33px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.modal-form .input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 255, 0.1);
}

.modal-form .submit {
  min-height: 50px;
  padding: 10px;
  color: var(--white);
  background: var(--primary);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}

.modal-form .submit:hover {
  background: #385ac2;
  transform: translateY(-2px);
}

.modal-form.sent {
  animation: successPulse 0.65s ease;
}

.success-panel,
.beta-panel {
  text-align: center;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(30, 58, 255, 0.28);
}

.success-icon img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.final-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(58px, 7vw, 86px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 24%, rgba(79, 107, 255, 0.34), transparent 26%),
    linear-gradient(135deg, var(--primary), var(--dark));
}

.final-cta-section h2,
.final-cta-section .eyebrow {
  color: var(--white);
}

.final-cta-section p {
  max-width: 720px;
  color: #d8def0;
  line-height: 1.7;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 12%, rgba(30, 58, 255, 0.12), transparent 28%),
    #f6f8fc;
}

.legal-shell {
  display: grid;
  gap: 28px;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0;
}

.legal-card {
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  color: var(--dark);
  font-size: clamp(32px, 5vw, 48px);
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.78;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--dark);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal.visible .roadmap-grid article,
.reveal.visible .support-grid article,
.reveal.visible .testimonial-grid article,
.reveal.visible .faq-list details {
  animation: cardRise 0.62s ease both;
}

.reveal.visible article:nth-child(2),
.reveal.visible details:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.visible article:nth-child(3),
.reveal.visible details:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal.visible article:nth-child(4),
.reveal.visible details:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bar {
  0%,
  100% {
    transform: scaleY(0.94);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes glowMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.06);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.08);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-72px);
  }
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.02);
    filter: drop-shadow(0 18px 32px rgba(30, 58, 255, 0.18));
  }

  100% {
    transform: scale(1);
  }
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }

  50% {
    stroke-dasharray: 0 359 1 0;
  }

  100% {
    stroke-dasharray: 359 1 0 0;
  }
}

@keyframes spinDashArray {
  0% {
    stroke-dasharray: 270 90;
  }

  50% {
    stroke-dasharray: 0 360;
  }

  100% {
    stroke-dasharray: 270 90;
  }
}

@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }

  100% {
    stroke-dashoffset: 5;
  }
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }

  12.5%,
  25% {
    rotate: 270deg;
  }

  37.5%,
  50% {
    rotate: 540deg;
  }

  62.5%,
  75% {
    rotate: 810deg;
  }

  87.5%,
  100% {
    rotate: 1080deg;
  }
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(0.9);
  }

  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 1180px) {
  .phone-link,
  .ghost-button {
    display: none;
  }

  .hero-section,
  .problem-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    max-width: 780px;
  }

  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .support-grid,
  .testimonial-grid,
  .workflow-steps,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-section {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .nav-links,
  .header-actions {
    display: none;
    width: 100%;
  }

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

  .site-header.open .nav-links {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-header.open .header-actions {
    order: 4;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .crm-preview,
  .analytics-row,
  .numbers-section,
  .integration-grid,
  .final-cta-section {
    grid-template-columns: 1fr;
  }

  .final-cta-section {
    display: grid;
  }

  .crm-preview aside {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-actions a,
  .hero-actions button,
  .feature-grid,
  .audience-grid,
  .pricing-grid,
  .support-grid,
  .testimonial-grid,
  .workflow-steps,
  .roadmap-grid,
  .metric-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .billing-toggle {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .crm-main {
    padding: 14px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    grid-template-columns: 1.2fr repeat(4, 0.6fr);
    min-width: 680px;
  }

  .crm-table,
  .pipeline-mini {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final Eduka brand lock */
:root {
  --primary: #1e3aff;
  --primary-2: #4f6bff;
  --brand-cyan: #4fd8ff;
  --neon-blue: rgba(30, 58, 255, 0.34);
  --neon-green: rgba(79, 216, 255, 0.24);
}

.hero-section {
  background:
    radial-gradient(circle at 78% 32%, rgba(79, 216, 255, 0.11), transparent 23%),
    radial-gradient(circle at 18% 18%, rgba(30, 58, 255, 0.1), transparent 26%),
    #ffffff;
}

.primary-button,
.price-card button,
.crm-top button,
.modal-form button,
.hero-actions .primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #3157ff 54%, var(--primary-2));
  box-shadow: 0 18px 42px rgba(30, 58, 255, 0.28), 0 0 38px rgba(79, 107, 255, 0.3);
}

.secondary-button,
.ghost-button,
.hero-actions .secondary-button {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(30, 58, 255, 0.55);
}

.eyebrow,
.metric-grid strong,
.floating-card strong,
.pipeline-mini span {
  color: var(--primary);
}

.hero-note span::before {
  background: linear-gradient(135deg, var(--primary), var(--brand-cyan));
  box-shadow: 0 0 14px rgba(30, 58, 255, 0.32);
}

.hero-panel {
  box-shadow: 0 -18px 70px rgba(30, 58, 255, 0.12), 0 0 90px rgba(79, 107, 255, 0.24);
}

.hero-panel::before {
  background: linear-gradient(135deg, rgba(30, 58, 255, 0.68), rgba(255, 255, 255, 0.12) 38%, rgba(79, 216, 255, 0.48));
}

.crm-preview aside p.active,
.task-card span,
.pipeline-mini span {
  background: rgba(30, 58, 255, 0.08);
}

.chart-card span {
  background: linear-gradient(180deg, #88a0ff, var(--primary));
  box-shadow: 0 0 18px rgba(30, 58, 255, 0.22);
}

.trial-chip {
  color: #243fda;
  background: rgba(30, 58, 255, 0.08);
  border-color: rgba(30, 58, 255, 0.22);
  box-shadow: 0 0 22px rgba(30, 58, 255, 0.12);
}

.price-card:hover {
  border-color: rgba(30, 58, 255, 0.26);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12), 0 0 34px rgba(30, 58, 255, 0.14);
}

/* Eduka brand color correction */
:root {
  --primary: #1e3aff;
  --primary-2: #4f6bff;
  --brand-cyan: #4fd8ff;
  --neon-blue: rgba(30, 58, 255, 0.34);
  --neon-green: rgba(79, 216, 255, 0.28);
}

.primary-button,
.price-card button,
.crm-top button,
.modal-form button {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(30, 58, 255, 0.24), 0 0 34px var(--neon-blue);
}

.primary-button:hover,
.price-card button:hover,
.crm-top button:hover,
.modal-form button:hover {
  box-shadow: 0 16px 36px rgba(30, 58, 255, 0.3), 0 0 46px rgba(79, 107, 255, 0.34);
}

.secondary-button,
.ghost-button {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(30, 58, 255, 0.55);
}

.secondary-button:hover,
.ghost-button:hover {
  box-shadow: 0 0 28px rgba(30, 58, 255, 0.18);
}

.hero-section {
  background:
    radial-gradient(circle at 78% 32%, rgba(79, 216, 255, 0.11), transparent 23%),
    radial-gradient(circle at 18% 18%, rgba(30, 58, 255, 0.1), transparent 26%),
    #ffffff;
}

.eyebrow {
  color: var(--primary);
}

.hero-actions .primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #3157ff 54%, var(--primary-2));
  box-shadow: 0 18px 42px rgba(30, 58, 255, 0.28), 0 0 38px rgba(79, 107, 255, 0.32);
}

.hero-actions .secondary-button {
  color: var(--primary);
  background: #ffffff;
}

.hero-note span::before {
  background: linear-gradient(135deg, var(--primary), var(--brand-cyan));
  box-shadow: 0 0 14px rgba(30, 58, 255, 0.32);
}

.hero-panel {
  box-shadow: 0 -18px 70px rgba(30, 58, 255, 0.12), 0 0 90px rgba(79, 107, 255, 0.24);
}

.hero-panel::before {
  background: linear-gradient(135deg, rgba(30, 58, 255, 0.68), rgba(255, 255, 255, 0.12) 38%, rgba(79, 216, 255, 0.48));
}

.crm-preview aside p.active {
  color: var(--primary);
  background: rgba(30, 58, 255, 0.08);
}

.metric-grid strong,
.floating-card strong {
  color: var(--primary);
}

.chart-card span {
  background: linear-gradient(180deg, #88a0ff, var(--primary));
  box-shadow: 0 0 18px rgba(30, 58, 255, 0.22);
}

.task-card span,
.pipeline-mini span {
  background: rgba(30, 58, 255, 0.09);
}

.pipeline-mini span {
  color: var(--primary);
}

.trial-chip {
  color: #243fda;
  background: rgba(30, 58, 255, 0.08);
  border-color: rgba(30, 58, 255, 0.22);
  box-shadow: 0 0 22px rgba(30, 58, 255, 0.12);
}

.price-card.featured .trial-chip {
  color: #dfe6ff;
  background: rgba(79, 107, 255, 0.16);
  border-color: rgba(130, 150, 255, 0.42);
}

.price-card:hover {
  border-color: rgba(30, 58, 255, 0.26);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12), 0 0 34px rgba(30, 58, 255, 0.14);
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 -18px 70px rgba(30, 58, 255, 0.12), 0 0 74px rgba(79, 107, 255, 0.22);
  }
  50% {
    box-shadow: 0 -20px 78px rgba(30, 58, 255, 0.2), 0 0 104px rgba(79, 216, 255, 0.28);
  }
}

/* Professional trial hero refresh */
:root {
  --primary: #0f62fe;
  --primary-2: #12d6b0;
  --dark: #090b12;
  --ink: #090b12;
  --muted: #8b95a5;
  --line: #e8edf4;
  --panel: #f7f9fc;
  --neon-blue: rgba(15, 98, 254, 0.36);
  --neon-green: rgba(18, 214, 176, 0.32);
}

body {
  background: #ffffff;
}

.site-header {
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 82px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(232, 237, 244, 0.72);
}

.site-header.scrolled {
  min-height: 76px;
}

.brand {
  gap: 12px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 0 0 6px rgba(15, 98, 254, 0.06), 0 14px 36px rgba(15, 98, 254, 0.2);
}

.nav-links {
  gap: clamp(18px, 2.7vw, 34px);
  color: #12151f;
  font-size: 16px;
  font-weight: 800;
}

.header-actions {
  gap: 12px;
}

.phone-link {
  font-size: 14px;
}

.language-switcher {
  background: transparent;
  border-color: transparent;
}

.language-switcher button {
  min-width: 30px;
  height: 30px;
  color: #111827;
}

.language-switcher .active {
  color: var(--dark);
  background: #eef4ff;
}

.primary-button,
.secondary-button,
.ghost-button,
.price-card button,
.crm-top button,
.modal-form button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
}

.primary-button,
.price-card button,
.crm-top button,
.modal-form button {
  background: linear-gradient(135deg, #10131c 0%, #1d2433 58%, #3c465a 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 12px 30px rgba(16, 19, 28, 0.22), 0 0 34px var(--neon-blue);
}

.primary-button:hover,
.price-card button:hover,
.crm-top button:hover,
.modal-form button:hover {
  box-shadow: 0 16px 34px rgba(16, 19, 28, 0.26), 0 0 42px var(--neon-green);
}

.secondary-button,
.ghost-button {
  color: var(--primary);
  background: #ffffff;
  border: 1.5px solid var(--primary);
  box-shadow: 0 0 0 rgba(30, 58, 255, 0);
}

.secondary-button:hover,
.ghost-button:hover {
  box-shadow: 0 0 26px rgba(30, 58, 255, 0.18);
}

.large {
  min-height: 76px;
  padding-inline: 26px;
  font-size: 18px;
  font-weight: 900;
}

.hero-section {
  display: block;
  min-height: auto;
  padding: clamp(58px, 7vw, 86px) clamp(22px, 6vw, 92px) 0;
  background:
    radial-gradient(circle at 78% 32%, rgba(18, 214, 176, 0.13), transparent 23%),
    radial-gradient(circle at 18% 18%, rgba(15, 98, 254, 0.09), transparent 26%),
    #ffffff;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  display: none;
}

.hero-copy {
  max-width: 920px;
  animation: heroLift 0.75s ease both;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}

h1 {
  max-width: 960px;
  color: #05060a;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(54px, 6.8vw, 92px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.hero-text {
  max-width: 760px;
  margin-top: 24px;
  color: #9aa3b2;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  gap: 24px;
  margin-top: 70px;
}

.hero-actions .primary-button {
  color: #10131c;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 42px rgba(30, 58, 255, 0.28), 0 0 34px rgba(79, 107, 255, 0.28);
}

.hero-actions .secondary-button {
  color: var(--primary);
  background: #ffffff;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: none;
  margin-top: 22px;
}

.hero-note span {
  padding: 10px 14px;
  color: #394150;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.hero-note span::before {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 14px var(--neon-green);
}

.hero-panel {
  width: min(1280px, 104vw);
  margin: 64px auto -82px;
  border: 0;
  border-radius: 34px 34px 0 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 -18px 70px rgba(15, 98, 254, 0.12), 0 0 90px var(--neon-green);
  transform: rotate(-3deg) translateY(14px);
  transform-origin: center top;
  animation: dashboardRise 0.9s ease 0.12s both, neonPulse 4s ease-in-out infinite;
}

.hero-panel::before {
  inset: -3px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.65), rgba(255, 255, 255, 0.12) 38%, rgba(18, 214, 176, 0.62));
  border-radius: 36px 36px 0 0;
  opacity: 0.8;
}

.browser-bar {
  gap: 12px;
  padding: 20px 34px;
  background: rgba(248, 250, 252, 0.9);
  border-bottom-color: rgba(232, 237, 244, 0.86);
}

.browser-bar span {
  width: 14px;
  height: 14px;
}

.browser-bar strong {
  flex: 1;
  max-width: 720px;
  margin-left: 22px;
  padding: 13px 18px;
  color: #2b3341;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(232, 237, 244, 0.9), 0 8px 28px rgba(16, 24, 40, 0.06);
  font-size: 15px;
  text-align: center;
}

.crm-preview {
  grid-template-columns: 180px 1fr;
  min-height: 560px;
  background: rgba(255, 255, 255, 0.92);
}

.crm-preview aside {
  background: #ffffff;
  color: #697386;
  border-right: 1px solid var(--line);
}

.crm-preview aside b {
  color: #090b12;
  font-size: 15px;
}

.crm-preview aside p {
  border-bottom-color: #edf1f6;
  font-size: 14px;
}

.crm-preview aside p.active {
  color: var(--primary);
  background: rgba(30, 58, 255, 0.08);
}

.crm-main {
  padding: 28px;
}

.crm-top strong {
  color: #090b12;
  font-size: 28px;
}

.metric-grid {
  gap: 16px;
}

.metric-grid article,
.chart-card,
.task-card,
.crm-table,
.pipeline-mini span {
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.06);
}

.metric-grid article {
  padding: 22px;
  animation: softFloat 4.8s ease-in-out infinite;
}

.metric-grid article:nth-child(2) {
  animation-delay: 0.45s;
}

.metric-grid article:nth-child(3) {
  animation-delay: 0.9s;
}

.metric-grid strong {
  color: var(--primary);
  font-size: 30px;
}

.chart-card span {
  background: linear-gradient(180deg, #88a0ff, var(--primary));
  box-shadow: 0 0 18px rgba(30, 58, 255, 0.18);
}

.task-card span,
.pipeline-mini span {
  background: rgba(30, 58, 255, 0.09);
}

.pipeline-mini span {
  color: var(--primary);
}

.floating-card {
  border-color: rgba(18, 214, 176, 0.24);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.14), 0 0 30px var(--neon-green);
  animation: softFloat 4s ease-in-out infinite;
}

.floating-card strong {
  color: var(--primary);
}

.pricing-section {
  background:
    radial-gradient(circle at 76% 8%, rgba(18, 214, 176, 0.12), transparent 24%),
    #f7f9fc;
}

.trial-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: #087968;
  background: #e8fbf7;
  border: 1px solid rgba(18, 214, 176, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(18, 214, 176, 0.16);
}

.price-card.featured .trial-chip {
  color: #baf7ec;
  background: rgba(18, 214, 176, 0.12);
  border-color: rgba(18, 214, 176, 0.38);
}

.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  border-color: rgba(18, 214, 176, 0.32);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12), 0 0 34px rgba(18, 214, 176, 0.16);
}

.reveal {
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  filter: blur(8px);
}

.reveal.visible {
  filter: blur(0);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboardRise {
  from {
    opacity: 0;
    transform: rotate(-3deg) translateY(86px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: rotate(-3deg) translateY(14px) scale(1);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 -18px 70px rgba(15, 98, 254, 0.12), 0 0 74px rgba(18, 214, 176, 0.24);
  }
  50% {
    box-shadow: 0 -20px 78px rgba(15, 98, 254, 0.2), 0 0 104px rgba(18, 214, 176, 0.38);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    font-size: 22px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero-panel {
    width: 100%;
    margin-bottom: -42px;
    transform: none;
  }

  @keyframes dashboardRise {
    from {
      opacity: 0;
      transform: translateY(72px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 74px;
    padding: 12px 18px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .site-header.open .nav-links {
    gap: 8px;
    padding: 16px 0 4px;
    font-size: 16px;
  }

  .site-header.open .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .site-header.open .header-actions {
    gap: 10px;
  }

  .hero-section {
    padding: 44px 18px 0;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 36px;
  }

  .large,
  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
    min-height: 58px;
    font-size: 16px;
  }

  .hero-panel {
    margin-top: 42px;
    border-radius: 22px 22px 0 0;
  }

  .browser-bar {
    padding: 14px;
  }

  .browser-bar strong {
    margin-left: 4px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .crm-preview {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .crm-preview aside {
    display: none;
  }

  .analytics-row,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 20px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-note {
    display: grid;
  }

  .crm-main {
    padding: 16px;
  }

  .crm-table > div {
    grid-template-columns: 1fr 0.7fr;
  }

  .crm-table b:nth-child(2),
  .crm-table b:nth-child(3),
  .crm-table span:nth-child(2),
  .crm-table mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final Eduka brand lock */
:root {
  --primary: #1e3aff;
  --primary-2: #4f6bff;
  --brand-cyan: #4fd8ff;
  --neon-blue: rgba(30, 58, 255, 0.34);
  --neon-green: rgba(79, 216, 255, 0.24);
}

.hero-section {
  background:
    radial-gradient(circle at 78% 32%, rgba(79, 216, 255, 0.11), transparent 23%),
    radial-gradient(circle at 18% 18%, rgba(30, 58, 255, 0.1), transparent 26%),
    #ffffff;
}

.primary-button,
.price-card button,
.crm-top button,
.modal-form button,
.hero-actions .primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #3157ff 54%, var(--primary-2));
  box-shadow: 0 18px 42px rgba(30, 58, 255, 0.28), 0 0 38px rgba(79, 107, 255, 0.3);
}

.secondary-button,
.ghost-button,
.hero-actions .secondary-button {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(30, 58, 255, 0.55);
}

.eyebrow,
.metric-grid strong,
.floating-card strong,
.pipeline-mini span {
  color: var(--primary);
}

.hero-note span::before {
  background: linear-gradient(135deg, var(--primary), var(--brand-cyan));
  box-shadow: 0 0 14px rgba(30, 58, 255, 0.32);
}

.hero-panel {
  box-shadow: 0 -18px 70px rgba(30, 58, 255, 0.12), 0 0 90px rgba(79, 107, 255, 0.24);
}

.hero-panel::before {
  background: linear-gradient(135deg, rgba(30, 58, 255, 0.68), rgba(255, 255, 255, 0.12) 38%, rgba(79, 216, 255, 0.48));
}

.crm-preview aside p.active,
.task-card span,
.pipeline-mini span {
  background: rgba(30, 58, 255, 0.08);
}

.chart-card span {
  background: linear-gradient(180deg, #88a0ff, var(--primary));
  box-shadow: 0 0 18px rgba(30, 58, 255, 0.22);
}

.trial-chip {
  color: #243fda;
  background: rgba(30, 58, 255, 0.08);
  border-color: rgba(30, 58, 255, 0.22);
  box-shadow: 0 0 22px rgba(30, 58, 255, 0.12);
}

.price-card:hover {
  border-color: rgba(30, 58, 255, 0.26);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12), 0 0 34px rgba(30, 58, 255, 0.14);
}
