/* =============================================
   HENAGEO SOLAR — STYLESHEET
   Colors: #F5A623 (orange) → #D44000 (red-orange)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #F5A623;
  --orange-deep:  #D44000;
  --orange-dark:  #B83200;
  --dark:         #111318;
  --dark-2:       #1C2030;
  --dark-3:       #252A3A;
  --text:         #374151;
  --text-light:   #6B7280;
  --white:        #FFFFFF;
  --off-white:    #FFF9F5;
  --border:       #E5E7EB;
  --grad:         linear-gradient(135deg, #F5A623 0%, #D44000 100%);
  --grad-dark:    linear-gradient(135deg, #D44000 0%, #B83200 100%);
  --shadow:       0 4px 24px rgba(213,68,0,.15);
  --shadow-lg:    0 16px 48px rgba(213,68,0,.2);
  --radius:       12px;
  --radius-lg:    20px;
}

html { font-size: 14px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--grad-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,.3);
}
.btn--ghost:hover { border-color: rgba(0,0,0,.7); background: rgba(0,0,0,.08); }
.btn--white {
  background: var(--white);
  color: var(--orange-deep);
  font-weight: 700;
}
.btn--white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn--nav {
  background: var(--grad);
  color: var(--white) !important;
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.btn--nav:hover { background: var(--grad-dark); }
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION HEADERS ---- */
.section__header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section__header--light .section__title { color: var(--white); }
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,.12);
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(245,166,35,.25);
}
.section__tag--light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ======================================
   NAVIGATION
