/* ===== Landing Page Styles ===== */
/* Aesthetic: Modern, Vibrant, Clean */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fafbfc;
  --color-surface: #f5f7fa;
  --color-surface-elevated: #ffffff;
  --color-text: #1a202c;
  --color-text-muted: #64748b;
  --color-profit: #10b981;
  --color-loss: #ef4444;
  --color-accent: #6366f1;
  --color-warning: #f59e0b;
  --color-highlight: #8b5cf6;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'PT Sans', sans-serif;
  --font-serif: 'PT Serif', serif;
}

.landing-page {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== Typography ===== */

.text-loss {
  color: var(--color-loss);
}

.text-profit {
  color: var(--color-profit);
}

.text-outline {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-profit);
}

.text-outline-white {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-profit);
}

.text-highlight {
  font-family: var(--font-display);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Floating Background Icons ===== */

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(199, 210, 254, 0.2) 0%,
    rgba(233, 213, 255, 0.15) 35%,
    rgba(220, 252, 231, 0.25) 70%,
    rgba(254, 243, 199, 0.2) 100%
  );
  z-index: 0;
}

.floating-icon {
  position: absolute;
  opacity: 0.08;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  z-index: 0;
}

.floating-icon-1 {
  top: 10%;
  left: 5%;
  animation: float1 20s infinite;
}

.floating-icon-2 {
  top: 60%;
  left: 10%;
  animation: float2 25s infinite;
}

.floating-icon-3 {
  top: 20%;
  right: 8%;
  animation: float3 18s infinite;
}

.floating-icon-4 {
  bottom: 15%;
  right: 12%;
  animation: float4 22s infinite;
}

.floating-icon-5 {
  top: 45%;
  right: 5%;
  animation: float1 24s infinite;
}

.floating-icon-6 {
  bottom: 30%;
  left: 15%;
  animation: float2 19s infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, -60px) rotate(-3deg);
  }
  75% {
    transform: translate(-40px, -30px) rotate(7deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40px, 30px) rotate(-7deg);
  }
  50% {
    transform: translate(30px, 60px) rotate(5deg);
  }
  75% {
    transform: translate(40px, 20px) rotate(-5deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(25px, 35px) rotate(8deg) scale(1.05);
  }
  66% {
    transform: translate(-35px, 15px) rotate(-6deg) scale(0.95);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  40% {
    transform: translate(-30px, -25px) rotate(-10deg) scale(1.08);
  }
  80% {
    transform: translate(35px, -40px) rotate(8deg) scale(0.92);
  }
}

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

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-label {
  display: inline-block;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border: 2px solid var(--color-accent);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  color: var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-profit);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  width: fit-content;
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
  white-space: nowrap;
}

.cta-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

.cta-primary.large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.cta-primary svg {
  transition: transform 0.3s ease;
}

.cta-primary:hover svg {
  transform: translateX(4px);
}

.cta-note {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Hero Visual */

.hero-visual {
  position: relative;
}

.data-card {
  background: white;
  border: 2px solid #fee2e2;
  padding: 2.5rem;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.data-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fef2f2 0%, #fff 50%);
  z-index: -1;
  border-radius: 16px;
}

.data-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.data-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-loss);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.data-value::before {
  content: '−₽';
  font-size: 0.6em;
  margin-right: 0.5rem;
}

.data-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--color-surface-elevated);
  padding-top: 1.5rem;
}

.data-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
}

.data-item span:first-child {
  color: var(--color-text-muted);
}

/* ===== Section Styles ===== */

.problem-section,
.solution-section,
.features-section,
.pricing-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10rem 4rem;
}

.section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.section-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* ===== Problem Section ===== */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: white;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.problem-icon {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.problem-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.problem-text {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.problem-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-surface-elevated);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.problem-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.problem-quote {
  background: linear-gradient(135deg, #f5f3ff 0%, #fef3c7 100%);
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .problem-quotes {
    grid-template-columns: 1fr;
  }
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ===== Solution Section ===== */

.solution-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.solution-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solution-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent);
  min-width: 3rem;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  color: var(--color-text-muted);
  margin: 0;
}

/* Dashboard Screenshot */

.solution-visual {
  width: 100%;
}

.screenshots-stack {
  position: relative;
  width: 100%;
  min-height: 900px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-screenshot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2),
              0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  background: white;
  transition: all 0.3s ease;
}

.screenshot-main {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.screenshot-secondary {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 1;
  width: 100%;
}

.dashboard-screenshot:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25),
              0 15px 50px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.screenshot-iframe {
  width: 100%;
  height: 950px;
  border: none;
  display: block;
  background: #FAFAFA;
  pointer-events: none;
}

