/* ================================================
   SWITCH ELECTRICAL — STYLESHEET
   Dark theme · Orange accents · Modern & bold
   ================================================ */

:root {
  --orange:       #F47820;
  --orange-lt:    #FF9A45;
  --orange-dk:    #C95F10;
  --dark:         #0A0A0A;
  --dark-2:       #111111;
  --dark-3:       #181818;
  --dark-4:       #222222;
  --dark-5:       #2E2E2E;
  --white:        #FFFFFF;
  --muted:        #7A7A7A;
  --muted-lt:     #A0A0A0;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(244,120,32,0.3);

  --font:    'Outfit', sans-serif;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --trans:   0.3s var(--ease);
  --r:       10px;
  --r-lg:    18px;
  --r-xl:    28px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* ---- Utilities ---- */
.orange { color: var(--orange); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,120,32,0.1);
  border: 1px solid rgba(244,120,32,0.22);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted-lt);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244,120,32,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 18px 0;
  transition: padding var(--trans), background var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding: 12px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}

.nav__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav__logo-icon { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav__cta:hover {
  background: var(--orange-lt) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-2);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu ul li a {
  display: block;
  font-size: 32px;
  font-weight: 800;
  padding: 8px 24px;
  transition: color var(--trans);
}
.mobile-menu ul li a:hover { color: var(--orange); }

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  opacity: 0.6;
  transition: opacity var(--trans);
}
.mobile-menu__close:hover { opacity: 1; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 28px 80px;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(244,120,32,0.28) 0%, transparent 68%);
  top: -180px;
  right: -120px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(244,120,32,0.15) 0%, transparent 68%);
  bottom: -80px;
  left: 5%;
  animation: orbFloat 10s 2s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: heroFade 0.8s 0.1s both;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-size: clamp(58px, 10vw, 108px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__line {
  display: block;
  animation: heroUp 0.7s calc(var(--i) * 0.1s + 0.15s) both;
}
.hero__line--orange { color: var(--orange); }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.65;
  animation: heroFade 0.8s 0.5s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: heroFade 0.8s 0.6s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  animation: heroFade 0.8s 0.75s both;
}

.hero__stat { text-align: center; }
.hero__stat-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.03em;
}
.hero__stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: heroFade 0.8s 1s both;
}
.hero__scroll-cue span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1);    transform-origin: top; }
  50%      { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.trust-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 14px 24px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }

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

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

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(244,120,32,0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(244,120,32,0.1);
  border: 1px solid rgba(244,120,32,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted-lt);
  line-height: 1.68;
  margin-bottom: 16px;
}
.service-card__arrow {
  font-size: 18px;
  color: var(--orange);
  transition: transform var(--trans);
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }

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

.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(244,120,32,0.15) 100%);
  z-index: 0;
  pointer-events: none;
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process__card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: border-color var(--trans), transform var(--trans);
}
.process__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.process__card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process__card p {
  font-size: 13px;
  color: var(--muted-lt);
  line-height: 1.65;
}

/* ================================================
   WHY SOLAR
   ================================================ */
.why { background: var(--dark-2); }

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* visuals */
.why__img-stack {
  position: relative;
  height: 480px;
}
.why__img {
  border-radius: var(--r-xl);
  object-fit: cover;
  position: absolute;
}
.why__img--a {
  width: 78%;
  height: 78%;
  top: 0;
  right: 0;
}
.why__img--b {
  width: 60%;
  height: 58%;
  bottom: 0;
  left: 0;
  border: 4px solid var(--dark-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
.why__img-badge {
  position: absolute;
  top: 44%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  text-align: center;
  border: 3px solid var(--dark-2);
  box-shadow: 0 8px 24px rgba(244,120,32,0.4);
}
.why__img-badge-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.why__img-badge span:last-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* text side */
.why__text .section-title { text-align: left; }

.why__reasons {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 36px;
}
.why__reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why__reason-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}
.why__reason h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.why__reason p {
  font-size: 14px;
  color: var(--muted-lt);
  line-height: 1.65;
}

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

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.pricing-card--hot {
  background: linear-gradient(160deg, #1c1000 0%, var(--dark-3) 50%);
  border-color: var(--orange);
  transform: scale(1.035);
  box-shadow: 0 0 0 1px rgba(244,120,32,0.2), 0 20px 50px rgba(244,120,32,0.12);
}
.pricing-card--hot:hover {
  transform: scale(1.035) translateY(-5px);
  box-shadow: 0 0 0 1px rgba(244,120,32,0.35), 0 24px 56px rgba(244,120,32,0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__top h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 5px;
}
.pricing-card__top p {
  font-size: 14px;
  color: var(--muted-lt);
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}
.pricing-card__price sup {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 10px;
}
.pricing-card__amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.tick {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,120,32,0.12);
  color: var(--orange);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}
.tick--free {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
}

.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery { background: var(--dark-2); }

.gallery__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 44px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.gpill-dot { color: var(--orange); margin-right: 6px; }

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(244,120,32,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery__item:hover .gallery__hover { opacity: 1; }
.gallery__hover span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ================================================
   REVIEWS
   ================================================ */
.reviews { background: var(--dark); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--trans), transform var(--trans);
}
.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.review-card--featured {
  background: linear-gradient(145deg, #160d00, var(--dark-3));
  border-color: rgba(244,120,32,0.3);
}

.review-card__stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 3px;
}
.review-card blockquote {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.review-card__author span {
  font-size: 13px;
  color: var(--muted);
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-band__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,120,32,0.18) 0%, transparent 70%);
  filter: blur(80px);
  top: -120px;
  left: -60px;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__inner h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-band__inner p {
  font-size: 16px;
  color: var(--muted-lt);
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--dark-3); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__info .section-title { text-align: left; }
.contact__info > p {
  font-size: 16px;
  color: var(--muted-lt);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--trans), transform var(--trans);
}
.contact__link:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.contact__link-icon {
  width: 42px;
  height: 42px;
  background: rgba(244,120,32,0.1);
  border: 1px solid rgba(244,120,32,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact__link-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__link strong { font-size: 16px; }

.contact__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}

/* Form */
.form {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 38px 36px;
}
.form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 26px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__field { margin-bottom: 14px; }
.form__field:last-of-type { margin-bottom: 20px; }

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--dark-5);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--muted); }
.form__field select { color: var(--muted); }
.form__field select:valid,
.form__field select.has-value { color: var(--white); }
.form__field select option { background: var(--dark-3); color: var(--white); }

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,120,32,0.12);
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 56px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 280px;
}
.footer__hashtags {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul li a,
.footer__col--contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: block;
  transition: color var(--trans);
}
.footer__col ul li a:hover,
.footer__col--contact a:hover { color: var(--orange); }

.footer__col--contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .process__track { grid-template-columns: repeat(2, 1fr); }
  .process__track::before { display: none; }
  .why__layout { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__layout { grid-template-columns: 1fr; }
  .why__img-stack { height: 340px; margin-bottom: 16px; }
  .why__text .section-title { text-align: center; }
  .why__text { text-align: center; }
  .why__reason { text-align: left; }
  .why__text .btn { display: block; width: fit-content; margin: 0 auto; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 24px; }
  .pricing-card--hot { transform: scale(1); }
  .pricing-card--hot:hover { transform: translateY(-5px); }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; gap: 44px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-divider { width: 60px; height: 1px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item--wide { grid-column: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}