====================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(17,19,24,.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav.scrolled .nav__logo-image {
  filter: brightness(0) invert(1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo-image {
  height: 84px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.logo-mark { display: none; }
.logo-text { display: none; }
.logo-name { display: none; }
.logo-sub { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__links a.active { color: var(--orange); background: rgba(245,166,35,.12); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(17,19,24,.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__mobile.open { display: flex; }

/* ======================================
   HERO
====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

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

.hero__collage-item {
  width: 100%;
  height: 100%;
}

.hero__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform-origin: center center;
  animation: heroZoom 8s ease-out forwards;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video-bg.playing {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245,166,35,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,166,35,.3); }
  50% { box-shadow: 0 0 0 6px rgba(245,166,35,.1); }
}
.hero__headline {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}
.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp .6s .2s ease both;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeUp .6s .3s ease both;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp .6s .4s ease both;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 22px; font-weight: 800; color: #fff; }
.trust-item span { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero image column */
.hero__image-col {
  position: relative;
  animation: fadeUp .6s .2s ease both;
}
.hero__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero__float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8,10,18,.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-badge__dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.float-badge__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.float-badge__info strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.float-badge__info span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.hero__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,.3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), transparent);
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ======================================
   PARTNERS
====================================== */
.partners {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.partners__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.partners__row span {
  font-size: 16px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: .04em;
  transition: color .2s;
}
.partners__row span:hover { color: var(--orange-deep); }

/* ======================================
   SERVICES
====================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.3);
}

.service-card--featured {
  border-color: transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--orange), var(--orange-deep)) border-box;
  box-shadow: 0 8px 40px rgba(212,64,0,.1);
}

.service-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.service-card__features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card__features li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-deep);
  text-decoration: none;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.service-card__link:hover { gap: 8px; }

/* ======================================
   WHY US
====================================== */
.why-us { background: var(--off-white); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__visual {
  position: relative;
  height: 480px;
}
.visual-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.visual-card--main {
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: url('sky-bg.jpg') no-repeat center/cover;
  padding: 40px;
}
.visual-card__sun {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sun-core {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,166,35,.5), 0 0 80px rgba(245,166,35,.2);
  z-index: 1;
}
.sun-rays {
  position: absolute;
  inset: 0;
  animation: rotateSun 20s linear infinite;
}
.sun-rays span {
  position: absolute;
  width: 4px;
  height: 28px;
  background: var(--grad);
  border-radius: 2px;
  left: 50%;
  transform-origin: center 70px;
  opacity: .6;
}
.sun-rays span:nth-child(1)  { transform: translateX(-50%) rotate(0deg); }
.sun-rays span:nth-child(2)  { transform: translateX(-50%) rotate(45deg); }
.sun-rays span:nth-child(3)  { transform: translateX(-50%) rotate(90deg); }
.sun-rays span:nth-child(4)  { transform: translateX(-50%) rotate(135deg); }
.sun-rays span:nth-child(5)  { transform: translateX(-50%) rotate(180deg); }
.sun-rays span:nth-child(6)  { transform: translateX(-50%) rotate(225deg); }
.sun-rays span:nth-child(7)  { transform: translateX(-50%) rotate(270deg); }
.sun-rays span:nth-child(8)  { transform: translateX(-50%) rotate(315deg); }
@keyframes rotateSun { to { transform: rotate(360deg); } }
.visual-card__stat { text-align: center; }
.visual-card__stat strong { font-size: 30px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.visual-card__stat span { font-size: 14px; color: #000; font-weight: 700; }
.visual-card--small {
  flex-direction: row;
  padding: 16px 20px;
  gap: 12px;
  z-index: 2;
}
.visual-card--small strong { font-size: 18px; font-weight: 900; color: #000; }
.visual-card--small span { font-size: 12px; color: #000; font-weight: 700; }
.visual-card--top { top: 20px; right: -24px; }
.visual-card--bottom { bottom: 40px; right: -24px; }

.why-us__content .section__tag,
.why-us__content .section__title,
.why-us__content .section__desc { text-align: left; }
.why-us__content .section__desc { margin-bottom: 36px; }
.why-us__points { display: flex; flex-direction: column; gap: 28px; }
.point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.point__icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px; }
.point h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.point p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials { background: var(--white); }
.testimonials__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.testimonials__header .section__title {
  color: var(--dark);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(245,166,35,.15);
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.3);
}
.testimonial-card--featured {
  background: var(--white);
  border-color: rgba(245,166,35,.3);
  box-shadow: var(--shadow);
}
.testimonial-card__stars {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__author strong {
  font-size: 15px;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}
.testimonial-card__author span { font-size: 13px; color: var(--text-light); }

/* ======================================
   STATS
====================================== */
.stats { background: var(--dark); }
.stats .section__title { color: var(--white); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all .25s;
}
.stat-card:hover { background: rgba(245,166,35,.08); border-color: rgba(245,166,35,.3); transform: translateY(-4px); }
.stat-card__number {
  font-size: 40px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card__label { font-size: 15px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ======================================
   PROCESS
====================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}
.step__num {
  font-size: 36px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step__content h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step__content p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.step__connector {
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 100%);
  opacity: .2;
  z-index: -1;
}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials { background: var(--off-white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(245,166,35,.3); }
.testimonial-card--featured {
  border-color: rgba(245,166,35,.3);
  box-shadow: var(--shadow);
}
.testimonial-card__stars {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__author strong { font-size: 15px; color: var(--dark); display: block; }
.testimonial-card__author span { font-size: 13px; color: var(--text-light); }

/* ======================================
   FAQ
====================================== */
.faq { background: var(--off-white); }
.faq__grid {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.faq__question:hover { background: var(--off-white); color: var(--orange-deep); }
.faq__question[aria-expanded="true"] { color: var(--orange-deep); }
.faq__chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform .3s ease, color .2s;
}
.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--orange-deep);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
}
.faq__answer.open {
  max-height: 400px;
  padding: 0 28px 20px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq__answer p:last-child { margin-bottom: 0; }
.faq__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.faq__cta p { font-size: 16px; color: var(--text-light); font-weight: 500; }

/* ======================================
   CONTACT — social link styles
====================================== */
.contact__detail a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.contact__detail a:hover { color: var(--orange-deep); }

/* ======================================
   FOOTER — social icons
====================================== */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all .2s;
}
.footer__social a:hover {
  background: rgba(245,166,35,.15);
  border-color: rgba(245,166,35,.4);
  color: var(--orange);
}

/* ======================================
   RESIDENTIAL GALLERY
====================================== */
.residential { background: var(--off-white); }

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

.residential__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}

.residential__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.residential__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .residential__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .residential__grid { grid-template-columns: 1fr; }
}

/* ======================================
   CTA BANNER
====================================== */
.cta-banner {
  position: relative;
  background: var(--grad);
  overflow: hidden;
  padding: 72px 0;
}
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__inner h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-banner__inner p { font-size: 17px; color: rgba(255,255,255,.8); }

/* ======================================
   CONTACT
====================================== */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section__tag,
.contact__info .section__title { text-align: left; }
.contact__info > p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.contact__detail svg { width: 24px; height: 24px; flex-shrink: 0; }

/* FORM */
.contact__form {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(245,166,35,.06);
  border: 1.5px solid rgba(245,166,35,.2);
  border-radius: 10px;
  text-align: center;
}
.form__success p { font-size: 15px; color: var(--dark); font-weight: 600; }
.form__success.visible { display: flex; }

/* ======================================
   FOOTER
====================================== */
.footer { background: var(--dark-2); padding: 64px 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { display: flex; flex-direction: column; }
.footer__logo { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 0; }
.footer__h-wrap {
  width: 220px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  margin-left: 0;
  margin-top: 0;
  background: url('h-logo.png') no-repeat center center;
  background-size: 280%;
}
.footer__h-logo {
  display: none;
}
.footer__brand-text { display: flex; flex-direction: column; gap: 12px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 220px; }

/* Footer contact column */
.footer__contact { display: flex; flex-direction: column; gap: 4px; }
.footer__contact h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a,
.footer__contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}
.footer__contact-item a:hover { color: var(--orange); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ======================================
   PROJECTS
====================================== */
.projects { background: var(--dark); }
.projects .section__tag { color: var(--orange); }
.projects .section__title { color: var(--white); }
.projects .section__desc { color: rgba(255,255,255,.5); }

.projects__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.project-card__content { flex: 1; }

.project-card__gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8px;
  height: 320px;
}

.project-card__gallery--single {
  grid-template-columns: 1fr;
}

.project-card__gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.project-card__gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__gallery-thumb {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.project-card__gallery-main img,
.project-card__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.project-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px 40px;
  transition: border-color .2s, background .2s;
}

.project-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(245,166,35,.25);
}

.project-card--featured {
  border-color: rgba(245,166,35,.2);
  background: rgba(245,166,35,.04);
}

.project-card__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.project-card__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.project-card__icon svg {
  width: 100%;
  height: 100%;
}

.project-card__icon--logo {
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  width: 100px;
  height: 100px;
}

.project-card__icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
}

.project-card__icon--logo img[src="gaia-logo.png"] {
  transform: scale(2.0);
}

.project-card__icon--logo img[src="audacity-living-logo.svg"] {
  transform: scale(3.0);
}

.project-card__meta { flex: 1; }

.project-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.project-card__meta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.project-card__scope {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 560px;
}

.project-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.project-card__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}

.project-card__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card__col ul li {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.project-card__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

@media (max-width: 700px) {
  .project-card { padding: 24px 20px; }
  .project-card__header { gap: 16px; }
  .project-card__body { grid-template-columns: 1fr; gap: 20px; }
  .project-card__icon { width: 48px; height: 48px; }
  .project-card__meta h3 { font-size: 18px; }
}

/* ======================================
   CATALOGUE
====================================== */
.catalogue { background: #0d0d0d; }
.catalogue .section__label { color: var(--orange); }
.catalogue .section__title { color: #fff; }
.catalogue .section__desc { color: rgba(255,255,255,.55); }

.catalogue__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid rgba(255,255,255,.1);
  padding-bottom: 0;
}

.catalogue__tab {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  padding: 12px 24px;
  position: relative;
  transition: color .2s;
  letter-spacing: .01em;
}

.catalogue__tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px 2px 0 0;
}

.catalogue__tab.active {
  color: #fff;
}

.catalogue__tab.active::after {
  transform: scaleX(1);
}

.catalogue__panel { display: none; }
.catalogue__panel.active { display: block; }

.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* Catalogue card */
.cat-card {
  background: #1a1a1a;
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.cat-card:hover {
  box-shadow: 0 8px 32px rgba(245,166,35,.1);
  transform: translateY(-2px);
  border-color: rgba(245,166,35,.3);
}

.cat-card--popular {
  border-color: transparent;
  background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
              linear-gradient(135deg, var(--orange), var(--red)) border-box;
  box-shadow: 0 8px 40px rgba(212,64,0,.2);
}

.cat-card__popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.cat-card__tier {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}

.cat-card__kva {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cat-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cat-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(245,166,35,.15);
  color: var(--orange);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 4px;
  padding: 2px 7px;
}

.cat-card__battery {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 7px;
}

.cat-card__configs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cat-card__configs span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 2px 7px;
}

.cat-card__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 4px 0;
}

.cat-card__powers-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 2px;
}

.cat-card__powers {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cat-card__powers li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding-left: 18px;
  position: relative;
}

.cat-card__powers li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  top: -1px;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}

.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,166,35,.06);
}

/* Panel card (centered icon layout) */
.cat-card--panel {
  align-items: center;
  text-align: center;
}

.cat-card__icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 4px;
}

.cat-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  flex: 1;
}

