:root {
  --bg: #07070d;
  --bg-alt: #0b0b14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f3f8;
  --muted: #9aa0b4;
  --accent-1: #6366f1;
  --accent-2: #a855f7;
  --accent-3: #ec4899;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2) 55%, var(--accent-3));
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Unbounded", var(--font-body);
  --header-h: 72px;
  --shadow-glow: 0 0 60px rgba(124, 85, 247, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

.container--narrow { width: min(800px, 100% - 40px); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 85, 247, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 85, 247, 0.5);
}

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Header ===== */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(7, 7, 13, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
}

.logo__mark svg { width: 22px; height: 22px; }

.nav { display: flex; gap: 32px; }

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav__link:hover, .nav__link.is-active { color: var(--text); }

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 24px;
  background: rgba(7, 7, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu__link:hover { color: var(--text); background: var(--surface); }
.mobile-menu__cta { margin-top: 12px; }

/* ===== Hero ===== */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 90px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background:
    radial-gradient(45% 50% at 35% 50%, rgba(99, 102, 241, 0.28), transparent 70%),
    radial-gradient(40% 45% at 68% 45%, rgba(168, 85, 247, 0.22), transparent 70%),
    radial-gradient(30% 35% at 55% 65%, rgba(236, 72, 153, 0.12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 55% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero__note { font-size: 13.5px; color: var(--muted); }

/* Hero visual */

.hero__visual {
  position: relative;
  max-width: 860px;
  margin: 64px auto 0;
}

.app-window {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), var(--shadow-glow);
  overflow: hidden;
}

.app-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.app-window__dot { width: 11px; height: 11px; border-radius: 50%; }
.app-window__dot--r { background: #ff5f57; }
.app-window__dot--y { background: #febc2e; }
.app-window__dot--g { background: #28c840; }

.app-window__title {
  margin-left: 10px;
  font-size: 13px;
  color: var(--muted);
}

.app-window__body { padding: 22px; }

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

.kanban__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  min-height: 240px;
}

.kanban__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 6px;
}

.kanban__head span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--surface-hover);
  font-size: 12px;
}

.card-mini {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  line-height: 1.45;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card-mini:hover { transform: translateY(-2px); border-color: var(--border-strong); }

.card-mini--active { border-color: rgba(124, 85, 247, 0.5); }
.card-mini--done { opacity: 0.55; }

.card-mini__tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-mini__tag--blue { background: rgba(96, 165, 250, 0.16); color: #93c5fd; }
.card-mini__tag--purple { background: rgba(167, 139, 250, 0.16); color: #c4b5fd; }
.card-mini__tag--pink { background: rgba(244, 114, 182, 0.16); color: #f9a8d4; }
.card-mini__tag--green { background: rgba(52, 211, 153, 0.14); color: #6ee7b7; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  animation: float 5s ease-in-out infinite;
}

.float-chip svg { width: 16px; height: 16px; color: #34d399; }

.float-chip--1 { top: 42px; left: -42px; }

.float-chip--2 { bottom: 48px; right: -34px; animation-delay: 1.6s; }

.float-chip__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
}

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

/* Hero stats */

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 72px auto 0;
}

.stat { text-align: center; }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ===== Logos ===== */

.logos { padding: 56px 0; border-block: 1px solid var(--border); background: var(--bg-alt); }

.logos__title {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}

.logos__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 56px;
}

.logos__item {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease;
}

.logos__item:hover { color: rgba(255, 255, 255, 0.7); }

/* ===== Sections common ===== */

.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__subtitle { font-size: 16.5px; color: var(--muted); }

/* ===== Features ===== */

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

.feature-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.feature-card:hover { transform: translateY(-5px); background: var(--surface-hover); }
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(168, 85, 247, 0.14));
  border: 1px solid rgba(124, 85, 247, 0.28);
  color: #a5b4fc;
  margin-bottom: 20px;
}

.feature-card__icon svg { width: 25px; height: 25px; }

.feature-card__title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card__text { font-size: 14.5px; color: var(--muted); }

/* ===== Steps ===== */

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

.step {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover { transform: translateY(-5px); border-color: var(--border-strong); }

.step__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step__text { font-size: 14.5px; color: var(--muted); }

/* ===== Pricing ===== */

.pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.25s ease, color 0.25s ease;
}

.toggle-btn.is-active {
  background: var(--gradient);
  color: #fff;
}

.toggle-btn__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.18);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
}

