/* ===== VARIABLES ===== */
:root {
  --bg: #0a0f14;
  --bg-gradient: linear-gradient(135deg, #0a0f14 0%, #1a2332 50%, #0a0f14 100%);
  --surface: rgba(22, 32, 45, 0.8);
  --surface-light: rgba(35, 50, 70, 0.6);
  --border: rgba(79, 209, 197, 0.2);
  --accent: #4fd1c5;
  --accent-strong: #38b2ac;
  --accent-glow: rgba(79, 209, 197, 0.4);
  --text: #f1fbfb;
  --text-muted: rgba(241, 251, 251, 0.6);
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 10px 40px rgba(79, 209, 197, 0.2);
}

/* ===== DECORATIVE BACKGROUND ELEMENTS ===== */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--accent {
  background: radial-gradient(circle, rgba(79, 209, 197, 0.15) 0%, transparent 70%);
}

.bg-glow--purple {
  background: radial-gradient(circle, rgba(138, 79, 209, 0.1) 0%, transparent 70%);
}

.bg-glow--blue {
  background: radial-gradient(circle, rgba(79, 137, 209, 0.12) 0%, transparent 70%);
}

/* Grid pattern overlay */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(79, 209, 197, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 209, 197, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* Animated gradient border between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(79, 209, 197, 0.3) 20%, 
    rgba(79, 209, 197, 0.6) 50%, 
    rgba(79, 209, 197, 0.3) 80%, 
    transparent 100%);
  margin: 0;
  border: none;
}

/* Section glow effects */
.section-glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}

.section-glow--top {
  top: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(79, 209, 197, 0.06) 0%, transparent 60%);
}

.section-glow--bottom {
  bottom: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(79, 209, 197, 0.06) 0%, transparent 60%);
}

/* Floating orbs animation */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(20px, -30px) scale(1.1); opacity: 0.7; }
  50% { transform: translate(-10px, -50px) scale(0.9); opacity: 0.6; }
  75% { transform: translate(-30px, -20px) scale(1.05); opacity: 0.4; }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 15s ease-in-out infinite;
  pointer-events: none;
}

/* Ensure content is above decorative elements */
.container {
  position: relative;
  z-index: 1;
}

