:root {
  --bg: #070b0d;
  --bg-soft: #0d1417;
  --panel: rgba(10, 17, 20, 0.72);
  --panel-strong: rgba(15, 23, 27, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #8aa0a8;
  --pink: #ff4f8b;
  --pink-strong: #ff2d75;
  --green: #7cffb6;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 139, 0.22), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(124, 255, 182, 0.12), transparent 18%),
    radial-gradient(circle at 50% 120%, rgba(255, 79, 139, 0.12), transparent 28%),
    linear-gradient(180deg, #040607 0%, #071013 55%, #050809 100%);
}

body {
  padding: 30px;
  position: relative;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.42;
  z-index: 0;
}

.page-glow-left {
  top: -120px;
  left: -100px;
  background: rgba(255, 79, 139, 0.34);
}

.page-glow-right {
  top: 40px;
  right: -120px;
  background: rgba(124, 255, 182, 0.16);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 60px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.site-nav-panel {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 139, 0.9), rgba(255, 122, 168, 0.9));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 26px rgba(255, 79, 139, 0.32);
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: grid;
  gap: 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-text small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

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

.nav a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 79, 139, 0.95), rgba(255, 45, 117, 0.95));
  box-shadow: 0 0 24px rgba(255, 79, 139, 0.22);
}

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

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 17, 20, 0.86);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f8fafc;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.link-button,
.cta-button {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}

.link-button {
  color: #d6dee2;
  padding: 12px 14px;
}

.link-button:hover {
  color: #fff;
}

.cta-button {
  color: #fff;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 28px rgba(255, 79, 139, 0.34);
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 34px rgba(255, 79, 139, 0.42);
}

.page-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 120px;
}

.hero-section {
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
  padding: 54px 0 40px;
}

.hero-copy {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd6e5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 28px rgba(255, 79, 139, 0.08);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 620px;
}

.hero-copy h1 span {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(255, 79, 139, 0.16);
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #e8edf0;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.meta-pill {
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #d8e0e4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}

.hero-orb-one {
  width: 260px;
  height: 260px;
  top: 80px;
  left: 30px;
  background: rgba(255, 79, 139, 0.26);
}

.hero-orb-two {
  width: 220px;
  height: 220px;
  right: 40px;
  bottom: 90px;
  background: rgba(255, 91, 146, 0.22);
}

.hero-phone {
  position: relative;
  z-index: 2;
  width: 340px;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 30px 70px rgba(0, 0, 0, 0.44),
    0 0 40px rgba(255, 79, 139, 0.18);
  animation: phoneFloat 5.4s ease-in-out infinite;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 79, 139, 0.7);
}

.phone-title {
  font-size: 13px;
  font-weight: 700;
  color: #e9f0f3;
}

.status-chip {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #081012;
  background: var(--green);
}

.phone-screen {
  padding: 22px 18px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 79, 139, 0.22), transparent 34%),
    linear-gradient(180deg, #f9fbfc 0%, #eef2f4 100%);
  color: #111827;
}

