:root {
  --primary: #8be6b6;
  --primary-strong: #69d9a4;
  --primary-deep: #2c8f69;
  --secondary: #76aff1;
  --secondary-strong: #5b97df;
  --dark: #26353f;
  --dark-80: rgba(38, 53, 63, 0.82);
  --dark-56: rgba(38, 53, 63, 0.56);
  --dark-24: rgba(38, 53, 63, 0.12);
  --bg: #f6faf8;
  --bg-alt: #eef5f8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(97, 130, 153, 0.16);
  --line-strong: rgba(118, 175, 241, 0.24);
  --shadow-sm: 0 6px 18px rgba(35, 54, 71, 0.06);
  --shadow: 0 18px 56px rgba(35, 54, 71, 0.11);
  --shadow-lg: 0 26px 80px rgba(35, 54, 71, 0.16);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 230, 182, 0.22), transparent 26%),
    radial-gradient(circle at 100% 18%, rgba(118, 175, 241, 0.18), transparent 24%),
    linear-gradient(180deg, #fbfefd 0%, var(--bg) 44%, var(--bg-alt) 100%);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.container--narrow {
  width: min(860px, calc(100vw - 40px));
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(139, 230, 182, 0.34);
  background: rgba(139, 230, 182, 0.12);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip--blue {
  background: rgba(118, 175, 241, 0.1);
  border-color: rgba(118, 175, 241, 0.28);
  color: #4b7ebb;
}

.chip--dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.btn,
.nav-btn,
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.nav-btn:hover,
.btn-plan:hover {
  transform: translateY(-2px);
}

.btn--primary,
.nav-btn,
.btn-plan--primary {
  background: linear-gradient(135deg, var(--primary-strong) 0%, var(--secondary) 100%);
  color: #123447;
  box-shadow: 0 14px 34px rgba(118, 175, 241, 0.2);
}

.btn--ghost,
.btn-plan--ghost,
.nav-login--mobile {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  color: var(--dark-80);
  box-shadow: var(--shadow-sm);
}

.btn--dark-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.28s ease;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(35, 54, 71, 0.05);
  opacity: 0;
  transition: opacity 0.28s ease, border-color 0.28s ease;
}

.navbar--scrolled {
  padding: 12px 0;
}

.navbar--scrolled::before {
  opacity: 1;
  border-color: var(--line);
}

.navbar__inner,
.nav-mobile {
  position: relative;
  z-index: 1;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav-links a,
.nav-login {
  color: var(--dark-80);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--secondary-strong);
}

.nav-cta {
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 18px;
}

.nav-mobile--open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-mobile__cta {
  display: grid;
  gap: 10px;
}

.hero {
  position: relative;
  padding: 148px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(38, 53, 63, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 80%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid rgba(118, 175, 241, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  color: #4d6d86;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-badge__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 0 0 6px rgba(118, 175, 241, 0.12);
}

.hero__copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.7rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.hero__subtitle {
  max-width: 540px;
  font-size: 1.06rem;
  color: var(--dark-80);
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark-56);
  font-size: 0.9rem;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatars span {
  width: 34px;
  height: 34px;
  margin-left: -10px;
  border: 2px solid var(--bg);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: #fff;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-strong) 100%);
}

.hero__avatars span:first-child {
  margin-left: 0;
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.app-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.app-frame__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #2b3c48;
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.chrome-dots span:nth-child(1) { background: #ff6f61; }
.chrome-dots span:nth-child(2) { background: #ffcb57; }
.chrome-dots span:nth-child(3) { background: #6dd4a8; }

.chrome-url {
  flex: 1;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-frame__body {
  display: flex;
  min-height: 420px;
}

.mock-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #f7fafc 0%, #f0f5f8 100%);
  padding: 18px 14px;
}

.mock-sidebar__title {
  margin-bottom: 14px;
  color: var(--dark-56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-head);
}

.mock-chat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
}

.mock-chat + .mock-chat {
  margin-top: 8px;
}

.mock-chat--active {
  background: rgba(118, 175, 241, 0.1);
}

.mock-chat__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-strong) 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
}

.mock-chat__avatar--mint {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
}

.mock-chat__avatar--dark {
  background: #2f4657;
}

.mock-chat__meta {
  min-width: 0;
}

.mock-chat__meta strong,
.mock-panel__header strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
}

.mock-chat__meta span,
.mock-panel__header span {
  color: var(--dark-56);
  font-size: 0.72rem;
}

.mock-chat b {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-size: 0.58rem;
}

.mock-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.mock-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}

.mock-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(139, 230, 182, 0.16);
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-bubbles {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  flex: 1;
}

.bubble {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.52;
}

.bubble--client {
  background: rgba(118, 175, 241, 0.12);
  color: #355372;
  border-bottom-left-radius: 4px;
}

.bubble--assistant {
  margin-left: auto;
  background: rgba(139, 230, 182, 0.16);
  color: #255c46;
  border-bottom-right-radius: 4px;
}

.mock-panel__input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  color: var(--dark-56);
}