.screenshot-image-full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}

@media (max-width: 1024px) {
  .screenshots-stack {
    min-height: auto;
  }

  .screenshot-main,
  .screenshot-secondary {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .screenshot-secondary {
    margin-top: 2rem;
  }

  .screenshot-iframe {
    height: 700px;
  }

  .screenshot-image-full {
    width: 100%;
    height: auto;
  }

  .dashboard-screenshot {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .dashboard-screenshot:hover {
    transform: translateY(-5px) !important;
  }
}

/* Solution Features */
.solution-features {
  margin-top: 4rem;
}

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

.features-section {
  position: relative;
}

.feature-bg-icon {
  position: absolute;
  opacity: 0.2;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.pricing-card,
.feature-card {
  position: relative;
  z-index: 10;
}

.section-header {
  position: relative;
  z-index: 1;
}

.feature-bg-icon-1 {
  top: 15%;
  left: 5%;
  animation: float1 22s infinite;
}

.feature-bg-icon-2 {
  top: 50%;
  left: 8%;
  animation: float2 28s infinite;
}

.feature-bg-icon-3 {
  top: 25%;
  right: 10%;
  animation: float3 20s infinite;
}

.feature-bg-icon-4 {
  bottom: 20%;
  right: 7%;
  animation: float4 25s infinite;
}

.feature-bg-icon-5 {
  top: 60%;
  right: 15%;
  animation: float1 26s infinite;
}

.feature-bg-icon-6 {
  bottom: 35%;
  left: 12%;
  animation: float2 21s infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.feature-card.primary::before {
  background: radial-gradient(circle, var(--color-profit) 0%, transparent 70%);
}

.feature-card.secondary::before {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
}

.feature-card.tertiary::before {
  background: radial-gradient(circle, var(--color-warning) 0%, transparent 70%);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card.primary:hover {
  border-color: var(--color-profit);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

.feature-card.secondary:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.2);
}

.feature-card.tertiary:hover {
  border-color: var(--color-warning);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.2);
}

.feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background: var(--color-surface-elevated);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.feature-card.primary .feature-badge {
  color: var(--color-profit);
  border: 1px solid var(--color-profit);
}

.feature-card.secondary .feature-badge {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.feature-card.tertiary .feature-badge {
  color: var(--color-loss);
  border: 1px solid var(--color-loss);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--color-profit);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  opacity: 0.3;
  z-index: -1;
  border-radius: 20px;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--color-profit);
  color: var(--color-bg);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-surface-elevated);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem 0;
  color: var(--color-accent);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.pricing-old {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.pricing-features li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.0625rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-profit);
  font-weight: 700;
}

.pricing-roi {
  background: var(--color-surface-elevated);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.roi-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.roi-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-profit);
  margin-bottom: 0.5rem;
}

.roi-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.pricing-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pricing-cta:hover {
  background: var(--color-text);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 32, 44, 0.2);
}

.pricing-card.featured .pricing-cta {
  background: var(--color-profit);
  border-color: var(--color-profit);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.39);
}

.pricing-card.featured .pricing-cta:hover {
  background: #059669;
  border-color: #059669;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-elevated);
}

.pricing-guarantee svg {
  color: var(--color-profit);
  flex-shrink: 0;
}

.pricing-guarantee p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ===== Final CTA Section ===== */

.final-cta-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-profit) 0%, transparent 50%);
  opacity: 0.08;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.final-cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.final-cta-text {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.final-cta-actions {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
}

.final-cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-profit);
  line-height: 1;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-surface-elevated);
}

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

.landing-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-accent) 20%,
    var(--color-profit) 40%,
    var(--color-warning) 60%,
    var(--color-highlight) 80%,
    transparent 100%
  );
  opacity: 0.3;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 0 0 auto;
  max-width: 350px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  white-space: nowrap;
}

.footer-column a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  position: relative;
  padding-left: 0;
  white-space: nowrap;
}

.footer-column a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ===== Animations ===== */

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

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

[data-landing-target="fadeIn"] {
  animation: fadeIn 0.8s ease forwards;
}

[data-landing-target="slideUp"] {
  animation: slideUp 0.8s ease forwards;
}

.problem-card[style*="opacity: 1"],
.feature-card[style*="opacity: 1"],
.pricing-card[style*="opacity: 1"] {
  animation: fadeIn 0.8s ease forwards;
}

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

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .final-cta-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .problem-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-header {
    gap: 1rem;
  }

  .section-number {
    font-size: 0.875rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-section,
  .solution-section,
  .features-section,
  .pricing-section {
    padding: 4rem 2rem;
  }

  .final-cta-section {
    padding: 4rem 2rem;
  }
}
