:root {
  /* === COLORS === */
  --primary: #243B2D;    /* основной зелёный */
  --secondary: #F53B10;  /* акцентный красно-оранжевый */
  --dark: #111111;
  --darker-grey: #424242;
  --grey: #F0F0F0;
  --light-grey: #F5F5F5;
  --white: #FFFFFF;

  /* === BREAKPOINTS === */
  --bp-mobile: 480px;     /* мобильные телефоны */
  --bp-tablet: 768px;     /* планшеты */
  --bp-desktop: 1024px;   /* настольные компьютеры */
  --bp-large: 1440px;     /* большие экраны */

  /* === SPACING === */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;
  --spacing-xxxl: 120px;

  /* === CONTAINER WIDTHS === */
  --container-mobile: 100%;
  --container-tablet: 100%;
  --container-desktop: 1200px;
  --container-large: 1440px;

  /* === PADDINGS === */
  --padding-mobile: var(--spacing-sm);
  --padding-tablet: var(--spacing-lg);
  --padding-desktop: var(--spacing-xxl);
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: transparent;
}

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  background: transparent;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* Базовые стили текста */
h1, h1 * {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.05em;
  margin: 0;
}

h2, h2 * {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
  color: var(--primary);
  margin: 0;
}

h3, h3 * {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary);
  margin: 0;
}

p, p * {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
}

button, button * {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}


/* базовые стили */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

/* иконка */
.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  margin-right: 8px;
}
.btn .btn-icon .material-icons {
  font-size: 18px;
  line-height: 1;
  display: block;
}
.btn:active .btn-icon,
.btn.is-clicked .btn-icon {
  transform: none;
}

/* PRIMARY в стиле с картинки */
.btn-primary {
  padding: 8px 24px;
  border-radius: 9999px !important;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border: none;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
  position: relative;
  transition: background 0.3s ease;
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, #a0240a 100%);
}
.btn-primary .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-primary .btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Кнопка меню: normal */
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 20px;              /* из макета */
  border-radius: 8px;               /* corner radius 8 */
  background: transparent;          /* без фона */
  color: var(--dark);
  font: 400 16px/1.2 "Mulish", sans-serif; /* Body */
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-radius .2s ease;
  white-space: nowrap;
  border: none;
}
.menu-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-btn__icon .material-icons {
  font-size: 18px;
  line-height: 1;
  color: var(--secondary);
  transition: color .2s ease;
}

/* Hover */
.menu-btn:hover {
  background: var(--grey);      /* Серый */
  color: var(--dark);            /* темный текст */
  border-radius: 999px;         /* полностью скругленный */
}
/* Иконка стрелки на кнопке "Контакты" не меняет цвет при hover */
.menu-btn:not([href="#contacts"]):hover .menu-btn__icon .material-icons {
  color: var(--secondary);
}

/* Активная/текущая страница */
.menu-btn--current {
  background: var(--secondary);
  color: var(--white);
}

/* Доступность */
.menu-btn:focus-visible {
  outline: 2px solid rgba(36, 59, 45, .25);   /* Primary полупрозрачный */
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(36, 59, 45, .08);
}

.nav__box {
  display: inline-flex;   /* вместо flex */
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
}


/* Header — обычный (логотип уезжает при скролле) */
.header{
  position: absolute;           /* absolute чтобы не занимал место */
  top: 0;
  left: 0;
  right: 0;
  background: transparent !important;
  z-index: 100;
}
.header__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img,
.header__logo svg{ 
  height: 48px; 
  width: auto;
  display:block; 
  opacity: 0;
}
.header__logo img.loaded,
.header__logo img[complete],
.header__logo svg.loaded {
  opacity: 1;
}

/* Навигация в header */
.header__nav{
  position: relative;
}