.mock-panel__input span {
  flex: 1;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  background: #fff;
}

.mock-panel__input button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-strong) 100%);
  color: #14364a;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-bot {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: min(420px, 52%);
  z-index: 3;
  filter: drop-shadow(0 22px 38px rgba(118, 175, 241, 0.22));
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.float-card--top {
  top: -14px;
  right: 4px;
}

.float-card--bottom {
  left: -22px;
  bottom: 40px;
}

.float-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 230, 182, 0.2);
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-head);
}

.float-card__icon--blue {
  background: rgba(118, 175, 241, 0.18);
  color: #4b7ebb;
}

.float-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
}

.float-card span {
  display: block;
  color: var(--dark-56);
  font-size: 0.72rem;
}

.stats-bar {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

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

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
}

.stat span {
  color: var(--dark-56);
  font-size: 0.86rem;
}

.section {
  padding: 92px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(238, 245, 248, 0.72) 100%);
}

.section-heading {
  margin-bottom: 54px;
  text-align: center;
}

.section-heading h2 {
  max-width: 840px;
  margin: 18px auto 0;
  font-size: clamp(1.72rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.section-heading p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--dark-80);
}

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

.feature-card,
.pricing-card,
.spotlight__visual,
.mini-board__card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 28px;
}

.feature-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-strong) 100%);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 230, 182, 0.16);
  color: var(--primary-deep);
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-card__icon--blue {
  background: rgba(118, 175, 241, 0.16);
  color: #4b7ebb;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--dark-80);
  font-size: 0.95rem;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.spotlight--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.spotlight__text h2 {
  margin: 18px 0 18px;
  font-size: clamp(1.68rem, 2.7vw, 2.28rem);
  line-height: 1.14;
}

.spotlight__text p {
  color: var(--dark-80);
  margin-bottom: 24px;
}

.spotlight-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.spotlight-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--dark-80);
}

.spotlight-list strong {
  color: var(--dark);
}

.spotlight__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.spotlight__visual--dashboard {
  padding: 16px;
}

.spotlight__visual--dashboard img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.spotlight__visual--soft {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 175, 241, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 251, 0.92) 100%);
}

.mini-board {
  display: grid;
  gap: 16px;
}

.mini-board__card {
  border-radius: 20px;
  padding: 22px;
}

.mini-board__card span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-board__card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.mini-board__card p {
  color: var(--dark-80);
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px 28px 26px;
}

.pricing-card--featured {
  background:
    radial-gradient(circle at top right, rgba(118, 175, 241, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 251, 0.98) 100%);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.pricing-card--status {
  grid-column: 1 / -1;
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(118, 175, 241, 0.14);
  color: #4b7ebb;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card__code {
  margin-bottom: 8px;
  color: var(--dark-56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.pricing-card__desc,
.pricing-card__support-copy {
  color: var(--dark-80);
  font-size: 0.92rem;
}

.pricing-card__price {
  margin: 22px 0 18px;
}

.pricing-card__price strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
}

.pricing-card__price span {
  color: var(--dark-56);
  font-size: 0.84rem;
}

.pricing-card__annual {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(118, 175, 241, 0.08);
  color: var(--dark-80);
}

.pricing-card__annual strong,
.pricing-card__annual small {
  display: block;
}

.pricing-card__annual small {
  color: var(--primary-deep);
  font-size: 0.8rem;
}

.pricing-card__limits {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-card__limits span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(97, 130, 153, 0.12);
  color: var(--dark-80);
  font-size: 0.92rem;
}

.pricing-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 175, 241, 0.1);
  color: #4b7ebb;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--dark-80);
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-item--open .faq-answer {
  max-height: 180px;
  padding-bottom: 20px;
}

.faq-item--open .faq-question span {
  transform: rotate(45deg);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(139, 230, 182, 0.18), transparent 34%),
    radial-gradient(circle at 80% 50%, rgba(118, 175, 241, 0.14), transparent 34%),
    linear-gradient(135deg, #213641 0%, #1a2d36 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 78%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section h2 {
  max-width: 860px;
  margin: 22px auto 18px;
  color: #fff;
  font-size: clamp(1.86rem, 3.2vw, 2.6rem);
  line-height: 1.1;
}

.cta-section p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.footer {
  padding: 54px 0 28px;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.footer__brand img {
  width: 180px;
  height: auto;
  margin-bottom: 18px;
}

.footer__brand p,
.footer__column a,
.footer__bottom {
  color: var(--dark-80);
}

.footer__column {
  display: grid;
  gap: 10px;
}

.footer__column h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.checkout-page {
  padding-top: 88px;
}

.checkout-hero {
  padding: 72px 0 22px;
}

.checkout-hero__content {
  max-width: 760px;
}

.checkout-hero__content h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.checkout-hero__content p {
  color: var(--dark-80);
  font-size: 1rem;
  max-width: 620px;
}

.checkout-section {
  padding: 24px 0 92px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.checkout-layout--status {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.checkout-summary,
.checkout-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 28px;
}

.checkout-summary::before,
.checkout-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-strong) 100%);
}

