/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-primary: #CC0000;
  --color-secondary: #0088CC;
  --color-dark: #0A0F1C;
  --color-dark-lighter: #111827;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-secondary: #6B7280;
  --color-success: #10B981;
  --color-danger: #EF4444;
  --color-border: #E5E7EB;
  --color-divider: #2A2F3D;
  --color-hero-sub: #B0B8C8;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 48px;
  --container-padding: 24px;
  --max-width: 1200px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: all 0.3s ease;
}

@media (min-width: 768px) {
  :root {
    --section-padding: 80px;
    --container-padding: 40px;
  }
}

@media (min-width: 1240px) {
  :root {
    --container-padding: 0;
  }
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
  h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
  text-decoration: none;
}

/* Focus indicators */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding) 0;
}

.section--white {
  background: var(--color-white);
}

.section--light {
  background: var(--color-light);
}

.section__headline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section__intro {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  font-size: 18px;
}

.section__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 16px 32px;
  box-shadow: 0 2px 8px rgba(0, 136, 204, 0.2);
}

.btn--primary:hover {
  background: #006DA3;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
  text-decoration: none;
}

.btn--primary:active {
  background: #005C8A;
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 16px;
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  text-decoration: none;
}

.btn--final {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 18px 40px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2);
}

.btn--final:hover {
  background: #A30000;
  box-shadow: 0 0 24px rgba(204, 0, 0, 0.3);
  text-decoration: none;
}

.btn--final:active {
  background: #8B0000;
}

