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

:root {
  --black: #07080f;
  --dark: #0c0e1a;
  --dark-2: #111428;
  --accent: #5b6ef5;
  --accent-2: #7c8fff;
  --light: #eef0ff;
  --muted: #8890b8;
  --white: #ffffff;
  --card-bg: #10122b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* ===== HEADER (nav) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.2rem 5%;
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* header__logo */
.header__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-accent {
  color: var(--accent);
}
.header__logo-icon {
  width: 34px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
/* header__nav */
.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
@media (max-width: 859px) {
  .header__logo {
    font-size: 1.3rem;
  }
}
@media (max-width: 815px) {
  .header__nav {
    gap: 1rem;
  }
}

@media (max-width: 744px) {
  .header {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .header__logo {
    font-size: 1.2rem;
  }
  .header__nav {
    gap: 0.5rem;
  }
}

.header__nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

/* header__burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s,
    color 0.2s;
}

/* btn_theme_primary */
.btn_theme_primary {
  background: var(--accent);
  color: var(--white);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn_theme_primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

/* btn_theme_ghost */
.btn_theme_ghost {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn_theme_ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* btn_size_sm (nav button) */
.btn_size_sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ===== SECTION-HEADER (reusable) ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-header__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
}
.section-header__title-accent {
  color: var(--accent);
  font-style: normal;
}

.section-header__sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0.8rem auto 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(91, 60, 200, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(30, 80, 220, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #07080f 0%, #0c0e1a 50%, #0d0b25 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(91, 110, 245, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 110, 245, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* hero__body */
.hero__body {
  /* left column */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 110, 245, 0.12);
  border: 1px solid rgba(91, 110, 245, 0.3);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '●';
  font-size: 0.6rem;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title-accent {
  color: var(--accent);
  font-style: normal;
}

.hero__desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  /* stat item wrapper */
}

.hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num-accent {
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

/* hero__visual (right column) */
.hero__visual {
  position: relative;
}

/* ===== PRODUCT-SHOWCASE ===== */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* product-showcase__card */
.product-showcase__card {
  background: var(--card-bg);
  border: 1px solid rgba(91, 110, 245, 0.12);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.product-showcase__card:hover {
  border-color: rgba(91, 110, 245, 0.45);
  transform: translateY(-3px);
}

/* product-showcase__card_size_featured */
.product-showcase__card_size_featured {
  grid-column: span 2;
  display: flex;
  align-items: stretch;
}

/* product-showcase__img */
.product-showcase__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition:
    opacity 0.3s,
    transform 0.4s;
}
.product-showcase__card:hover .product-showcase__img {
  opacity: 1;
  transform: scale(1.03);
}

/* product-showcase__img_size_featured */
.product-showcase__img_size_featured {
  width: 55%;
  height: auto;
  min-height: 200px;
  flex-shrink: 0;
}

/* product-showcase__info */
.product-showcase__info {
  padding: 0.9rem 1rem;
}

/* product-showcase__info_size_featured */
.product-showcase__info_size_featured {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

/* product-showcase__tag */
.product-showcase__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* product-showcase__name */
.product-showcase__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

/* product-showcase__name_size_featured */
.product-showcase__name_size_featured {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* product-showcase__desc */
.product-showcase__desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
  display: none;
}
.product-showcase__info_size_featured .product-showcase__desc {
  display: block;
}

/* product-showcase__badge */
.product-showcase__badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: rgba(91, 110, 245, 0.15);
  border: 1px solid rgba(91, 110, 245, 0.3);
  color: var(--accent-2);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.5px;
}

/* product-showcase__corner */
.product-showcase__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-showcase__card:hover .product-showcase__corner {
  opacity: 0.6;
}

/* product-showcase__corner_pos_tl / _br */
.product-showcase__corner_pos_tl {
  top: 6px;
  left: 6px;
  border-width: 1.5px 0 0 1.5px;
}
.product-showcase__corner_pos_br {
  bottom: 6px;
  right: 6px;
  border-width: 0 1.5px 1.5px 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark-2);
  padding: 5rem 5%;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin: 0 auto;
}

/* services__card */
.services__card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.services__card:hover {
  background: #1e2030;
}
.services__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.services__card:hover::after {
  transform: scaleX(1);
}

/* services__card-num */
.services__card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}

/* services__card-icon */
.services__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(91, 110, 245, 0.1);
  border: 1px solid rgba(91, 110, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* services__card-title */
.services__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

/* services__card-text */
.services__card-text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* services__card-link */
.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1.2rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}
.services__card-link::after {
  content: '→';
  transition: transform 0.2s;
}
.services__card-link:hover::after {
  transform: translateX(4px);
}

/* ===== PROCESS ===== */
.process {
  background: var(--dark);
  padding: 5rem 5%;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* process__step */
.process__step {
  padding: 2rem;
  text-align: center;
  position: relative;
}
.process__step::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.process__step:last-child::after {
  display: none;
}

/* process__step-num */
.process__step-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* process__step-icon */
.process__step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(91, 110, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  background: rgba(91, 110, 245, 0.08);
}

/* process__step-title */
.process__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* process__step-text */
.process__step-text {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--black);
  padding: 5rem 5%;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}

/* gallery__item */
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
}

/* gallery__item_size_featured */
.gallery__item_size_featured {
  grid-row: span 2;
}

/* gallery__item-img */
.gallery__item-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition:
    transform 0.5s,
    opacity 0.3s;
  opacity: 0.8;
}
.gallery__item:hover .gallery__item-img {
  transform: scale(1.04);
  opacity: 1;
}

/* gallery__item-tag */
.gallery__item-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(5, 6, 20, 0.8);
  backdrop-filter: blur(4px);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  padding: 0.3rem 0.7rem;
  border-left: 2px solid var(--accent);
}

/* ===== CAMERA-TYPES ===== */
.camera-types {
  background: var(--dark-2);
  padding: 5rem 5%;
}

.camera-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* camera-types__card */
.camera-types__card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.8rem 1.5rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.camera-types__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* camera-types__card-img */
.camera-types__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

/* camera-types__card-title */
.camera-types__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

/* camera-types__card-text */
.camera-types__card-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--dark);
  padding: 5rem 5%;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* pricing__card */