.section-header {
  position: relative;
  z-index: 1;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #63e6be 50%, var(--accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0a0f14;
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(79, 209, 197, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.btn--white {
  background: var(--white);
  color: #0a0f14;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

.btn--large {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 14px;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* ===== NAVIGATION ===== */
/* Отступ для Telegram WebApp - применяется через JS переменную --safe-top только на мобильных */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 15, 20, 0.9);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Safe area только на мобильных */
@media (max-width: 768px) {
  .nav {
    padding-top: calc(16px + var(--safe-top, 0px));
  }
  
  .nav--scrolled {
    padding-top: calc(12px + var(--safe-top, 0px));
  }
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-img {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
  display: block;
}

.nav__badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #0a0f14;
}

.nav__title {
  font-size: 20px;
  font-weight: 700;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 209, 197, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(56, 178, 172, 0.1), transparent),
    var(--bg-gradient);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 5s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  margin-bottom: 48px;
}

.hero__trial {
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.hero__mockup {
  display: none;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(79, 209, 197, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, transparent 0%, rgba(79, 209, 197, 0.03) 50%, transparent 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.feature-card__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__list li {
  color: var(--text-muted);
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}

.feature-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ===== BUSINESS BENEFITS ===== */
.business-benefits {
  background: linear-gradient(180deg, 
    rgba(10, 15, 20, 1) 0%, 
    rgba(79, 209, 197, 0.04) 30%,
    rgba(138, 79, 209, 0.03) 70%,
    rgba(10, 15, 20, 1) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.business-benefits::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.business-benefits::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 79, 209, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 24px;
  border-radius: var(--radius-lg, 24px);
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.benefit-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f1fbfb;
  color: var(--text, #f1fbfb);
}

.benefit-card__text {
  font-size: 15px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  line-height: 1.6;
}

/* ===== TARGET AUDIENCE ===== */
.target-audience {
  background: var(--bg);
  padding: 100px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.audience-card {
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 24px;
  border-radius: var(--radius-lg, 24px);
  padding: 32px;
  transition: all 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.audience-card__icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.audience-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f1fbfb;
  color: var(--text, #f1fbfb);
}

.audience-card__subtitle {
  font-size: 15px;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
  margin-bottom: 20px;
  font-weight: 500;
}

.audience-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card__list li {
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}

.audience-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
  font-weight: 600;
}

/* ===== PROBLEMS & SOLUTIONS ===== */
.problems-solutions {
  background: linear-gradient(180deg, 
    rgba(10, 15, 20, 1) 0%,
    rgba(209, 79, 79, 0.03) 25%,
    rgba(79, 209, 137, 0.04) 75%,
    rgba(10, 15, 20, 1) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.problems-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(209, 79, 79, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.problems-solutions::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 209, 137, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.problems-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.problems-tab {
  padding: 12px 24px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.problems-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.problems-tab.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: var(--accent);
  color: #0a0f14;
}

.problems-content {
  display: none;
}

.problems-content.active {
  display: block;
}

.problem-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 16px;
  border-radius: var(--radius, 16px);
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.problem-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.problem-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #f1fbfb;
  color: var(--text, #f1fbfb);
}

.problem-text p {
  font-size: 14px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  margin: 0;
}

.solution-arrow {
  font-size: 24px;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
  font-weight: 700;
  flex-shrink: 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.solution-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  background: linear-gradient(135deg, var(--accent, #4fd1c5) 0%, var(--accent-strong, #38b2ac) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #0a0f14;
  flex-shrink: 0;
}

.solution-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
}

.solution-text p {
  font-size: 14px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  margin: 0;
}

/* ===== MAIN FEATURES GRID ===== */
.main-features {
  background: linear-gradient(180deg, 
    rgba(10, 15, 20, 1) 0%,
    rgba(79, 209, 197, 0.03) 50%,
    rgba(10, 15, 20, 1) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.main-features::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.main-features::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 137, 209, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-box {
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 24px;
  border-radius: var(--radius-lg, 24px);
  padding: 32px;
  transition: all 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: #4fd1c5;
  border-color: var(--accent, #4fd1c5);
  box-shadow: 0 20px 40px rgba(79, 209, 197, 0.15);
  box-shadow: var(--shadow-accent, 0 20px 40px rgba(79, 209, 197, 0.15));
}

.feature-box__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-box__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #f1fbfb;
  color: var(--text, #f1fbfb);
}

.feature-box__text {
  font-size: 15px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, 
    rgba(10, 15, 20, 1) 0%,
    rgba(138, 79, 209, 0.04) 30%,
    rgba(79, 209, 197, 0.05) 70%,
    rgba(10, 15, 20, 1) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(138, 79, 209, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.how-it-works::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(79, 209, 197, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 24px;
  border-radius: var(--radius-lg, 24px);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: #4fd1c5;
  border-color: var(--accent, #4fd1c5);
  box-shadow: 0 20px 40px rgba(79, 209, 197, 0.15);
  box-shadow: var(--shadow-accent, 0 20px 40px rgba(79, 209, 197, 0.15));
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  background: linear-gradient(135deg, var(--accent, #4fd1c5) 0%, var(--accent-strong, #38b2ac) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #0a0f14;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f1fbfb;
  color: var(--text, #f1fbfb);
}

.step-text {
  font-size: 15px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4fd1c5, #38b2ac);
  background: linear-gradient(90deg, var(--accent, #4fd1c5), var(--accent-strong, #38b2ac));
  align-self: center;
  border-radius: 2px;
  margin: 0 -10px;
}

/* ===== FUNCTIONS ===== */
.functions {
  background: #0a0f14;
  background: var(--bg, #0a0f14);
}

.function-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.function-row:last-child {
  margin-bottom: 0;
}

.function-row--reverse {
  direction: rtl;
}

.function-row--reverse > * {
  direction: ltr;
}

.function-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(79, 209, 197, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
  margin-bottom: 12px;
}

.function-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.function-text {
  font-size: 16px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
  line-height: 1.7;
}

.function-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.function-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.function-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge--green {
  background: rgba(79, 209, 197, 0.15);
  color: var(--accent);
}

/* Estimate preview */
.estimate-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimate-row-preview {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.estimate-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  padding-top: 8px;
}

/* Chat preview */
.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
}

.chat-message--other {
  background: var(--surface-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message--own {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0a0f14;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Photos preview */
.photo-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.photo-item-preview {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--surface-light), var(--surface));
  border-radius: 12px;
}

/* ===== BENEFITS ===== */
.benefits {
  background: linear-gradient(180deg, transparent 0%, rgba(79, 209, 197, 0.03) 100%);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.benefit-item {
  text-align: center;
}

.benefit-item__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.benefit-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-item__text {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(180deg, 
    rgba(10, 15, 20, 1) 0%,
    rgba(79, 209, 197, 0.04) 50%,
    rgba(10, 15, 20, 1) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(79, 209, 197, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(138, 79, 209, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(22, 32, 45, 0.8);
  background: var(--surface, rgba(22, 32, 45, 0.8));
  border: 2px solid rgba(79, 209, 197, 0.2);
  border-color: var(--border, rgba(79, 209, 197, 0.2));
  border-radius: 24px;
  border-radius: var(--radius-lg, 24px);
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 209, 197, 0.4);
}

.pricing-card--popular {
  border-color: #4fd1c5;
  border-color: var(--accent, #4fd1c5);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.08) 0%, rgba(22, 32, 45, 0.8) 100%);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.08) 0%, var(--surface, rgba(22, 32, 45, 0.8)) 100%);
}

.pricing-card--popular:hover {
  box-shadow: 0 20px 40px rgba(79, 209, 197, 0.15);
  box-shadow: var(--shadow-accent, 0 20px 40px rgba(79, 209, 197, 0.15));
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  background: linear-gradient(135deg, var(--accent, #4fd1c5) 0%, var(--accent-strong, #38b2ac) 100%);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #0a0f14;
  white-space: nowrap;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(79, 209, 197, 0.2);
  border-bottom-color: var(--border, rgba(79, 209, 197, 0.2));
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 42px;
  font-weight: 800;
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
}

.pricing-card__period {
  font-size: 16px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
}

.pricing-card__savings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(79, 209, 197, 0.2);
  border-top-color: var(--border, rgba(79, 209, 197, 0.2));
}

.pricing-card__savings span {
  font-size: 13px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
}

.pricing-card__savings small {
  color: #4fd1c5;
  color: var(--accent, #4fd1c5);
  font-weight: 600;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 15px;
  color: rgba(241, 251, 251, 0.6);
  color: var(--text-muted, rgba(241, 251, 251, 0.6));
}

.pricing-card__features li .muted {
  opacity: 0.5;
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 50%, #319795 100%);
  background: linear-gradient(135deg, var(--accent, #4fd1c5) 0%, var(--accent-strong, #38b2ac) 50%, #319795 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(-90deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #0a0f14;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: 17px;
  color: rgba(10, 15, 20, 0.7);
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(10, 15, 20, 1) 0%, rgba(5, 8, 12, 1) 100%);
  background: linear-gradient(180deg, var(--bg, rgba(10, 15, 20, 1)) 0%, rgba(5, 8, 12, 1) 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(79, 209, 197, 0.2);
  border-top-color: var(--border, rgba(79, 209, 197, 0.2));
  position: relative;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #0a0f14;
}

.footer__logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  display: block;
}

.footer__title {
  font-size: 18px;
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__copy {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .function-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .function-row--reverse {
    direction: ltr;
  }

  .hero__stats {
    gap: 32px;
  }
  
  .problem-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .solution-arrow {
    transform: rotate(90deg);
    text-align: center;
    width: 100%;
    display: block;
    padding: 8px 0;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .step-connector {
    width: 4px;
    height: 40px;
    margin: -12px 0;
  }
  
  .step-card {
    max-width: 100%;
    width: 100%;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav__container {
    padding: 0 10px;
  }

  .nav__logo {
    gap: 6px;
    flex-shrink: 0;
  }

  .nav__badge {
    width: 28px;
    height: 28px;
    font-size: 10px;
    border-radius: 6px;
  }

  .nav__logo-img {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
  }

  .nav__title {
    font-size: 12px;
  }

  .nav__actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .nav__actions .btn {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .nav__link {
    display: none;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero__subtitle {
    font-size: 15px;
  }
  
  .hero__badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero__stat-value {
    font-size: 24px;
  }

  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .section-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
  
  /* Hide decorative elements on mobile for performance */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 10%, 
      rgba(79, 209, 197, 0.4) 50%, 
      transparent 90%) !important;
  }
  
  .section-glow {
    height: 100px;
  }
  
  .business-benefits::before,
  .business-benefits::after,
  .target-audience::before,
  .problems-solutions::before,
  .problems-solutions::after,
  .main-features::before,
  .main-features::after,
  .how-it-works::before,
  .how-it-works::after,
  .pricing::before,
  .pricing::after {
    display: none;
  }

  .features__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .benefit-item__icon {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .benefit-item__title {
    font-size: 15px;
  }
  
  .benefit-item__text {
    font-size: 13px;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }
  
  /* ===== BUSINESS BENEFITS MOBILE ===== */
  .business-benefits {
    padding: 60px 0;
  }
  
  .benefits-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  
  .benefit-card {
    padding: 24px 20px;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 20px !important;
  }
  
  .benefit-card__icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .benefit-card__title {
    font-size: 17px;
    margin-bottom: 8px;
    color: #f1fbfb !important;
  }
  
  .benefit-card__text {
    font-size: 14px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  /* ===== TARGET AUDIENCE MOBILE ===== */
  .target-audience {
    padding: 60px 0;
  }
  
  .audience-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  
  .audience-card {
    padding: 24px 20px;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 20px !important;
  }
  
  .audience-card__icon {
    font-size: 44px;
    margin-bottom: 16px;
  }
  
  .audience-card__title {
    font-size: 19px;
    margin-bottom: 6px;
    color: #f1fbfb !important;
  }
  
  .audience-card__subtitle {
    font-size: 14px;
    margin-bottom: 16px;
    color: #4fd1c5 !important;
  }
  
  .audience-card__list {
    gap: 10px;
  }
  
  .audience-card__list li {
    font-size: 14px;
    padding-left: 20px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  .audience-card__list li::before {
    color: #4fd1c5 !important;
  }
  
  /* ===== PROBLEMS & SOLUTIONS MOBILE ===== */
  .problems-solutions {
    padding: 60px 0;
  }
  
  .problems-tabs {
    gap: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .problems-tab {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(22, 32, 45, 0.8);
    border: 2px solid rgba(79, 209, 197, 0.2);
  }
  
  .problems-tab.active {
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    border-color: #4fd1c5;
    color: #0a0f14;
  }
  
  .problem-row {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 16px;
    margin-bottom: 16px;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 16px !important;
  }
  
  .problem-item,
  .solution-item {
    gap: 12px;
    min-width: auto;
    flex: none;
    width: 100%;
  }
  
  .problem-icon {
    font-size: 28px;
    min-width: 28px;
  }
  
  .solution-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 14px;
  }
  
  .problem-text strong,
  .solution-text strong {
    font-size: 15px;
  }
  
  .problem-text p,
  .solution-text p {
    font-size: 13px;
  }
  
  .solution-arrow {
    font-size: 20px;
    padding: 4px 0;
    text-align: center;
    width: 100%;
  }
  
  /* ===== MAIN FEATURES MOBILE ===== */
  .main-features {
    padding: 60px 0;
  }
  
  .features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  
  .feature-box {
    padding: 24px 20px;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 20px !important;
  }
  
  .feature-box__icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .feature-box__title {
    font-size: 17px;
    margin-bottom: 10px;
    color: #f1fbfb !important;
  }
  
  .feature-box__text {
    font-size: 14px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  /* ===== HOW IT WORKS MOBILE ===== */
  .how-it-works {
    padding: 60px 0;
  }
  
  .steps-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
  }
  
  .step-card {
    padding: 28px 20px;
    width: 100%;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 1px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 20px !important;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%) !important;
  }
  
  .step-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f1fbfb !important;
  }
  
  .step-text {
    font-size: 14px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  .step-connector {
    width: 4px;
    height: 32px;
    margin: -8px 0;
    background: linear-gradient(180deg, #4fd1c5, #38b2ac) !important;
  }
  
  /* ===== PRICING MOBILE ===== */
  .pricing {
    padding: 60px 0;
  }
  
  .pricing__grid {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .pricing-card {
    padding: 28px 20px;
    background: rgba(22, 32, 45, 0.8) !important;
    border: 2px solid rgba(79, 209, 197, 0.2) !important;
    border-radius: 20px !important;
  }
  
  .pricing-card--popular {
    border-color: #4fd1c5 !important;
    background: linear-gradient(180deg, rgba(79, 209, 197, 0.08) 0%, rgba(22, 32, 45, 0.8) 100%) !important;
  }
  
  .pricing-card__name {
    font-size: 18px;
    color: #f1fbfb !important;
  }
  
  .pricing-card__amount {
    font-size: 36px;
    color: #4fd1c5 !important;
  }
  
  .pricing-card__period {
    font-size: 14px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  .pricing-card__savings span {
    font-size: 12px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  .pricing-card__savings small {
    color: #4fd1c5 !important;
  }
  
  .pricing-card__features li {
    font-size: 14px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  .pricing__note {
    font-size: 14px;
    margin-top: 32px;
    color: rgba(241, 251, 251, 0.6) !important;
  }
  
  /* ===== CTA MOBILE ===== */
  .cta {
    padding: 60px 0;
  }
  
  .cta__title {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .cta__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .btn--large {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  /* ===== FOOTER MOBILE ===== */
  .footer {
    padding: 32px 0;
  }
  
  .footer__brand {
    gap: 10px;
  }
  
  .footer__logo-img {
    width: 32px;
    height: 32px;
  }
  
  .footer__title {
    font-size: 16px;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer__link {
    font-size: 13px;
  }
  
  .footer__copy {
    font-size: 12px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .hero__title {
    font-size: 24px;
  }
  
  .hero__subtitle {
    font-size: 14px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .problems-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .problems-tab {
    text-align: center;
  }
  
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card__title,
  .audience-card__title,
  .feature-box__title {
    font-size: 16px;
  }
  
  .step-title {
    font-size: 17px;
  }
  
  .pricing-card__amount {
    font-size: 32px;
  }
  
  .cta__title {
    font-size: 20px;
  }
}