/* Mobile full-width buttons */
@media (max-width: 767px) {
  .section__cta .btn,
  .hero__cta-group .btn--primary {
    display: block;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== HERO ===== */
.hero {
  background: var(--color-dark);
  background: radial-gradient(ellipse at 30% 50%, #111827 0%, var(--color-dark) 70%);
  position: relative;
  overflow: hidden;
}

.skyline-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.05;
  pointer-events: none;
}

@media (min-width: 768px) {
  .skyline-svg {
    height: 200px;
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    min-height: 90vh;
    padding-top: 0;
    padding-bottom: 0;
    gap: 60px;
  }
}

.hero__text {
  flex: 1 1 60%;
}

.hero__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.hero__headline {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero__subheadline {
  color: var(--color-hero-sub);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.hero__micro {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.hero__mockup {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

/* Telegram Mockup */
.tg-mockup {
  width: 100%;
  max-width: 360px;
  background: #1B2430;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tg-mockup__header {
  background: var(--color-secondary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tg-mockup__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-white);
  flex-shrink: 0;
}

.tg-mockup__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tg-mockup__title {
  display: flex;
  flex-direction: column;
}

.tg-mockup__name {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.tg-mockup__status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.tg-mockup__chat {
  padding: 16px;
}

.tg-mockup__search-bar {
  background: #2A3441;
  border-radius: 20px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 40px;
}

.tg-mockup__typing {
  color: var(--color-white);
  font-size: 14px;
  white-space: nowrap;
}

.tg-mockup__cursor {
  width: 2px;
  height: 16px;
  background: var(--color-secondary);
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.tg-mockup__results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tg-mockup__result-card {
  background: #2A3441;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInCard 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes slideInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tg-mockup__thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  flex-shrink: 0;
}

.tg-mockup__result-info {
  display: flex;
  flex-direction: column;
}

.tg-mockup__result-title {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
}

.tg-mockup__result-sub {
  color: var(--color-text-secondary);
  font-size: 11px;
}

/* ===== SOCIAL PROOF STRIP ===== */
.social-strip {
  background: var(--color-dark-lighter);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.social-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .social-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}

.social-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .social-strip__item {
    padding: 0 32px;
  }
}

.social-strip__number,
.social-strip__number-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}

.social-strip__plus {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
}

.social-strip__label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.social-strip__divider {
  display: none;
}

@media (min-width: 768px) {
  .social-strip__divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--color-divider);
  }
}

/* ===== PROBLEM SECTION ===== */
.problem-story {
  max-width: 700px;
  margin: 0 auto 48px;
}

.problem-story p {
  margin-bottom: 16px;
  color: var(--color-text-secondary);
}

.problem-story__conclusion {
  color: var(--color-text) !important;
  font-size: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pain-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition);
}

.pain-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.pain-card__icon {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.pain-card__title {
  margin-bottom: 8px;
}

.pain-card__desc {
  color: var(--color-text-secondary);
}

/* ===== SOLUTION SECTION ===== */
.solution__content {
  max-width: 800px;
  margin: 0 auto;
}

.solution__text {
  margin-bottom: 40px;
}

.solution__text p {
  margin-bottom: 16px;
}

.solution__mockup {
  display: flex;
  justify-content: center;
}

.tg-chat-mockup {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin: 0 auto 40px;
}

.tg-chat-mockup__header {
  background: var(--color-secondary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.tg-chat-mockup__header img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--color-white);
}

.tg-chat-mockup__body {
  background: #1B2430;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tg-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}

.tg-msg--user {
  background: var(--color-secondary);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.tg-msg--bot {
  background: #2A3441;
  color: #E0E0E0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.tg-msg__card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.tg-msg__card-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.tg-msg__card small {
  color: var(--color-text-secondary);
  font-size: 11px;
}

.tg-msg__file {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--color-secondary);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card__icon {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.feature-card__title {
  margin-bottom: 8px;
}

.feature-card__desc {
  color: var(--color-text-secondary);
}

/* Center last card if alone in its row (7th card) */
@media (min-width: 1024px) {
  .features-grid .feature-card:last-child:nth-child(3n+1) {
    grid-column: 2;
  }
}

/* ===== HOW IT WORKS (STEPPER) ===== */
.stepper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stepper {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
}

.stepper__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 1;
}

@media (min-width: 768px) {
  .stepper__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 0 12px;
  }
}

.stepper__circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper__line {
  display: none;
}

@media (min-width: 768px) {
  .stepper__line {
    display: block;
    position: absolute;
    top: 24px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: #D1D5DB;
  }

  .stepper__step:last-child .stepper__line {
    display: none;
  }
}

/* Mobile: vertical connecting line */
@media (max-width: 767px) {
  .stepper__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% + 32px - 48px);
    background: #D1D5DB;
  }
}

.stepper__content {
  flex: 1;
}

.stepper__title {
  margin-bottom: 4px;
}

.stepper__desc {
  color: var(--color-text-secondary);
  font-size: 15px;
}

@media (min-width: 768px) {
  .stepper__desc {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ===== WHY IT MATTERS (COMPARISON TABLE) ===== */
.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-width: 500px;
}

.comparison-table__header {
  padding: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  text-align: left;
}

.comparison-table__header--bad {
  background: var(--color-danger);
}

.comparison-table__header--good {
  background: var(--color-success);
}

.comparison-table__cell {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.comparison-table__cell--bad {
  background: #FEF2F2;
}

.comparison-table__cell--good {
  background: #F0FDF4;
}

tr:last-child .comparison-table__cell {
  border-bottom: none;
}

tr:nth-child(even) .comparison-table__cell--bad {
  background: #FFF5F5;
}

tr:nth-child(even) .comparison-table__cell--good {
  background: #F5FFF9;
}

/* Outcomes */
.outcomes {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.outcome-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-item p {
  font-size: 16px;
}

.outcome-item strong {
  font-weight: 600;
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Mobile carousel */
@media (max-width: 767px) {
  .testimonials {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .testimonial-card {
    min-width: 85vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

.testimonial-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--color-secondary);
  position: relative;
}

.testimonial-card__quote {
  font-size: 48px;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.testimonial-card__agency {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ===== ACCORDION (Objections + FAQ) ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: var(--font-body);
}

.accordion__trigger:hover .accordion__question {
  color: var(--color-secondary);
}

.accordion__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
  flex: 1;
}

@media (min-width: 768px) {
  .accordion__question {
    font-size: 18px;
  }
}

.accordion__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-secondary);
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}

.accordion__content.is-open {
  opacity: 1;
}

.accordion__content p {
  color: var(--color-text-secondary);
  padding-bottom: 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--color-dark);
  background: radial-gradient(ellipse at 50% 50%, #111827 0%, var(--color-dark) 70%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.final-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__headline {
  color: var(--color-white);
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .final-cta__headline {
    font-size: 48px;
    line-height: 56px;
  }
}

.final-cta__body {
  color: var(--color-hero-sub);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__micro {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark);
  padding: 24px 0;
  border-top: 1px solid var(--color-divider);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.footer__links a:hover {
  color: var(--color-white);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--color-secondary);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
  }

  body.sticky-active {
    padding-bottom: 56px;
  }
}

.sticky-cta__link {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta__link:hover {
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delay for cards */
.pain-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.pain-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.pain-grid .fade-up:nth-child(3) { transition-delay: 200ms; }
.pain-grid .fade-up:nth-child(4) { transition-delay: 300ms; }
.pain-grid .fade-up:nth-child(5) { transition-delay: 400ms; }
.pain-grid .fade-up:nth-child(6) { transition-delay: 500ms; }

.features-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.features-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.features-grid .fade-up:nth-child(3) { transition-delay: 200ms; }
.features-grid .fade-up:nth-child(4) { transition-delay: 300ms; }
.features-grid .fade-up:nth-child(5) { transition-delay: 400ms; }
.features-grid .fade-up:nth-child(6) { transition-delay: 500ms; }
.features-grid .fade-up:nth-child(7) { transition-delay: 600ms; }

.testimonials .fade-up:nth-child(1) { transition-delay: 0ms; }
.testimonials .fade-up:nth-child(2) { transition-delay: 100ms; }
.testimonials .fade-up:nth-child(3) { transition-delay: 200ms; }

.stepper .fade-up:nth-child(1) { transition-delay: 0ms; }
.stepper .fade-up:nth-child(2) { transition-delay: 150ms; }
.stepper .fade-up:nth-child(3) { transition-delay: 300ms; }
.stepper .fade-up:nth-child(4) { transition-delay: 450ms; }

/* ===== FOOTER CONTACTS ===== */
.footer__contacts {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__contacts a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted, #8a8f98);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__contacts a:hover {
  color: #fff;
}

.footer__contacts svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer__contacts {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== FOOTER LEGAL ===== */
.footer__legal {
  width: 100%;
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal p {
  color: var(--color-text-muted, #8a8f98);
  font-size: 0.75rem;
  margin: 0;
}

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

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .tg-mockup__result-card {
    opacity: 1;
    transform: none;
  }

  .tg-mockup__cursor {
    animation: none;
  }

  .sticky-cta {
    transition: none;
  }
}