/* Battery two-column layout */
.catalogue__bat-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.catalogue__bat-col {
  background: #1a1a1a;
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px;
}

.bat-col__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bat-col__desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  line-height: 1.5;
}

.bat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 14px 18px;
}

.bat-row--popular {
  border-color: transparent;
  background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
              linear-gradient(135deg, var(--orange), var(--red)) border-box;
}

.bat-row__name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.bat-row__btn {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
}

/* Coming soon panel */
.catalogue__coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 64px 0;
}

.catalogue__coming h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.catalogue__footnote {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-align: center;
}

.catalogue__group-label {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.catalogue__group-label--second {
  margin-top: 48px;
}

.catalogue__group-desc {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}

.catalogue__coming p {
  font-size: 15px;
  color: #777;
  max-width: 420px;
}

@media (max-width: 1024px) {
  .catalogue__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .catalogue__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue__bat-cols { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .catalogue__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue__tab { font-size: 13px; padding: 10px 16px; }
}

/* ======================================
   CLIENTS CAROUSEL
====================================== */
.clients { background: var(--white); }
.clients .section__header { margin-bottom: 48px; }

.clients__carousel-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients__carousel {
  display: flex;
  gap: 64px;
  padding: 20px 0;
  align-items: center;
  width: max-content;
  animation: clientsMarquee 22s linear infinite;
}

.clients__carousel:hover {
  animation-play-state: paused;
}

@keyframes clientsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  flex: 0 0 auto;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.client-logo:hover {
  transform: scale(1.05);
}

.client-logo img {
  max-width: 100%;
  height: 100px;
  width: auto;
  opacity: 1;
  transition: all .2s ease;
}

.client-logo img[src="celebration-church-logo.png"] {
  height: 150px;
  transform: translateY(-16px);
}
.client-logo img[src="sunfi-logo.png"],
.client-logo img[src="joshville-logo.png"] {
  height: 150px;
}
.client-logo img[src="gaia-logo.png"] {
  height: 170px;
}
.client-logo img[src="audacity-living-logo.svg"] {
  height: 150px;
}
.client-logo img[src="celebrate-centre-logo.png"] {
  height: 200px;
}

.client-logo:hover img {
  opacity: 1;
}

/* ======================================
   PRODUCTS CAROUSEL
====================================== */
.products { background: var(--off-white); }
.carousel-wrapper {
  position: relative;
  margin-bottom: 32px;
}
.products__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,166,35,.3) transparent;
}
.products__carousel::-webkit-scrollbar {
  height: 4px;
}
.products__carousel::-webkit-scrollbar-track {
  background: transparent;
}
.products__carousel::-webkit-scrollbar-thumb {
  background: rgba(245,166,35,.3);
  border-radius: 2px;
}
.products__carousel::-webkit-scrollbar-thumb:hover {
  background: rgba(245,166,35,.5);
}
.product-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.product-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card__image {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--grad);
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__image svg {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.25);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: .05em;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.product-card__specs span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: var(--dark);
  z-index: 10;
}
.carousel__nav:hover {
  border-color: var(--orange);
  background: var(--grad);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel__nav svg { width: 20px; height: 20px; }
.carousel__nav--prev { left: -60px; }
.carousel__nav--next { right: -60px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.3);
  cursor: pointer;
  transition: all .2s;
}
.carousel__dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--grad);
  border-color: var(--orange-deep);
}

