/* ====== FONTS ====== */
@font-face {
  font-family: 'GraphikLCG';
  src: url('../fonts/Graphik-Regular-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GraphikLCG';
  src: url('../fonts/Graphik-Medium-Web.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GraphikLCG';
  src: url('../fonts/Graphik-Bold-Web.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GraphikLCG';
  src: url('../fonts/Graphik-Bold-Web.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg-dark: #1b1f18;
  --bg-dark-alt: #171715;
  --accent: #4dbd01;
  --accent-hover: #3da300;
  --accent-light: #4fb906;
  --card-grey: #f3f3f3;
  --card-green: #f3faee;
  --text-primary: #1a1e17;
  --text-secondary: #5c5f5a;
  --text-light: #cfcece;
  --white: #ffffff;
  --radius-card: 30px;
  --radius-btn: 15px;
  --radius-modal: 48px;
  --font: 'GraphikLCG', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ====== TYPOGRAPHY ====== */
.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--text-primary);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--lg {
  font-size: 18px;
  padding: 18px 40px;
}

.btn--full {
  width: 100%;
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-dark);
  height: 68px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.header__nav a {
  color: var(--text-light);
  font-size: 15px;
  transition: color 0.2s;
}

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

.header__cta {
  font-size: 14px;
  padding: 12px 24px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ====== HERO ====== */
.hero {
  padding: 120px 0 80px;
  background: var(--bg-dark-alt);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content {
  flex: 1;
}

.hero__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.6;
}

.hero__visual {
  flex-shrink: 0;
}

.hero__phone-placeholder {
  opacity: 0.6;
}

/* ====== CARD COMPONENT ====== */
.card {
  padding: 32px;
  border-radius: var(--radius-card);
  transition: transform 0.2s;
}

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

.card--grey {
  background: var(--card-grey);
}

.card--green {
  background: var(--card-green);
}

.card__icon {
  margin-bottom: 16px;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ====== ADVANTAGES (БЛОК 2) ====== */
.advantages {
  padding: 100px 0;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ====== HOW IT WORKS (БЛОК 3) ====== */
.how-it-works {
  padding: 100px 0;
  background: var(--card-grey);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ====== NO NEED (БЛОК 4) ====== */
.no-need {
  padding: 100px 0;
}

.no-need__list {
  max-width: 700px;
  margin: 0 auto 48px;
}

.no-need__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-primary);
}

.no-need__cross {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fee;
  color: #d44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.no-need .text-center,
.no-need .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
}

/* ====== VIDEO (БЛОК 5) ====== */
.video-section {
  padding: 100px 0;
  background: var(--card-grey);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.video-play {
  transition: transform 0.2s;
}

.video-wrapper:hover .video-play {
  transform: scale(1.1);
}

.video-placeholder__text {
  color: var(--text-light);
  font-size: 16px;
}

/* ====== TESTIMONIALS (БЛОК 6) ====== */
.testimonials {
  padding: 100px 0;
}

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

.testimonial-card {
  background: var(--card-grey);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.testimonial-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-card__text strong {
  color: var(--accent);
  font-weight: 700;
}

/* ====== BENEFITS (БЛОК 7) ====== */
.benefits {
  padding: 100px 0;
  background: var(--card-grey);
}

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

/* ====== BONUSES (БЛОК 8) ====== */
.bonuses {
  padding: 100px 0;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ====== LAUNCH STEPS (БЛОК 9) ====== */
.launch {
  padding: 100px 0;
  background: var(--bg-dark-alt);
}

.launch .section-title {
  color: var(--white);
  text-align: center;
}

.launch__steps {
  max-width: 700px;
  margin: 0 auto;
}

.launch-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.launch-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.launch-step__text {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.5;
  padding-top: 10px;
}

.launch-step__text a {
  color: var(--accent);
  text-decoration: underline;
}

/* ====== LEAD FORM (БЛОК 10) ====== */
.lead-form-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.lead-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-modal);
  padding: 56px 48px;
  text-align: center;
}

.lead-form-card__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.lead-form-card__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ====== FORM COMPONENT ====== */
.clickise-form input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.clickise-form input:focus {
  border-color: var(--accent);
}

.clickise-form input::placeholder {
  color: #aaa;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.clickise-form .btn {
  margin-top: 8px;
}

/* Модальная форма — вертикальная */
.modal .clickise-form input {
  margin-bottom: 16px;
}

/* Сообщение об успешной отправке */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success__text {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* ====== TGBOOSTER (БЛОК 11) ====== */
.tgbooster {
  padding: 100px 0;
  background: var(--card-grey);
}

.tgbooster__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tgbooster__price {
  text-align: right;
}

.tgbooster__price-old {
  display: block;
  font-size: 20px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.tgbooster__price-new {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.tgbooster__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.tgbooster__screenshot {
  max-width: 900px;
  margin: 0 auto;
}

/* ====== VIDEO PLAYER ====== */
.video-player {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-card);
  background: var(--bg-dark);
}

/* ====== TGBOOSTER GALLERY (1 + 3) ====== */
.tgbooster__gallery {
  display: flex;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
  min-height: 600px;
}

.tgbooster__gallery-col--main {
  flex: 1;
  display: flex;
}

.tgbooster__gallery-col--main .gallery-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tgbooster__gallery-col--main .gallery-item img {
  flex: 1;
  object-fit: cover;
}

.tgbooster__gallery-col--side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item__caption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 0.7;
}

/* Placeholder для изображений */
.placeholder-img {
  background: #e0e0e0;
  border: 2px dashed #bbb;
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  color: #888;
  font-size: 15px;
}

.placeholder-img--sm {
  padding: 40px 20px;
}

/* ====== FINAL (БЛОК 12) ====== */
.final {
  padding: 100px 0;
}

.final__cta-block {
  margin-bottom: 80px;
}

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

.final__advantage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-primary);
}

.final__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card-green);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.final__form-block {
  background: var(--bg-dark);
  border-radius: var(--radius-modal);
  padding: 56px 48px;
  margin-bottom: 80px;
}

.final__form-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 36px;
}

.final__form-block .clickise-form input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.final__form-block .clickise-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.final__form-block .clickise-form input:focus {
  border-color: var(--accent);
}

.final__social-proof {
  text-align: center;
  margin-bottom: 48px;
}

.final__proof-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.final__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.final__gallery-item {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.final__gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.final__gallery-item:hover img {
  transform: scale(1.03);
}

.final__partners {
  text-align: center;
  margin-bottom: 48px;
}

.final__partners-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.final__partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.partner-logo {
  background: var(--card-grey);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
}

/* old footer styles removed */

/* ====== MODAL ====== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-modal);
  padding: 56px 48px;
  max-width: 500px;
  width: 90%;
  transform: translateY(30px);
  transition: transform 0.3s;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
  transition: color 0.2s;
}

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

.modal__title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

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

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

/* ====== RESPONSIVE ====== */

/* Tablet landscape */
@media (max-width: 1200px) {
  .section-title {
    font-size: 36px;
  }

  .hero__title {
    font-size: 40px;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet portrait */
@media (max-width: 960px) {
  .header__nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .final__advantages {
    grid-template-columns: 1fr;
  }

  .final__gallery {
    grid-template-columns: 1fr;
  }

  .tgbooster__header {
    flex-direction: column;
  }

  .tgbooster__price {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-card {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .lead-form-card__title {
    font-size: 24px;
  }

  .final__form-block {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .final__form-title {
    font-size: 22px;
  }

  .modal__content {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .modal__title {
    font-size: 22px;
  }

  .btn--lg {
    font-size: 16px;
    padding: 16px 28px;
  }

  .no-need__list li {
    font-size: 16px;
  }

  .launch-step {
    gap: 16px;
  }

  .launch-step__text {
    font-size: 15px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .tgbooster__gallery {
    flex-direction: column;
  }
}

/* ====== FOOTER EXTENDED ====== */
.footer {
  padding: 60px 0 0;
  background: var(--bg-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__company-info {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__address {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer__col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__link {
  font-size: 15px;
  color: var(--accent);
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer__docs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__docs a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}

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

.footer__col--cta {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 28px;
}

.footer__cta-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer__cta-title span {
  color: var(--accent);
}

.footer__cta-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Footer responsive */
@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__col--cta {
    padding: 24px;
  }
}

/* ====== MOBILE FIXES ====== */
html, body {
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .hero {
    padding: 88px 0 48px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .header__inner {
    padding: 0 16px;
  }

  .footer__grid {
    gap: 28px;
  }

  .footer__col--cta {
    padding: 20px;
    border-radius: 16px;
  }

  .footer__cta-title {
    font-size: 16px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .tgbooster__gallery {
    min-height: auto;
  }

  .final__gallery-item img {
    height: 200px;
  }

  .launch-step__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ====== HERO MACBOOK ====== */




/* ====== BUTTON WRAP FIX ====== */
.btn {
  white-space: normal;
  max-width: 100%;
}

.btn--lg {
  padding: 18px 32px;
}

@media (max-width: 640px) {
  .btn--lg {
    font-size: 15px;
    padding: 16px 24px;
  }
}


/* ====== HERO MACBOOK CLEAN ====== */
.hero {
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content {
  flex: 0 0 55%;
  position: relative;
  z-index: 2;
}

.hero__visual {
  flex: 1;
  margin-right: -60px;
  align-self: center;
}

.hero__macbook {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .hero__content {
    flex: 0 0 50%;
  }
  .hero__visual {
    margin-right: -80px;
  }
}

@media (max-width: 960px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    flex: none;
  }
  .hero__visual {
    margin-right: 0;
    margin-top: 32px;
    max-width: 90%;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero__visual {
    max-width: 100%;
    margin-top: 24px;
    transform: none;
  }
}

/* ====== FORM SUCCESS STYLE ====== */
.form-success {
  text-align: center;
  padding: 60px 32px;
  background: var(--bg-dark);
  border-radius: var(--radius-card);
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success__text {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* Modal success override */
.modal__content:has(.form-success) {
  background: var(--bg-dark);
}

.modal__content:has(.form-success) .modal__title {
  color: var(--white);
}

.modal__content:has(.form-success) .modal__close {
  color: var(--white);
}