.checkout-summary__eyebrow {
  margin: 0 0 8px;
  color: var(--dark-56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary h2,
.checkout-card h3 {
  font-size: 1.72rem;
  line-height: 1.08;
}

.checkout-summary__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 10px;
}

.checkout-summary__price strong {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.checkout-summary__price span,
.checkout-summary__description,
.checkout-card__header p,
.checkout-step p,
.request-result__details p,
.request-result__message p,
.checkout-feedback {
  color: var(--dark-80);
}

.checkout-summary__annual {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(118, 175, 241, 0.08);
  border: 1px solid rgba(118, 175, 241, 0.12);
}

.checkout-summary__annual span,
.checkout-summary__annual strong {
  display: block;
}

.checkout-summary__annual strong {
  color: var(--primary-deep);
}

.checkout-summary__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.checkout-summary__meta-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.checkout-summary__meta-card small {
  color: var(--dark-56);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-summary__limits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.checkout-summary__limits span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(97, 130, 153, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.checkout-card__header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.checkout-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.checkout-step {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.checkout-step strong,
.request-result__details strong,
.request-result__message strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-head);
  color: var(--dark);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-form__grid--single {
  grid-template-columns: 1fr;
}

.checkout-form__field {
  display: grid;
  gap: 8px;
}

.checkout-form__field span {
  color: #50606b;
  font-size: 0.92rem;
  font-weight: 600;
}

.checkout-form__field input,
.checkout-form__field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(118, 175, 241, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.94) 100%);
  color: #3d4e5d;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.checkout-form__field input:focus,
.checkout-form__field select:focus {
  border-color: rgba(118, 175, 241, 0.55);
  box-shadow: 0 0 0 4px rgba(118, 175, 241, 0.12);
}

.checkout-form__notice,
.request-result__message {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(118, 175, 241, 0.08);
  border: 1px solid rgba(118, 175, 241, 0.12);
}

.checkout-form__notice strong,
.request-result__badge {
  font-family: var(--font-head);
}

.checkout-form__footnote {
  color: var(--dark-56);
  font-size: 0.92rem;
}

.checkout-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.checkout-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(97, 130, 153, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.checkout-feedback a {
  color: var(--secondary-strong);
  font-weight: 700;
}

.checkout-feedback--success {
  color: var(--primary-deep);
  border-color: rgba(139, 230, 182, 0.28);
  background: rgba(243, 253, 247, 0.98);
}

.checkout-feedback--error {
  color: #9a4a4a;
  border-color: rgba(228, 120, 120, 0.24);
  background: rgba(255, 246, 246, 0.98);
}

.request-result {
  display: grid;
  gap: 18px;
}

.request-result__badge {
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(118, 175, 241, 0.12);
  color: #3d5e89;
  font-size: 0.84rem;
  font-weight: 700;
}

.request-result__badge[data-status="APPROVED"] {
  background: rgba(139, 230, 182, 0.18);
  color: var(--primary-deep);
}

.request-result__badge[data-status="REJECTED"] {
  background: rgba(255, 224, 224, 0.92);
  color: #9a4a4a;
}

.request-result__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.4s; }
.fade-up.d6 { transition-delay: 0.48s; }

@media (max-width: 1080px) {
  .hero__layout,
  .spotlight,
  .spotlight--reverse,
  .footer__top,
  .checkout-layout,
  .checkout-layout--status {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-bot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 58%);
    margin: -80px 0 0 auto;
  }

  .float-card--top {
    top: 20px;
  }

  .float-card--bottom {
    left: 10px;
    bottom: 30px;
  }

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

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

  .nav-toggle {
    display: inline-block;
  }

  .app-frame {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container,
  .container--narrow {
    width: min(100vw - 28px, 100%);
  }

  .hero {
    padding: 118px 0 72px;
  }

  .hero__copy h1 {
    font-size: 2.1rem;
  }

  .hero__actions,
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .app-frame__body {
    display: block;
  }

  .mock-sidebar {
    display: none;
  }

  .hero-bot {
    width: min(280px, 64%);
    margin-top: -42px;
  }

  .float-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin: 0 0 12px;
  }

  .pricing-grid,
  .features-grid,
  .stats-grid,
  .checkout-summary__meta,
  .request-result__details,
  .checkout-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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