/* ===== VARIABLES ===== */
:root {
  --green: #1db954;
  --green-dark: #17a449;
  --green-light: #e8faf0;
  --red: #e52222;
  --red-dark: #c41a1a;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --dark: #0d1117;
  --dark-2: #161b22;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.16);
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 90px 0;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--gray {
  background: var(--gray-50);
}
.section--green {
  background: var(--green);
  color: var(--white);
}
.text-center {
  text-align: center;
}
.text-green {
  color: var(--green);
}
.text-red {
  color: var(--red);
}
.badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--red {
  background: #fdeaea;
  color: var(--red-dark);
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 56px;
}
.section-header .badge {
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 620px;
}
.section-header.text-center p {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 34, 34, 0.35);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-2);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: 14px;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.nav__logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.nav__logo-text span {
  color: var(--green);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__links a:hover {
  color: var(--green);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.nav__phone:hover {
  color: var(--green);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(29, 185, 84, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(229, 34, 34, 0.08) 0%, transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 185, 84, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 185, 84, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content {
  color: var(--white);
}
.hero__badge {
  margin-bottom: 20px;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--green);
}
.hero__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.hero__visual {
  position: relative;
}
.hero__card {
  background: var(--dark-2);
  border: 1px solid rgba(29, 185, 84, 0.2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero__card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero__services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.hero__service-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.hero__service-item:hover {
  border-color: rgba(29, 185, 84, 0.4);
  background: rgba(29, 185, 84, 0.06);
}
.hero__service-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.hero__service-name {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__service-price {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 4px;
}
.hero__urgent {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 34, 34, 0.1);
  border: 1px solid rgba(229, 34, 34, 0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 24px;
}
.hero__urgent-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
  flex-shrink: 0;
}
.hero__urgent-text {
  color: var(--white);
  font-size: 0.9rem;
}
.hero__urgent-text strong {
  color: var(--red);
}

@keyframes pulse-red {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 34, 34, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(229, 34, 34, 0);
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.trust-bar__item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.trust-bar__item span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.service-card {
  grid-column: span 2;
}
.service-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}
.service-card:nth-last-child(1):nth-child(3n + 2) {
  grid-column: 4 / span 2;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.service-card__list {
  text-align: left;
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card__desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-card__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.service-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-600);
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  margin: 0 auto 24px;
  position: relative;
}
.process-step__num::after {
  content: attr(data-step);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 {
  margin-bottom: 10px;
}
.process-step p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover {
  background: var(--green-light);
}
.why-feature__icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.why-feature__title {
  font-weight: 700;
  margin-bottom: 4px;
}
.why-feature__text {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.why-visual {
  position: relative;
}
.why-big-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}
.why-big-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-big-card__sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.why-numbers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-number-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.why-number-bar-wrap {
  flex: 1;
}
.why-number-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.why-number-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.why-number-fill {
  height: 100%;
  background: var(--green);
  border-radius: 4px;
  transition: width 1.5s ease;
}
.why-number-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  min-width: 50px;
  text-align: right;
}

/* ===== PRICES SECTION ===== */
.prices-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.price-tab.active,
.price-tab:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table thead {
  background: var(--dark);
  color: var(--white);
}
.price-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: var(--gray-50);
}
.price-table .price {
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.price-table .price--red {
  color: var(--red);
}
.price-table__panel {
  display: none;
}
.price-table__panel.active {
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
}
.testimonial-card__service {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.slider-controls,
.slider-arrows {
  display: none;
}

/* ===== FORMS ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 185, 84, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group--dark input,
.form-group--dark select,
.form-group--dark textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.form-group--dark input::placeholder,
.form-group--dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group--dark input:focus,
.form-group--dark select:focus,
.form-group--dark textarea:focus {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}
.form-group--dark label {
  color: rgba(255, 255, 255, 0.8);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.form-note--dark {
  color: rgba(255, 255, 255, 0.45);
}
.form-success {
  display: none;
  padding: 20px;
  background: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}
.form-error {
  display: none;
  padding: 12px 16px;
  background: #fdeaea;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  color: var(--red-dark);
  font-size: 0.9rem;
}

/* ===== HERO FORM BLOCK ===== */
.quick-form-section {
  background: var(--dark);
  padding: 100px 0;
}
.quick-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quick-form-left {
  color: var(--white);
}
.quick-form-left h2 {
  margin-bottom: 16px;
}
.quick-form-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.quick-form-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quick-form-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.quick-form-perk::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.quick-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

/* ===== BRANDS ===== */
.brands-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.brand-item:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--green);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-item.open .faq-question {
  background: var(--green-light);
  color: var(--green-dark);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-answer-inner {
  padding: 12px 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #c41a1a 100%);
  padding: 80px 0;
}
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__text h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band__text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== GUARANTEE ===== */
.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guarantee-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.guarantee-card:hover {
  border-color: rgba(29, 185, 84, 0.3);
  transform: translateY(-4px);
}
.guarantee-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.guarantee-card__title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.guarantee-card__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}
.guarantee-card__highlight {
  display: inline-block;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 8px 20px;
  border-radius: 8px;
  margin: 16px 0 8px;
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item__label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.contact-item__val {
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-item__val a {
  transition: var(--transition);
}
.contact-item__val a:hover {
  color: var(--green);
}
.contact-form-box {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 40px;
}
.contact-form-box h3 {
  margin-bottom: 24px;
}
.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.95rem;
  border: 2px dashed var(--gray-300);
  margin-top: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
}
.footer__main {
  padding: 72px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p {
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--green);
  color: white;
}
.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--green);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer__bottom a:hover {
  color: var(--green);
}

/* ===== FLOATING WIDGET ===== */
.float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-phone {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.5);
  animation: float-bounce 3s ease-in-out infinite;
}
.float-phone svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.float-phone__tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.float-phone:hover .float-phone__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal__close:hover {
  background: var(--red);
  color: white;
}
.modal h3 {
  margin-bottom: 8px;
}
.modal p {
  color: var(--gray-600);
  margin-bottom: 28px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-card {
    grid-column: span 2;
  }
  .service-card:nth-last-child(2):nth-child(3n + 1),
  .service-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: span 2;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .quick-form-inner {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-cards {
    grid-template-columns: 1fr 1fr;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__cta .btn {
    display: none;
  }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-last-child(2):nth-child(3n + 1),
  .service-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: span 1;
  }
  .guarantee-cards {
    grid-template-columns: 1fr;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__stats {
    gap: 24px;
  }
  .testimonial-card {
    min-width: unset;
  }
  .float-widget {
    bottom: 16px;
    right: 16px;
  }
  .prices-tabs {
    gap: 6px;
  }
  .price-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ===== MOBILE NAV ===== */
.nav__mobile {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav__mobile a:hover {
  color: var(--green);
}

/* ===== COUNTER ANIMATION ===== */
.counter {
  display: inline-block;
}
