/* =============================================
   Voltiva Energy — Brand Design System
   Navy: #0B1D3A | Orange: #F68205 | Green: #279356
   ============================================= */

:root {
  --navy:        #0B1D3A;
  --navy-light:  #152D52;
  --navy-dark:   #061224;
  --orange:      #F68205;
  --orange-dark: #D96E00;
  --orange-light:#FF9A2E;
  --green:       #279356;
  --green-dark:  #1E7344;
  --green-light: #32A868;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #EEF2F7;
  --gray-200:    #D8DFEA;
  --gray-400:    #8A96A8;
  --gray-600:    #4A5568;
  --gray-800:    #1A202C;
  --text:        #2D3748;
  --text-light:  #718096;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(11, 29, 58, 0.08);
  --shadow-md:  0 8px 30px rgba(11, 29, 58, 0.12);
  --shadow-lg:  0 20px 60px rgba(11, 29, 58, 0.18);

  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 130, 5, 0.35);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ========== SECTION UTILITIES ========== */
.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.pill-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gray-100);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-tag--light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc--light { color: rgba(255, 255, 255, 0.75); }

.section-header--center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--dark {
  background: var(--navy);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(246, 130, 5, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(246, 130, 5, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.header.scrolled::before {
  background: rgba(11, 29, 58, 0.98);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo img {
  height: 70px;
  width: auto;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.header.scrolled .header__logo img {
  height: 58px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-light);
}

.chevron {
  transition: transform var(--transition);
}

.nav-item--dropdown.open .chevron {
  transform: rotate(180deg);
}

/* Services Dropdown — brand navy/orange style */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 16px 48px rgba(11, 29, 58, 0.2);
  border: 1px solid var(--gray-100);
  z-index: 100;
}

.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown.open .dropdown,
.nav-item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.dropdown a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: var(--transition);
}

.dropdown a:hover {
  background: rgba(246, 130, 5, 0.08);
  color: var(--orange-dark);
  padding-left: 20px;
}

.dropdown a:hover::before {
  opacity: 1;
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
}

.hero__slider-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}

.hero__slider-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero__slider-dot.active {
  background: var(--orange);
  width: 32px;
  border-radius: 20px;
}

.hero__slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 29, 58, 0.75) 0%,
    rgba(11, 29, 58, 0.3) 40%,
    rgba(11, 29, 58, 0.1) 100%
  );
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 20;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(246, 130, 5, 0.2) 0%, rgba(246, 130, 5, 0.1) 100%);
  border: 1px solid rgba(246, 130, 5, 0.5);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffcc99;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(246, 130, 5, 0.4);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(246, 130, 5, 0.5);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
  border-bottom: 3px solid var(--orange);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-bar__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-bar__items span {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
}

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img-wrap:hover img {
  transform: scale(1.04);
}

.about__card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__card-icon {
  margin-bottom: 4px;
}

.about__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about__card span {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}