/* ======================================
   SOLUTIONS GRID
====================================== */
.solutions { background: var(--white); }
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.solution-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.3);
}
.solution-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.solution-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.solution-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.solution-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.solution-card__features li {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.solution-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ======================================
   NEWS & EVENTS
====================================== */
.news { background: var(--dark); }
.news .section__tag { background: rgba(245,166,35,.12); color: var(--orange); border-color: rgba(245,166,35,.25); }
.news .section__tag--light { background: rgba(255,255,255,.1); color: var(--white); }
.news .section__title { color: var(--white); }
.news .section__desc { color: rgba(255,255,255,.65); }

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: rgba(245,166,35,.4);
  background: rgba(245,166,35,.06);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(245,166,35,.15);
}
.news-card--featured {
  flex-direction: column;
}
.news-card--featured .news-card__image {
  width: 100%;
  min-height: unset;
}
.news-card--featured .news-card__content {
  width: 100%;
  padding: 24px;
}
.news-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card__image svg {
  width: 100%;
  height: 100%;
}
.news-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(245,166,35,.9);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 1;
  letter-spacing: .05em;
}
.news-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-card__category {
  display: inline-flex;
  background: rgba(245,166,35,.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-card p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  width: fit-content;
}
.news-card__link:hover { gap: 8px; }
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card--ig .news-card__link { color: var(--orange); }

/* Skeleton loader */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.news-skeleton__img {
  background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.04) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite;
}
.news-skeleton__line {
  height: 14px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.04) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite;
}
.news-skeleton__line--short { width: 55%; }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .hero__inner { padding-top: 140px; padding-bottom: 100px; }
  .hero__img { height: 420px; }
  .why-us__inner { gap: 48px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step__connector { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
  .product-card { flex: 0 0 calc(50% - 12px); }
  .carousel__nav--prev { left: -50px; }
  .carousel__nav--next { right: -50px; }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { min-width: 140px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { padding-top: 120px; padding-bottom: 80px; }
  .hero__content { max-width: 100%; }
  .hero__cta { flex-direction: column; align-items: center; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__visual { height: 340px; }
  .visual-card--top,
  .visual-card--bottom { right: 0; }
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .faq__question { padding: 16px 20px; font-size: 14px; }
  .faq__answer { padding: 0 20px; }
  .faq__answer.open { padding: 0 20px 16px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .product-card { flex: 0 0 100%; }
  .carousel__nav { display: none; }
  .carousel__dots { margin-top: 16px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ======================================
   PAGE HERO (sub-pages)
====================================== */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .section__tag { color: var(--orange); margin-bottom: 16px; display: inline-block; }
.page-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======================================
   CAREERS PAGE
====================================== */
.careers__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.careers__intro-text .section__tag { margin-bottom: 12px; display: inline-block; }
.careers__intro-text h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.careers__intro-text p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.careers__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.careers__value {
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}
.careers__value h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.careers__value p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.careers__openings {
  margin-bottom: 40px;
}

/* ---- JOB LISTING ---- */
.job-listing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.job-listing__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 36px 28px;
  border-bottom: none;
  background: linear-gradient(135deg, #fffaf4 0%, #fff 60%);
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background .2s;
}

.job-listing__header:hover {
  background: linear-gradient(135deg, #fff4e6 0%, #fffaf4 60%);
}

.job-listing__chevron {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.job-listing.open .job-listing__chevron {
  transform: translateY(-50%) rotate(180deg);
}

.job-listing__body,
.job-apply {
  display: none;
}

.job-listing.open .job-listing__body {
  display: grid;
  border-top: 1px solid var(--border);
}

.job-listing.open .job-apply {
  display: block;
}

.job-listing__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.job-listing__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.job-listing__status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #F5A623, #D44000);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

.job-listing__view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-deep);
  text-decoration: none;
  margin-top: 6px;
  transition: color .2s;
}
.job-listing__view-link:hover { color: var(--orange-dark); }

.job-listing__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-listing__tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
}

.job-listing__body {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.job-listing__col {
  padding: 32px 36px;
}

.job-listing__col:first-child {
  border-right: 1px solid var(--border);
}

.job-listing__section {
  margin-bottom: 28px;
}

.job-listing__section:last-child {
  margin-bottom: 0;
}

.job-listing__section h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 10px;
}

.job-listing__section p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.job-listing__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-listing__section ul li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.job-listing__section ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  top: -1px;
}

.job-listing__perks {
  gap: 10px !important;
}

.job-listing__perks li {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0 !important;
  color: var(--dark) !important;
  font-weight: 500 !important;
}

.job-listing__perks li::before {
  display: none !important;
}

.job-listing__perks svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- APPLICATION FORM ---- */
.job-apply {
  padding: 36px 36px 40px;
  background: #fafafa;
  border-top: 1px solid var(--border);
}

.job-apply__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.job-apply__sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.req { color: var(--orange); }

.job-apply__hint {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}

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

.job-apply__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-apply__field--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.job-apply__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.job-apply__field input,
.job-apply__field select,
.job-apply__field textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}

.job-apply__field input:focus,
.job-apply__field select:focus,
.job-apply__field textarea:focus {
  border-color: var(--orange);
}

.job-apply__field textarea {
  resize: vertical;
  min-height: 120px;
}

.job-apply__actions {
  margin-top: 8px;
}

.job-apply__success {
  display: none;
  align-items: center;
  gap: 14px;
  background: #fff8f0;
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
}

.job-apply__success.visible {
  display: flex;
}

.job-apply__success strong {
  font-size: 15px;
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
}

.job-apply__success p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .job-listing__body { grid-template-columns: 1fr; }
  .job-listing__col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .job-listing__col { padding: 24px 20px; }
  .job-listing__header { padding: 24px 20px; }
  .job-apply { padding: 24px 20px; }
  .job-apply__row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .careers__intro { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 120px 0 56px; }
}

/* ======================================
   TEAM PAGE
====================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(213,68,0,.1);
  transform: translateY(-3px);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.team-card__avatar svg {
  width: 36px;
  height: 36px;
  opacity: .9;
}

.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-card__bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.team__dept {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.team__dept:first-child { margin-top: 0; }

@media (max-width: 900px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card { padding: 24px 16px 20px; }
}

/* =============================================
   JOB DETAIL PAGES
   ============================================= */

.job-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .2s;
}
.job-page__back:hover { color: var(--orange); }

.job-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.job-page__tags span {
  font-size: 12px;
  font-weight: 600;
  background: rgba(245,166,35,.12);
  color: var(--orange-deep);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: .03em;
}

.job-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.job-page__col { display: flex; flex-direction: column; gap: 32px; }

.job-apply--open {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

@media (max-width: 760px) {
  .job-page__grid { grid-template-columns: 1fr; gap: 0; }
  .job-apply--open { padding: 24px 20px; }
}