/* Бургер-кнопка */
.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
}
.burger-icon {
  position: absolute;
  font-size: 28px;
  color: var(--dark);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.burger-icon--close {
  opacity: 0;
  transform: rotate(90deg);
}
.burger-btn[aria-expanded="true"] .burger-icon:first-child {
  opacity: 0;
  transform: rotate(-90deg);
}
.burger-btn[aria-expanded="true"] .burger-icon--close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Стеклянный контейнер меню */
.nav__box{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
}


/* Чтобы контент не уезжал под фикс-меню */
main{ 
  padding-top: 0px; 
  margin-top: 0;
  position: relative;
  z-index: 1;
  background: #fdfbfb;
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

/* Якоря не прячутся под меню при скролле к секции */
section[id]{ scroll-margin-top: 72px; }

/* === HERO SECTION === */
.hero {
  width: 100%;
  background: transparent;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__container {
  max-width: 1200px;
  margin: 96px auto 0; /* Верхний margin равен высоте хедера: 24px (padding-top) + 48px (логотип) + 24px (padding-bottom) */
  padding: 160px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  position: relative;
}
.hero__content::before {
  content: '';
  position: absolute;
  inset: -100px;
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 200, 200, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(200, 200, 200, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

/* Заголовок с встроенным изображением */
.hero__title {
  margin: 0;
  font-size: 150px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.hero__title-word {
  display: inline-block;
}

/* Character reveal animation */
.hero__char {
  display: inline-block;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.hero__title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
}

/* Плавающее изображение внутри заголовка */
.hero__image--floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 130px;
  border-radius: 60px;
  background: var(--white);
  border: 3px solid transparent;
  background-image: 
    linear-gradient(var(--white), var(--white)),
    linear-gradient(135deg, #111111 0%, #424242 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transform: rotate(5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  opacity: 1;
  visibility: visible;
}

.hero__image--floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  backface-visibility: hidden;
  transition: none;
}
.hero__image--floating img.loaded,
.hero__image--floating img[complete] {
  opacity: 1;
  will-change: auto;
}

/* Прямоугольник для eyebrow */
.hero__eyebrow-box {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 180px;
  height: 130px;
  border-radius: 60px;
  background: linear-gradient(135deg, #243B2D 0%, #1a2d20 50%, #0f1a14 100%);
  border: 3px solid transparent;
  background-image: 
    linear-gradient(135deg, #243B2D 0%, #1a2d20 50%, #0f1a14 100%),
    linear-gradient(135deg, #111111 0%, #424242 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transform: rotate(3deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 24px;
  padding: 0;
  box-sizing: border-box;
}

.hero__eyebrow-wrapper {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
  animation: scroll-text 8s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.hero__eyebrow {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  padding-right: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__eyebrow:not(:last-child) {
  padding-right: 40px;
}

@keyframes scroll-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 20px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow-wrapper {
    animation: none;
  }
}

.hero__cta {
  display: flex;
  justify-content: center;
  will-change: opacity, transform;
}

.hero__bullets {
  margin: 0 0 24px 0;
  text-align: center;
  font-size: 20px;
  color: var(--darker-grey);
  will-change: opacity, transform;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__char,
  .hero__bullets,
  .hero__cta,
  .hero__image--floating {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal-word {
  display: inline-block;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

[data-reveal="card"] {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

[data-reveal-item] {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-word,
  [data-reveal="card"],
  [data-reveal-item] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === BENEFITS SECTION === */
.benefits {
  padding: 120px 120px 80px 120px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0;
}

.benefits__inner {
  background: #f5f5f5;
  background-image: linear-gradient(to top, #f0f2f5 0%, #f5f7fa 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
}

.benefits__title {
  margin: 0;
  text-align: center;
  letter-spacing: -0.5px;
  color: #000000;
}

.benefits__content-wrapper {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

/* Переключатель */
.benefits__toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.benefits__toggle-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.benefits__toggle-logo {
  margin-top: auto;
  padding-top: 24px;
}

.benefits__toggle-logo img {
  height: 48px;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}
.benefits__toggle-logo img.loaded,
.benefits__toggle-logo img[complete] {
  opacity: 1;
  will-change: auto;
}

.benefits__toggle-label {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #999999;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.benefits__toggle-label.active {
  color: var(--dark);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.benefits__toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--primary);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.benefits__toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.benefits__toggle-switch.active::after {
  transform: translateX(0);
}

.benefits__toggle-switch.active.benefits__toggle-switch--partners::after {
  transform: translateX(24px);
}

/* Контейнер карточек */
.benefits__cards-wrapper {
  position: relative;
  height: 360px;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.benefits-card {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: rotate(3deg);
}

.benefits-card.active {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  width: 100%;
  max-width: 100%;
  pointer-events: auto;
  z-index: 1;
}

/* Заголовки */
.benefits-card__title {
  margin: 0 0 24px;
  font-size: 32px;
  color: var(--primary);
}

/* Списки */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font: 400 16px/1.5 "Mulish", sans-serif;
  color: var(--darker-grey);
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Иконки */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--primary);
}
.icon.material-icons,
.icon .material-icons {
  font-size: 24px;
  line-height: 1;
}
.icon--green {
  color: var(--primary);
}
.icon--orange {
  color: var(--primary);
}

/* === ABOUT SECTION === */
.about__outer{
  background: transparent;
  padding: 120px 120px 80px 120px;
  position: relative;
  z-index: 1;
}
.about__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Заголовок */
.about__title{
  margin: 0;
  text-align: center;
  letter-spacing: -0.5px;
  color: #000000;
}

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

/* Волнообразное расположение карточек */
.about__stats .about-card:nth-child(1),
.about__stats .about-card:nth-child(3) {
  margin-top: 20px;
}
.about__stats .about-card:nth-child(2),
.about__stats .about-card:nth-child(4) {
  margin-top: 0;
}

.about-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
  transition: transform 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.about-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-card__value{
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
}

.about-card__note{
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--darker-grey);
  letter-spacing: 0.2px;
}

/* Убираем полосу */
.about-card__bar{
  display: none;
}

/* === TESTIMONIALS SECTION === */
.testimonials__outer{
  padding: 120px 120px 80px 120px;
  background: transparent;      /* прозрачный фон */
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonials__outer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}
.testimonials__outer > * {
  position: relative;
  z-index: 1;
}

.testimonials__inner{
  max-width: 1200px;            /* фиксируем линию с другими секциями */
  margin: 0 auto;
  padding: 0;                   /* по макету нулевые паддинги */
  display: grid;
  gap: 64px;                    /* расстояние заголовок ↔ грид */
}

.testimonials__title{
  margin: 0;
  color: #000000;
  text-align: center;
  letter-spacing: -0.5px;
}

/* сетка карточек */
.testimonials__grid{
  display: flex;
  gap: 0;
  position: relative;
}

.testimonials__grid > .testimonial-card {
  flex: 1;
}

.testimonials__grid > .testimonial-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.testimonials__grid > .testimonial-card:nth-child(1),
.testimonials__grid > .testimonial-card:nth-child(2) {
  padding-right: 48px;
  margin-right: 48px;
}

/* карточка */
.testimonial-card{
  background: transparent;
  border-radius: 0;
  padding: 32px 0;
  box-shadow: none;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card__text{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  position: relative;
  padding-right: 40px !important;
}

.testimonial-card__text::after {
  content: '"';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 48px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1;
  font-family: "Mulish", sans-serif;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__image{
  flex-shrink: 0;
  width: 56px; 
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__image img{
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__title{
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.testimonial-card__company {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--darker-grey);
  line-height: 1.4;
}

/* OUTER контейнер: padding 80 120, прозрачный фон */
.faq__outer{
  background: transparent;
  padding: 120px 120px 80px 120px; 
  position: relative;
  z-index: 1;
}
.faq__inner{
  max-width:1200px; 
  margin:0 auto; 
  padding:0;
  display:flex; 
  flex-direction:column; 
  gap:24px;
}

/* Элемент */
.accordion__item{
  width:100%; position:relative; border-radius:0;
  overflow:hidden;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Шапка (закрыто) */
.accordion__header{
  position:relative; width:100%; display:block;
  padding:20px 60px 20px 20px;
  border:none;
  border-radius:0;
  background:transparent;
  background-clip: padding-box;
  box-sizing:border-box;
  cursor:pointer; text-align:left; z-index:1;
}
.accordion__item:not(.open) .accordion__header:hover{
  background:transparent;
}

/* Вопрос */
.accordion__q{
  margin:0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

/* Кнопка-иконка: ВСЕГДА в правом верхнем углу */
.accordion__icon{
  position:absolute; top:16px; right:16px;
  width:32px; height:32px; display:inline-flex;
  align-items:center; justify-content:center;
  border-radius:4px; background:transparent; border:none;
  color:var(--secondary); z-index:2;
  transition: transform 0.3s ease;
}
.accordion__icon:hover {
  transform: scale(1.1);
}
.accordion__icon .icon--up{ display:none; }
.accordion__icon .material-icons{
  font-size: 20px;
  line-height: 1;
  pointer-events: none; /* чтобы клик ловил button */
}

/* Контент */
.accordion__content{ position:relative; z-index:1; }
.accordion__panel{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  background:transparent; border:none;
  color:var(--darker-grey); font:400 16px/1.6 "Mulish",sans-serif;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ОТКРЫТО */
.accordion__item.open{
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius:0;
}
/* у шапки убираем локальный бордер и уменьшаем зазор */
.accordion__item.open .accordion__header{
  border:none; border-radius:0; background:transparent; padding-bottom:12px;
}
.accordion__item.open .accordion__panel{
  max-height: 1000px;
  opacity: 1;
  padding: 0 20px 20px 20px;
}

/* Анимация иконок */
.accordion__icon .icon--down {
  display: block;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__icon .icon--up {
  display: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__item.open .accordion__icon .icon--down{
  display: none;
  opacity: 0;
}
.accordion__item.open .accordion__icon .icon--up{
  display: block;
  opacity: 1;
}

/* Фокус */
.accordion__header:focus-visible{
  outline:2px solid rgba(36,59,45,.35); outline-offset:2px;
}

/* OUTER / INNER по макету */
.contacts__outer{
  background: transparent;
  padding: 120px 120px 80px 120px; 
  position: relative;
  z-index: 1;
}
.contacts__inner{
  max-width:1200px; margin:0 auto; padding:0;
  display:grid; grid-template-columns: 1fr 1fr; gap:0; /* без промежутка */
}

/* LEFT */
.contacts__title{
  margin:0 0 16px;
  font-family:"Mulish",sans-serif; font-weight:700; font-size:32px; color:var(--primary);
}
.contacts__left{ display:flex; flex-direction:column; gap:12px; }

.contacts__phone{
  font:600 20px/1.3 "Mulish",sans-serif;
  color:var(--dark); text-decoration:none;
}
.contacts__phone:hover{ text-decoration:underline; }

.contacts__email{
  padding:0; border:0; background:none; cursor:pointer;
  font:400 16px/1.4 "Mulish",sans-serif; color:var(--dark);
  text-align:left;
}
.contacts__email:hover{ text-decoration:underline; }

.contacts__copied{
  position:relative; top:2px;
  font:400 12px/1 "Mulish",sans-serif; color:var(--primary);
  opacity:0; transition:opacity .2s ease; pointer-events:none;
}
.contacts__copied.show{ opacity:1; }

.contacts__addr{
  margin-top:4px; font:400 16px/1.5 "Mulish",sans-serif; color:var(--dark);
  font-style:normal;
}

/* RIGHT (карта) */
.contacts__right{ min-height:320px; }
.contacts__map{
  width:100%; height:100%; min-height:320px; border:0; border-radius:0;
}

.footer__outer {
  background: #1a1a1a;
  padding: 40px 120px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer__nav a {
  color: var(--white);
  text-decoration: none;
  font: var(--body);
  transition: opacity 0.2s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__copy {
  font: var(--body);
  color: var(--white);
  opacity: 0.6;
  text-align: center;
}

/* ===== Section frame ===== */
.lead__outer{
  background: transparent;
  padding: 120px 120px 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.lead__title {
  margin: 0;
  text-align: center;
  letter-spacing: -0.5px;
  color: #000000;
}
.lead__inner{
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #1a1a1a;
  background-image: linear-gradient(to right, #434343 0%, black 100%);
  border-radius: 24px;
  padding: 48px;
  gap: 24px;
  color: var(--white);
  position: relative;
}
.lead__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  z-index: 0;
}
.lead__inner > * {
  position: relative;
  z-index: 1;
}

.lead__columns {
  display: flex;
  gap: 32px;
  width: 100%;
}

.lead__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.lead__inner .about-card__value {
  color: var(--white);
}
.lead__inner .form-label {
  color: var(--white);
}
.lead__inner .check {
  color: var(--white);
}
.lead__inner .form-hint {
  color: rgba(255, 255, 255, 0.7);
}
.lead__inner .form-error {
  color: #ff6b6b;
}


/* ===== Inputs states ===== */
.form-field {
  width: 100%;          /* растянуть обертку */
  margin-bottom: 8px;
}
.form-input {
  width: 100%;          /* растянуть сам инпут */
  height: 40px;
  border-radius: 8px;
  padding: 0 12px;
  border: .5px solid rgba(17,17,17,.55);
  background: var(--white);
  color: var(--dark);
  font: 400 16px/1 "Mulish", sans-serif;
  outline: none;
  box-sizing: border-box; /* учитываем padding и border в ширине */
}

.form-input::placeholder{ color: rgba(17,17,17,.35); }

/* hover */
.form-input:hover{
  border-color: rgba(17,17,17,.7);
}

/* focus */
.form-input:focus{
  border-color: var(--primary);
}

/* valid */
.form-field.is-valid .form-input{
  border-color: var(--primary);
}

/* error */
.form-field.is-error .form-input{
  border-color: var(--primary);
}

/* disabled */
.form-input:disabled{
  background: var(--light-grey);
  color: rgba(17,17,17,.5);
}

/* hints & errors */
.form-hint{
  margin: 6px 0 0;
  font: 400 12px/1.25 "Mulish", sans-serif;
  color: rgba(17,17,17,.55);
  display: none;
}
.form-error{
  margin: 6px 0 0;
  font: 400 12px/1.25 "Mulish", sans-serif;
  color: rgb(218, 0, 0);
  display: none;
}
.form-field.is-focus .form-hint{ display:block; }
.form-field.is-error .form-error{ display:block; }

/* ===== Checkboxes ===== */
.checks{ display: grid; gap: 16px; margin-bottom: 16px; border: 0; padding: 0; }
.check{
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 16px;
  font: 400 16px/1.35 "Mulish", sans-serif;
  color: var(--dark);
}
.check input{
  appearance: none;
  width: 20px; height: 20px;
  border: 1px solid rgba(17,17,17,1);
  border-radius: 4px;
  background: var(--white);
  display: grid; place-items: center;
  margin-top: 1px;
  transition: border .15s ease, background .15s ease, box-shadow .15s ease;
}
.check input:hover{ border-color: rgba(17,17,17,1); }
.check input:checked{
  background: var(--secondary);
  border-color: var(--secondary);
}
.check input:checked::after{
  content:"";
  width: 12px; height: 12px;
  background: var(--white);
  clip-path: polygon(14% 44%, 0 58%, 40% 100%, 100% 24%, 86% 10%, 40% 74%);
}

/* ===== Actions / button ===== */
.lead__actions{ 
  display:flex; 
  align-items:center; 
  gap:12px; 
  width: 100%;
  justify-content: center;
}
.lead__actions .btn{
  display:inline-flex; align-items:center; justify-content: center; gap:4px;
  padding: 8px 24px;
  border-radius: 9999px !important;
  border: none; cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  height: 48px;
  min-height: 48px;
}
.lead__actions .btn-primary{
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
  color: var(--white);
  transition: background 0.3s ease;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 12px 16px 16px 0px;
  position: relative;
  height: 48px;
  min-height: 48px;
}
.lead__actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, #a0240a 100%);
}
.lead__actions .btn-primary:active{ transform: translateY(1px); }
.lead__actions .btn-icon{ 
  display:inline-flex; 
  width: 32px; 
  height: 32px; 
  align-items:center; 
  justify-content:center;
  margin-right: 8px;
  flex-shrink: 0;
}

.form-note{
  font: 400 14px/1.3 "Mulish", sans-serif;
  color: var(--primary);
}

/* Контейнер-рамка как на макете */
.lead{
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Индикация статуса отправки */
.form-note {
  margin-top: 12px;
  font: 400 14px/1.4 "Mulish", sans-serif;
  color: var(--dark);
  transition: opacity .2s ease;
}
.form-note.success { color: #1a7f37; }    /* зелёный */
.form-note.error   { color: #d93025; }    /* красный */
.form-note.info    { color: var(--primary); }

/* Кнопка в состоянии успеха */
.btn.is-success .btn-icon .material-icons {
  color: #1a7f37;
}
.btn.is-success {
  background: var(--primary);
}

/* Кнопка в состоянии загрузки */
.btn.is-loading {
  pointer-events: none;
  opacity: .85;
  position: relative;
}

/* Спиннер на месте иконки */
.btn.is-loading .btn-icon {
  position: relative;
}

/* Скрываем содержимое иконки */
.btn.is-loading .btn-icon .material-icons {
  opacity: 0;
}

/* Спиннер на месте иконки */
.btn.is-loading .btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: lodash-spin 1s linear infinite;
  z-index: 1;
}

/* Если фон кнопки не оранжевый — поменяй цвет спиннера как нужно */
@keyframes lodash-spin { to { transform: rotate(360deg); } }

/* ========================================
   RESPONSIVE UTILITY CLASSES
   ======================================== */

/* Hide/Show utilities */
.hide-mobile { display: block; }
.show-mobile { display: none; }
.hide-tablet { display: block; }
.show-tablet { display: none; }
.hide-desktop { display: block; }
.show-desktop { display: none; }

/* Text alignment utilities */
.text-center-mobile { text-align: left; }
.text-left-mobile { text-align: left; }

/* Spacing utilities */
.gap-mobile { gap: var(--spacing-sm); }
.gap-tablet { gap: var(--spacing-md); }
.gap-desktop { gap: var(--spacing-lg); }

/* Padding utilities */
.p-mobile { padding: var(--padding-mobile); }
.p-tablet { padding: var(--padding-tablet); }
.p-desktop { padding: var(--padding-desktop); }

/* Margin utilities */
.mb-mobile { margin-bottom: var(--spacing-sm); }
.mb-tablet { margin-bottom: var(--spacing-md); }
.mb-desktop { margin-bottom: var(--spacing-lg); }

/* ========================================
   CONSOLIDATED RESPONSIVE DESIGN
   ======================================== */

/*
  BREAKPOINT SYSTEM DOCUMENTATION
  
  This CSS uses a mobile-first approach with the following breakpoints:
  
  📱 Mobile:    0px - 480px     (--bp-mobile: 480px)
  📱 Tablet:    481px - 768px   (--bp-tablet: 768px)
  💻 Desktop:   769px - 1024px  (--bp-desktop: 1024px)
  🖥️  Large:     1025px+         (--bp-large: 1440px)
  
  HOW TO MODIFY BREAKPOINTS:
  1. Change the CSS variables at the top of the file (:root section)
  2. All media queries will automatically use the new values
  
  SPACING SYSTEM:
  --spacing-xs:   8px     (small gaps)
  --spacing-sm:   16px    (mobile padding)
  --spacing-md:   24px    (tablet spacing)
  --spacing-lg:   32px    (desktop spacing)
  --spacing-xl:   48px    (large gaps)
  --spacing-xxl:  80px    (section padding)
  --spacing-xxxl: 120px   (large section padding)
  
  UTILITY CLASSES:
  .hide-mobile, .show-mobile     - Show/hide on mobile
  .hide-tablet, .show-tablet     - Show/hide on tablet
  .hide-desktop, .show-desktop   - Show/hide on desktop
  .text-center-mobile            - Center text on mobile only
  .p-mobile, .p-tablet, .p-desktop - Responsive padding
  .gap-mobile, .gap-tablet, .gap-desktop - Responsive gaps
*/

/* === MOBILE FIRST: Base styles are mobile by default === */

/* === MOBILE (up to 480px) === */
@media (max-width: 480px) {
  /* Typography adjustments */
  h1 { font-size: 40px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Utility classes activation */
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .text-center-mobile { text-align: center !important; }
  
  /* Header mobile */
  .header__container { padding: 16px var(--padding-mobile); }
  .header__logo img,
  .header__logo svg { 
    height: 36px; 
    width: auto;
  }
  .burger-btn { display: flex; }
  
  /* Кнопки по 44px на мобильной версии */
  .btn,
  .menu-btn {
    height: 44px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .btn-primary {
    padding: 0 12px;
    border-radius: 9999px !important;
  }
  .btn .btn-icon {
    width: 32px;
    height: 32px;
  }
  .btn-primary .btn-icon {
    border: none;
  }
  .header__nav { 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 80px var(--padding-mobile) var(--padding-mobile);
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__nav .nav__box {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    background: #ffffff;
  }
  .header__nav .menu-btn {
    width: 100%;
    height: 44px;
    justify-content: flex-start;
    padding: 16px 20px;
  }
  body.menu-open {
    overflow: hidden;
  }
  
  /* Hero mobile */
  .hero__container { 
    margin-top: 68px; /* Высота хедера на мобильной: 16px + 36px + 16px */
    padding: 60px var(--padding-mobile); 
  }
  .hero__content { 
    gap: 20px; 
  }
  .hero__title { 
    font-size: 48px; 
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  h1, h1 * {
    font-size: 48px;
    font-weight: 700;
  }
  .hero__title-line {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__title-line:first-child {
    order: 1;
  }
  .hero__title-line:first-child .hero__title-word:first-child {
    order: 1;
  }
  .hero__title-line:first-child .hero__image--floating {
    display: none;
  }
  .hero__title-line:first-child .hero__title-word:last-child {
    display: none;
  }
  .hero__title-line:nth-child(2) {
    order: 2;
  }
  .hero__title-line:nth-child(2) .hero__eyebrow-box {
    order: 1;
  }
  .hero__title-line:nth-child(2) .hero__title-word {
    order: 2;
  }
  .hero__title-word {
    display: block;
  }
  .hero__image--floating {
    width: 100px;
    height: 70px;
    margin: 0;
  }
  .hero__eyebrow-box {
    margin-left: 0;
    margin-top: 0;
    width: auto;
    min-width: 100px;
    flex: 1;
    max-width: 200px;
    height: 70px;
    padding: 0;
  }
  .hero__eyebrow {
    font-size: 18px;
  }
  .hero__eyebrow-wrapper {
    padding: 10px;
  }
  .hero__eyebrow:not(:last-child) {
    padding-right: 25px;
  }
  .hero__bullets {
    font-size: 16px;
  }
  .hero__cta {
    width: auto;
  }
  .hero__cta .btn-primary {
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8px 24px;
  }
  
  /* Benefits mobile */
  .benefits { padding: 60px var(--padding-mobile); }
  .benefits__container { 
    gap: 32px;
  }
  .benefits__content-wrapper {
    flex-direction: column;
  }
  .benefits__cards-wrapper {
    height: auto;
    min-height: auto;
  }
  .benefits__toggle {
    gap: 12px;
  }
  .benefits__toggle-controls {
    gap: 12px;
  }
  .benefits__toggle-logo {
    padding-top: 16px;
  }
  .benefits__toggle-logo img {
    height: 36px;
  }
  .benefits__toggle-label {
    font-size: 14px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  .benefits__toggle-label.active {
    font-size: 14px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  .benefits__toggle-switch {
    width: 40px;
    height: 20px;
  }
  .benefits__toggle-switch::after {
    width: 16px;
    height: 16px;
  }
  .benefits__toggle-switch.active::after {
    transform: translateX(0);
  }
  .benefits__toggle-switch.active.benefits__toggle-switch--partners::after {
    transform: translateX(20px);
  }
  .benefits__cards-wrapper {
    height: auto;
  }
  .benefits__inner {
    padding: 32px 24px;
    flex-direction: column;
    gap: 32px;
  }
  
  /* About mobile */
  .about__outer { padding: 60px var(--padding-mobile); }
  .about__title{
    font-size: 32px;
  }
  .about__stats { 
    grid-template-columns: 1fr; 
    gap: var(--spacing-sm);
    padding: 0;
  }
  
  /* Testimonials mobile */
  .testimonials__outer { padding: 60px var(--padding-mobile); }
  .testimonials__grid {
    flex-direction: column;
    gap: 32px;
  }
  .testimonials__grid > .testimonial-card {
    flex: none;
    width: 100%;
  }
  .testimonials__grid > .testimonial-card:not(:last-child)::after {
    display: none;
  }
  .testimonials__grid > .testimonial-card:nth-child(1),
  .testimonials__grid > .testimonial-card:nth-child(2) {
    padding-right: 0;
    margin-right: 0;
  }
  
  /* FAQ mobile */
  .faq__outer { padding: 60px var(--padding-mobile); }
  .accordion__q { font-size: 18px; }
  
  /* Contacts mobile */
  .contacts__outer { padding: 60px var(--padding-mobile); }
  .contacts__inner { grid-template-columns: 1fr; }
  .contacts__right { order: 2; margin-top: 16px; }
  
  /* Footer mobile */
  .footer__outer { padding: 40px var(--padding-mobile); }
  .footer__nav { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center;
  }
  
  /* Lead form mobile */
  .lead__outer { padding: 60px var(--padding-mobile); }
  .lead__inner { max-width: 100%; }
  .lead__columns {
    flex-direction: column;
    gap: 24px;
  }
  .lead__column {
    gap: 24px;
  }
  .lead__actions {
    flex-direction: column;
  }
  .lead__actions .btn-primary {
    width: 100%;
    height: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .lead__inner .about-card {
    padding: 24px;
    margin: 0 !important;
  }
  .about__stats {
    gap: 24px !important;
  }
  .about__stats .about-card {
    margin-top: 0 !important;
  }
}

/* === TABLET (481px to 768px) === */
@media (min-width: 481px) and (max-width: 768px) {
  /* Utility classes activation */
  .hide-tablet { display: none !important; }
  .show-tablet { display: block !important; }
  
  /* Header tablet */
  .header__container { padding: 20px var(--padding-tablet); }
  .burger-btn { display: none; }
  .header__nav { 
    position: relative;
    transform: none;
  }
  .header__nav .nav__box {
    flex-direction: row;
    padding: 8px;
    background: #ffffff;
  }
  .header__nav .menu-btn {
    width: auto;
    padding: 10px 20px;
  }
  
  /* Hero tablet */
  .hero__container { 
    margin-top: 88px; /* Высота хедера на планшете: 20px + 48px + 20px */
    padding: 100px 24px;
  }
  .hero__title { 
    font-size: 80px; 
    gap: 18px;
  }
  .hero__image--floating {
    width: 140px;
    height: 100px;
  }
  .hero__eyebrow-box {
    margin-left: 20px;
    width: 140px;
    height: 100px;
  }
  .hero__bullets {
    font-size: 18px;
  }
  .hero__eyebrow-wrapper {
    padding: 14px;
  }
  .hero__eyebrow {
    font-size: 28px;
  }
  .hero__eyebrow:not(:last-child) {
    padding-right: 35px;
  }
  
  /* Benefits tablet */
  .benefits { padding: 80px var(--padding-tablet); }
  .benefits__container { 
    gap: 48px;
  }
  
  /* About tablet */
  .about__outer { padding: 80px var(--padding-tablet); }
  .about__stats { 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--spacing-md);
  }
  
  /* Testimonials tablet */
  .testimonials__outer { padding: 80px var(--padding-tablet); }
  .testimonials__grid {
    flex-direction: column;
    gap: 40px;
  }
  .testimonials__grid > .testimonial-card {
    flex: none;
    width: 100%;
  }
  .testimonials__grid > .testimonial-card:not(:last-child)::after {
    display: none;
  }
  .testimonials__grid > .testimonial-card:nth-child(1),
  .testimonials__grid > .testimonial-card:nth-child(2) {
    padding-right: 0;
    margin-right: 0;
  }
  
  /* FAQ tablet */
  .faq__outer { padding: 80px var(--padding-tablet); }
  
  /* Contacts tablet */
  .contacts__outer { padding: 60px var(--padding-tablet); }
  .contacts__inner { grid-template-columns: 1fr; }
  
  /* Footer tablet */
  .footer__outer { padding: 40px var(--padding-tablet); }
  
  /* Lead form tablet */
  .lead__outer { padding: 80px var(--padding-tablet); }
  .lead__inner { max-width: 80%; }
  .lead__columns {
    flex-direction: column;
    gap: 24px;
  }
}

/* === DESKTOP (769px to 1024px) === */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Utility classes activation */
  .hide-desktop { display: none !important; }
  .show-desktop { display: block !important; }
  
  /* Header desktop */
  .burger-btn { display: none; }
  .header__nav { 
    position: relative;
    transform: none;
  }
  
  /* Hero desktop */
  .hero__container {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero__title { font-size: 80px; }
  
  /* About desktop */
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}

/* === LARGE SCREENS (1025px and up) === */
@media (min-width: 1025px) {
  /* All default styles apply - this is our base desktop design */
  
  /* Utility classes activation */
  .hide-desktop { display: none !important; }
  .show-desktop { display: block !important; }
  
  /* Header desktop */
  .burger-btn { display: none; }
  .header__nav { 
    position: relative;
    transform: none;
  }
  .header__nav .nav__box {
    flex-direction: row;
  }
  .header__nav .menu-btn {
    width: auto;
  }
  
  /* Hero desktop */
  .hero__container {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
}
}