.screen-ring {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.ring-core {
  position: relative;
  width: 164px;
  height: 164px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle, #ffffff 48%, transparent 49%),
    conic-gradient(from 200deg, #ff5b92, #ff9ebd, #e5e7eb 75%, #ff5b92);
  box-shadow: 0 16px 34px rgba(255, 91, 146, 0.22);
}

.ring-core strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.ring-core span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.screen-stats div,
.message-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.screen-stats div {
  padding: 14px;
}

.screen-stats small,
.message-card small {
  display: block;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.message-card {
  padding: 16px;
}

.message-card p {
  margin: 10px 0 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 17, 20, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.floating-card-left {
  top: 150px;
  left: 20px;
}

.floating-card-right {
  top: 110px;
  right: 24px;
}

.floating-card-bottom {
  bottom: 100px;
  right: 60px;
}

.feature-marquee-section {
  position: relative;
  padding: 18px 0 28px;
  overflow: hidden;
}

.feature-marquee-section::before,
.feature-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.feature-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #06090a 0%, rgba(6, 9, 10, 0) 100%);
}

.feature-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #06090a 0%, rgba(6, 9, 10, 0) 100%);
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 14px;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
}

.marquee-row-top .marquee-track {
  animation: marqueeLeft 28s linear infinite;
}

.marquee-row-bottom .marquee-track {
  animation: marqueeRight 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 17, 0.88);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.marquee-pill-highlight {
  background: linear-gradient(135deg, rgba(255, 79, 139, 0.98), rgba(255, 45, 117, 0.98));
  box-shadow:
    0 14px 28px rgba(255, 79, 139, 0.26),
    0 0 28px rgba(255, 79, 139, 0.16);
}

.pill-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(255, 79, 139, 0.3);
}

.marquee-pill-highlight .pill-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.section-block {
  padding: 90px 0 30px;
}

.section-centered {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f6d2df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-block h2 {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-lead {
  margin: 20px auto 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-lead.left {
  margin-left: 0;
}

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

.feature-card,
.workflow-panel,
.analytics-chart-card,
.mini-stat-card,
.pricing-card,
.testimonial-card,
.final-cta-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 17, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.feature-card {
  padding: 26px;
  border-radius: 28px;
  text-align: left;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255, 79, 139, 0.22);
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.feature-card code {
  color: #fff;
  font-family: inherit;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.workflow-copy h2 {
  margin-left: 0;
}

.workflow-copy .section-tag,
.agency-copy .section-tag,
.final-cta-card .section-tag {
  display: table;
}

.workflow-steps {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.workflow-step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 139, 0.95), rgba(255, 45, 117, 0.95));
  font-weight: 800;
  box-shadow: 0 0 22px rgba(255, 79, 139, 0.18);
}

.workflow-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.workflow-panel {
  padding: 24px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.workflow-panel::before {
  content: "";
  position: absolute;
  inset: auto 30px -40px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: rgba(255, 79, 139, 0.18);
  filter: blur(40px);
}

.workflow-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.workflow-panel-top strong {
  font-size: 20px;
}

.workflow-panel-top span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e0e4;
  font-size: 13px;
  font-weight: 700;
}

.workflow-calendar {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.calendar-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.calendar-card.active {
  background: linear-gradient(135deg, rgba(255, 79, 139, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 28px rgba(255, 79, 139, 0.12);
}

.calendar-card small,
.analytics-head small,
.mini-stat-card small,
.pricing-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.calendar-card p,
.mini-stat-card p,
.final-cta-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.analytics-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.analytics-chart-card {
  padding: 24px;
  border-radius: 30px;
}

.analytics-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.analytics-head strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.analytics-chip {
  padding: 9px 12px;
  border-radius: 999px;
  color: #081012;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.bar-chart {
  height: 260px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: end;
}

.bar-chart span {
  display: block;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #ff7ba9 0%, #ff3f82 100%);
  box-shadow: 0 0 22px rgba(255, 79, 139, 0.18);
}

.chart-labels {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.analytics-side {
  display: grid;
  gap: 18px;
}

.mini-stat-card {
  padding: 22px;
  border-radius: 24px;
}

.mini-stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.pricing-section {
  text-align: center;
}

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

.pricing-card {
  padding: 28px;
  border-radius: 30px;
  text-align: left;
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 79, 139, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(9, 15, 17, 0.9);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(255, 79, 139, 0.14);
}

.pricing-card h3 {
  margin: 14px 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

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

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow: 0 0 14px rgba(255, 79, 139, 0.22);
}

.pricing-button {
  width: 100%;
  justify-content: center;
}

.testimonial-head {
  margin-top: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.testimonial-nav,
.testimonial-dot {
  border: none;
  cursor: pointer;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.testimonial-rail {
  margin-top: 28px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 33%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.testimonial-rail::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  scroll-snap-align: start;
  padding: 28px;
  border-radius: 30px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 17, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.testimonial-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffd9e7;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-slide p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: #e7edf0;
}

.testimonial-meta {
  margin-top: 24px;
}

.testimonial-meta strong {
  display: block;
  font-size: 18px;
}

.testimonial-meta span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.testimonial-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
}

.agency-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: end;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-copy h2 {
  margin-left: 0;
  max-width: 760px;
}

.agency-copy .section-lead {
  max-width: 720px;
}

.agency-info-list {
  display: grid;
  gap: 16px;
  align-content: end;
}

.agency-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.agency-info-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agency-info-item span {
  font-size: 18px;
  line-height: 1.2;
}

.agency-info-item p {
  margin: 0;
  color: #d4dde2;
  line-height: 1.7;
}

.final-cta-card {
  padding: 34px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255, 79, 139, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(9, 15, 17, 0.92);
}

.final-cta-card h2 {
  margin-left: 0;
  max-width: 760px;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
  gap: 26px;
  padding: 0;
}

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

.footer-brand-block p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-bottom-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 6px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
}

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

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  body {
    padding: 16px;
  }

  .site-header {
    top: 16px;
    width: calc(100% - 32px);
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
      rgba(8, 13, 15, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-header.menu-open .site-nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav {
    width: 100%;
    padding: 10px;
    border-radius: 22px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.025);
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
  }

  .header-actions {
    width: 100%;
  }

  .page-content {
    padding-top: 112px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-marquee-section::before,
  .feature-marquee-section::after {
    width: 80px;
  }

  .feature-grid,
  .pricing-grid,
  .workflow-section,
  .analytics-layout,
  .footer-grid,
  .agency-layout {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .pricing-card,
  .testimonial-card,
  .final-cta-card,
  .workflow-panel,
  .analytics-chart-card,
  .mini-stat-card {
    border-radius: 24px;
  }

  .section-block {
    padding-top: 74px;
  }

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

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 42px;
  }

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

  .testimonial-rail {
    grid-auto-columns: minmax(320px, 58%);
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    top: 12px;
    padding: 12px;
  }

  .header-actions {
    width: 100%;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .page-content {
    padding-top: 98px;
  }

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

  .hero-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-phone {
    width: min(100%, 292px);
    border-radius: 34px;
    padding: 11px;
  }

  .phone-screen {
    padding: 18px 14px 16px;
    border-radius: 24px;
  }

  .ring-core {
    width: 144px;
    height: 144px;
  }

  .ring-core strong {
    font-size: 30px;
  }

  .ring-core span {
    font-size: 11px;
  }

  .floating-card {
    min-width: 118px;
    padding: 10px 12px;
  }

  .floating-card-left {
    left: -2px;
    top: 118px;
  }

  .floating-card-right {
    right: -2px;
    top: 82px;
  }

  .floating-card-bottom {
    right: 10px;
    bottom: 54px;
  }

  .floating-card strong {
    font-size: 18px;
  }

  .meta-pill {
    width: 100%;
    text-align: center;
  }

  .feature-marquee-section {
    padding-top: 8px;
  }

  .marquee-pill {
    padding: 11px 16px;
    font-size: 13px;
    gap: 10px;
  }

  .pill-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .section-block {
    padding-top: 62px;
  }

  .section-block h2 {
    font-size: 2.1rem;
  }

  .section-lead,
  .feature-card p,
  .workflow-step p,
  .calendar-card p,
  .mini-stat-card p,
  .final-cta-card p {
    font-size: 15px;
  }

  .feature-grid,
  .workflow-steps,
  .pricing-grid,
  .analytics-side {
    gap: 16px;
  }

  .feature-card,
  .pricing-card,
  .workflow-panel,
  .analytics-chart-card,
  .mini-stat-card,
  .testimonial-card,
  .final-cta-card {
    padding: 20px;
  }

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

  .testimonial-badges span {
    min-height: 82px;
    border-radius: 22px;
    font-size: 15px;
  }

  .agency-copy h2 {
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .agency-copy .section-tag {
    margin-bottom: 16px;
    font-size: 11px;
    padding: 9px 12px;
  }

  .agency-copy .section-lead {
    margin-top: 16px;
  }

  .agency-layout {
    gap: 22px;
    padding: 6px 0;
  }

  .agency-link {
    font-size: 1.9rem;
  }

  .agency-info-item p {
    font-size: 14px;
  }

  .testimonial-rail {
    grid-auto-columns: 88%;
  }

  .testimonial-slide {
    padding: 22px;
    border-radius: 24px;
  }

  .testimonial-slide p {
    font-size: 16px;
  }

  .price {
    font-size: 38px;
  }

  .bar-chart {
    height: 210px;
    gap: 10px;
  }

  .chart-labels {
    gap: 10px;
    font-size: 11px;
  }

  .final-cta-actions {
    width: 100%;
  }

  .final-cta-actions .cta-button,
  .final-cta-actions .secondary-button,
  .pricing-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-column a,
  .footer-bottom {
    font-size: 13px;
  }
}