.about__features {
  margin: 28px 0 36px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.about__features svg {
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services--light {
  background: var(--off-white);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(11, 29, 58, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(11, 29, 58, 0.18);
}

.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card__num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.service-card__body {
  padding: 28px 24px 32px;
  background: var(--white);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(246, 130, 5, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--orange-light);
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
  background: var(--white);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.why-choose__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  margin: 28px 0 32px;
}

.why-choose__feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(246, 130, 5, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.why-choose__feature h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-choose__feature p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.why-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.why-stat span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.why-choose__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-gallery__main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-gallery__main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.why-gallery__tags {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-gallery__tags span {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.why-gallery__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-gallery__small {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-gallery__small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-gallery__card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.why-gallery__card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-gallery__card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-gallery__card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

/* ========== FAQ ========== */
.faq {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.faq__decor {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

.faq__decor--wind {
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%230B1D3A'%3E%3Cpath d='M50 10 L55 40 L85 35 L60 55 L70 85 L50 65 L30 85 L40 55 L15 35 L45 40 Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.faq__decor--house {
  bottom: 10%;
  left: 40%;
  width: 160px;
  height: 160px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%230B1D3A'%3E%3Cpath d='M10 50 L50 15 L90 50 L90 90 L10 90 Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq__help-card {
  margin-top: 36px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.faq__help-content {
  position: relative;
  z-index: 1;
}

.faq__help-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.faq__help-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.faq__help-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq__help-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.faq__help-link:hover {
  color: var(--orange-light);
}

.faq__help-arrow {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq__help-link:hover .faq__help-arrow {
  transform: translateX(4px);
}

.faq__help-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.faq__help-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(246, 130, 5, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item__trigger:hover {
  color: var(--orange);
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__body {
  max-height: 300px;
}

.faq-item__body p {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.75) 50%, rgba(246, 130, 5, 0.35) 100%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PROCESS ========== */
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
}

.process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(246, 130, 5, 0.3);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.55;
}

.process-step__connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  position: relative;
}

.process-step__connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--gray-200);
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact__details {
  margin-top: 36px;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact__icon {
  width: 44px;
  height: 44px;
  background: rgba(246, 130, 5, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact__details strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact__details span {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.contact__form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  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(246, 130, 5, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer__brand img {
  margin-bottom: 16px;
  filter: brightness(1.05);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer__links h4,
.footer__newsletter h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__newsletter p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-form input:focus {
  border-color: var(--orange);
}

.newsletter-form .btn {
  padding: 12px 20px;
  font-size: 0.8125rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8125rem;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--orange); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__grid,
  .why-choose__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__card {
    right: 16px;
    bottom: -16px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .section { padding: 72px 0; }

  .hamburger { display: flex; }

  .header__cta { display: none; }

  .hero__slider-controls {
    padding: 0 12px;
  }

  .hero__slider-btn {
    width: 48px;
    height: 48px;
  }

  .hero__slider-dots {
    bottom: 100px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1.0625rem;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 4px;
    margin-left: 16px;
    min-width: auto;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .dropdown a {
    color: var(--white);
  }

  .dropdown a:hover {
    background: rgba(246, 130, 5, 0.2);
    color: var(--orange-light);
  }

  .nav-item--dropdown.open .dropdown {
    display: block;
    transform: none;
  }

  .nav-item--dropdown:hover .dropdown {
    display: none;
  }

  .nav-item--dropdown.open:hover .dropdown {
    display: block;
  }

  .hero__stats { gap: 24px; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-gallery__bottom {
    grid-template-columns: 1fr;
  }

  .faq__help-card {
    grid-template-columns: 1fr;
  }

  .faq__help-img {
    width: 100%;
    height: 160px;
  }

  .process__steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .process-step__connector {
    width: 2px;
    height: 24px;
    flex: none;
    margin: 0;
  }

  .process-step__connector::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .trust-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar__items {
    justify-content: center;
  }

  .hero__scroll { display: none; }
}

/* ========== ABOUT HERO ========== */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-hero__visual {
  position: relative;
}

.about-hero__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-hero__img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-hero__img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-hero__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__features {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-hero__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.about-hero__features svg {
  flex-shrink: 0;
}

/* ========== TIMELINE ========== */
.timeline {
  background: var(--off-white);
}

.timeline__items {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline__item--left {
  left: 0;
}

.timeline__item--right {
  left: 50%;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 1;
}

.timeline__item--left::before {
  right: -10px;
}

.timeline__item--right::before {
  left: -10px;
}

.timeline__content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== STATS ========== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(246, 130, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.testimonial-card__role {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.testimonial-card__rating {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== CONTACT CTA ========== */
.contact-cta {
  background: var(--off-white);
}

.contact-cta__inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.contact-cta__img {
  width: 300px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-cta__content p {
  font-size: 1rem;
  color: var(--text-light);
}

.contact-cta__phone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(246, 130, 5, 0.35);
}

.contact-cta__phone-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

/* ========== RESPONSIVE STYLES FOR NEW SECTIONS ========== */
@media (max-width: 1024px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero__img-secondary {
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
  }

  .about-hero__features {
    grid-template-columns: 1fr;
  }

  .timeline__items::before {
    left: 20px;
  }

  .timeline__item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline__item--right {
    left: 0;
  }

  .timeline__item::before {
    left: 10px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-cta__img {
    width: 100%;
    height: 200px;
  }

  .contact-cta__phone {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICE HERO ========== */
.service-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 29, 58, 0.85) 0%,
    rgba(11, 29, 58, 0.4) 50%,
    rgba(11, 29, 58, 0.3) 100%
  );
}

.service-hero__content {
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
  padding-top: calc(var(--header-h) + 40px);
}

.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.service-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.service-hero__breadcrumb a:hover {
  color: var(--orange-light);
}

.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

/* ========== SERVICE INFOGRAPHIC ========== */
.service-infographic__wrapper {
  background: linear-gradient(135deg, #0B1D3A 0%, #152D52 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.service-infographic__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 320px;
}

.service-infographic__svg {
  width: 100%;
  height: auto;
  max-height: 300px;
}

/* ========== SERVICE WHAT ========== */
.service-what__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.service-what__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-what__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* ========== SERVICE CALCULATOR ========== */
.service-calculator__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-calculator__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-calculator__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.calculator {
  margin-top: 0;
}

.calculator__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 100%;
}

.calculator__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  position: relative;
}

.calculator__form label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.calculator__form .input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 16px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.calculator__form .input-wrapper:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(246, 130, 5, 0.15);
}

.calculator__form input {
  flex: 1;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.calculator__form .unit {
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  white-space: nowrap;
}

.calculator__result {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 8px;
  box-shadow: 0 10px 40px rgba(246, 130, 5, 0.3);
}

.calculator__result h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calculator__amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
}

/* ========== SERVICE PRICING ========== */
.service-pricing__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-pricing__list li {
  display: flex;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.service-pricing__bullet {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
}

.service-pricing__list strong {
  color: var(--navy);
  font-family: var(--font-display);
}

/* ========== SERVICE ROI ========== */
.service-roi__wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.service-roi__wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 16px;
}

.service-roi__wrapper p {
  color: var(--text);
  line-height: 1.7;
}

.service-roi__formula {
  background: var(--off-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin: 16px 0;
  display: inline-block;
}

.service-roi__formula code {
  font-family: 'Courier New', monospace;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

.service-roi__list,
.service-roi__steps {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-roi__list li,
.service-roi__steps li {
  color: var(--text);
  line-height: 1.7;
}

.service-roi__list ul,
.service-roi__steps ul {
  margin-top: 8px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ========== SERVICE HOW ========== */
.service-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.service-how__item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-how__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(246, 130, 5, 0.3);
}

.service-how__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(246, 130, 5, 0.15) 0%, rgba(246, 130, 5, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-how__icon svg {
  width: 32px;
  height: 32px;
}

.service-how__item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-how__item p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== RESPONSIVE FOR SERVICE PAGES ========== */
@media (max-width: 1024px) {
  .service-what__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-how__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-calculator__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-calculator__image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .service-how__grid {
    grid-template-columns: 1fr;
  }

  .service-calculator__image img {
    height: 300px;
  }

  .calculator__form .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .calculator__form label {
    flex: none;
  }

  .calculator__form input {
    width: 100%;
  }

  .service-roi__wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about__img-wrap img {
    height: 320px;
  }
}