.pricing__card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.pricing__card:hover {
  transform: translateY(-4px);
}

/* pricing__card_theme_featured */
.pricing__card_theme_featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #0e1035 0%, var(--card-bg) 100%);
}

/* pricing__card-badge */
.pricing__card-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* pricing__card-name */
.pricing__card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}

/* pricing__card-amount */
.pricing__card-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin: 0.5rem 0;
}
.pricing__card-amount-currency {
  font-size: 1.2rem;
  color: var(--muted);
}

/* pricing__card-desc */
.pricing__card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* pricing__card-features */
.pricing__card-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing__card-features-item {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing__card-features-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== TRUST ===== */
.trust {
  background: var(--dark-2);
  padding: 4rem 5%;
}

.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

/* trust__info */
.trust__info {
  /* left column */
}

.trust__info-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.trust__info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.trust__info-title-accent {
  color: var(--accent);
  font-style: normal;
}

.trust__info-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* trust__list */
.trust__list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.trust__list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--light);
}
.trust__list-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* trust__cards */
.trust__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* trust__card */
.trust__card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust__card-icon {
  font-size: 1.8rem;
}
.trust__card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.trust__card-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== CTA ===== */
.cta {
  background: var(--black);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(91, 110, 245, 0.08) 0%, transparent 70%);
}

.cta__tag {
  position: relative;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.cta__title {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.cta__title-accent {
  color: var(--accent);
  font-style: normal;
}

.cta__desc {
  position: relative;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* cta__form */
.cta__form {
  position: relative;
  max-width: 460px;
  margin: 0 auto 1rem;
  display: flex;
  flex-direction: column; /* ИЗМЕНЕНО */
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta__form-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.cta__form-input::placeholder {
  color: var(--muted);
}

.cta__form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta__form-submit:hover {
  background: var(--accent-2);
}

.cta__consent {
  position: relative;
  font-size: 0.75rem;
  color: var(--muted);
}

/* cta__form-fields */
.cta__form-fields {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cta__form-textarea {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.2rem;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  outline: none;
  resize: none;
  line-height: 1.5;
}
.cta__form-textarea::placeholder {
  color: var(--muted);
}
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 3rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* footer__brand */
.footer__brand {
  /* first column */
}

.footer__brand-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.footer__brand-logo-accent {
  color: var(--accent);
}

.footer__brand-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* footer__contacts */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.footer__contacts-phone {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer__contacts-email {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
}

/* footer__col */
.footer__col {
  /* nav column */
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col-list-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__col-list-link:hover {
  color: var(--accent);
}

/* footer__bottom */
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    order: -1;
  }
  .trust__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item_size_featured {
    grid-row: auto;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process__step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 1rem 4%;
  }
  .header__nav {
    display: none;
  }
  .header__nav_state_open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(7, 8, 15, 0.97);
    padding: 2rem;
    gap: 1.5rem;
  }
  .header__burger {
    display: flex;
  }
  .btn_size_sm {
    display: none;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .product-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .product-showcase__card_size_featured {
    grid-column: span 2;
    flex-direction: column;
  }
  .product-showcase__img_size_featured {
    width: 100%;
    height: 200px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .trust__cards {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 4%;
  }
}

/* ===== CTA FORM STATES ===== */
.cta__form_state_success {
  border-color: #3ecf8e;
  transition: border-color 0.3s;
}
.cta__form_state_success .cta__form-submit {
  background: #3ecf8e;
}
.cta__form_state_success .cta__form-submit:hover {
  background: #2ebd7c;
}

.cta__form_state_error {
  border-color: #f56565;
  transition: border-color 0.3s;
  animation: shake 0.35s ease;
}
.cta__form_state_error .cta__form-submit {
  background: #f56565;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  60% {
    transform: translateX(6px);
  }
  80% {
    transform: translateX(-3px);
  }
}

.cta__form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