.toggle-btn.is-active .toggle-btn__badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }

.price-card--featured {
  border-color: rgba(124, 85, 247, 0.55);
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(124, 85, 247, 0.16), transparent 70%),
    var(--surface);
  box-shadow: 0 20px 60px rgba(124, 85, 247, 0.18);
}

.price-card--featured:hover { border-color: rgba(124, 85, 247, 0.8); }

.price-card__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--gradient);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(124, 85, 247, 0.4);
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card__desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-card__value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.price-card__period { font-size: 13.5px; color: var(--muted); }

.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}

.price-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--muted);
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 9px no-repeat,
    var(--gradient);
}

/* ===== Reviews ===== */

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }

.review-card__stars { color: #fbbf24; font-size: 15px; letter-spacing: 3px; }

.review-card__text { font-size: 15px; color: var(--text); flex: 1; }

.review-card__author { display: flex; align-items: center; gap: 13px; }

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-card__avatar--1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.review-card__avatar--2 { background: linear-gradient(135deg, #a855f7, #ec4899); }
.review-card__avatar--3 { background: linear-gradient(135deg, #ec4899, #f97316); }

.review-card__name { font-size: 14.5px; font-weight: 600; }
.review-card__role { font-size: 13px; color: var(--muted); }

/* ===== FAQ ===== */

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq__item.is-open { border-color: rgba(124, 85, 247, 0.5); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  color: #a5b4fc;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }

.faq__answer p {
  overflow: hidden;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ===== CTA ===== */

.cta__box {
  position: relative;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: 24px;
  border: 1px solid rgba(124, 85, 247, 0.35);
  background:
    radial-gradient(90% 90% at 50% 0%, rgba(124, 85, 247, 0.14), transparent 65%),
    var(--bg-alt);
  text-align: center;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 400px;
  background: radial-gradient(45% 50% at 50% 50%, rgba(124, 85, 247, 0.3), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta__subtitle {
  position: relative;
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: 16px;
  color: var(--muted);
}

.cta__form {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
}

.cta__input {
  flex: 1;
  min-width: 0;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta__input::placeholder { color: var(--muted); }

.cta__input:focus {
  border-color: rgba(124, 85, 247, 0.6);
  box-shadow: 0 0 0 4px rgba(124, 85, 247, 0.18);
}

.cta__note { position: relative; font-size: 13.5px; color: var(--muted); }
.cta__note.is-success { color: #6ee7b7; font-weight: 600; }

/* ===== Footer ===== */

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 64px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.footer__brand .logo { margin-bottom: 14px; }

.footer__desc {
  max-width: 260px;
  font-size: 14px;
  color: var(--muted);
}

.footer__col { display: flex; flex-direction: column; gap: 11px; }

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.footer__link {
  font-size: 14px;
  color: var(--muted);
  width: fit-content;
  transition: color 0.2s ease;
}

.footer__link:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
}

.footer__copy { font-size: 13.5px; color: var(--muted); }

.footer__socials { display: flex; gap: 10px; }

.footer__social {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer__social:hover {
  color: var(--text);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.footer__social svg { width: 18px; height: 18px; }

/* ===== Reveal animation ===== */

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

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

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .hero__badge-dot { animation: none; }
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .float-chip--1 { left: -8px; }
  .float-chip--2 { right: -8px; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding-top: calc(var(--header-h) + 48px); }
  .kanban { grid-template-columns: 1fr; }
  .kanban__col { min-height: 0; }
  .float-chip { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .cta__form { flex-direction: column; }
}

@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 12px; }
  .hero__buttons .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
}
