/* ============================================================
   FYNIX INTERNATIONAL — Design System & Homepage Styles
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --navy: #1B2A4A;
  --navy-dark: #111D35;
  --navy-light: #2A3F6A;
  --orange: #EB5F2D;
  --orange-hover: #D14E1F;
  --orange-light: rgba(235, 95, 45, .1);
  --eggshell: #F0E6DC;
  --ghost-gray: #C8C8D2;
  --white: #FFFFFF;
  --off-white: #F9F5F0;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --text-muted: #888888;
  --font-heading: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 110px 0;
  --container-width: 1200px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, .06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, .1);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition)
}

ul {
  list-style: none
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: var(--section-padding)
}

.section--eggshell {
  background: var(--eggshell)
}

.section--off-white {
  background: var(--off-white)
}

.section--navy {
  background: var(--navy-dark);
  color: var(--white)
}

.section-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.28;
  margin-bottom: 20px
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 15px 34px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange)
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 95, 45, .3)
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px)
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white)
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px)
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: box-shadow .4s ease, background .4s ease
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.4px;
  position: relative;
  transition: color .4s ease
}

.navbar.scrolled .navbar__logo {
  color: var(--navy)
}

.navbar__logo::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: super
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  position: relative;
  padding: 4px 0;
  transition: color .4s ease
}

.navbar.scrolled .navbar__links a {
  color: var(--text-light)
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition)
}

.navbar__links a:hover {
  color: var(--white)
}

.navbar.scrolled .navbar__links a:hover {
  color: var(--navy)
}

.navbar__links a:hover::after {
  width: 100%
}

.navbar__cta {
  margin-left: 16px
}

.navbar__cta .btn {
  padding: 12px 26px;
  font-size: .76rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(235, 95, 45, .2);
  color: var(--white);
  text-transform: none
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px
}

.navbar.scrolled .navbar__toggle span {
  background: var(--navy)
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 0;
  margin-top: 0;
  overflow: hidden
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  animation: hero-zoom 18s ease-out forwards
}

@keyframes hero-zoom {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.06)
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 29, 53, .4) 0%, rgba(17, 29, 53, .55) 40%, rgba(17, 29, 53, .82) 100%);
  z-index: 1
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px 0;
  max-width: 680px
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(50, 55, 65, .5);
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 100px;
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14)
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.42;
  margin-bottom: 22px;
  letter-spacing: -.2px
}

.hero__description {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
  letter-spacing: 0
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 400;
  letter-spacing: .15px
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(235, 95, 45, .14);
  color: var(--orange);
  font-weight: 700;
  font-size: .6rem;
  flex-shrink: 0
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-dark);
  padding: 48px 0
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stats-bar__item {
  padding: 12px 0
}

.stats-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px
}

.stats-bar__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

/* ============================================================
   SERVICE TICKER
   ============================================================ */
.ticker {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
  position: relative
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%)
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%)
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite
}

.ticker__content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  padding: 0 12px
}

.ticker__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 20px;
  flex-shrink: 0;
  opacity: .8
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  padding: 100px 0
}

.problem__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center
}

.problem__title {
  margin-bottom: 32px
}

.problem__body p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 22px
}

.problem__body p:last-child {
  margin-bottom: 0
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 100px 0 80px
}

.services__header {
  margin-bottom: 56px
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, .04);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width .4s ease
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.service-card:hover::before {
  width: 100%
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(27, 42, 74, .06), rgba(27, 42, 74, .02));
  border-radius: 12px;
  transition: background var(--transition)
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(235, 95, 45, .1), rgba(235, 95, 45, .04))
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.5
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  letter-spacing: -.2px
}

.service-card__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease
}

.service-card:hover .service-card__title::after {
  transform: scaleX(1)
}

.service-card__text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 22px
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(235, 95, 45, .06);
  border: 1px solid rgba(235, 95, 45, .15);
  transition: all var(--transition)
}

.service-card__link:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px)
}

/* ============================================================
   WHY FYNIX SECTION
   ============================================================ */
.why-us {
  padding: 110px 0
}

.why-us__header {
  margin-bottom: 56px
}

.why-us__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto
}

.why-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px 44px;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03)
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.why-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(235, 95, 45, .12), rgba(235, 95, 45, .05));
  border: 2px solid rgba(235, 95, 45, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all var(--transition)
}

.why-card:hover .why-card__icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.06)
}

.why-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  transition: color var(--transition)
}

.why-card:hover .why-card__icon svg {
  color: var(--white)
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  font-style: normal;
  letter-spacing: -.15px
}

.why-card__text {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.8
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works {
  padding: 100px 0
}

.how-it-works__header {
  margin-bottom: 64px
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto
}

.step-card {
  text-align: center;
  padding: 48px 32px 44px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all var(--transition);
  position: relative
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.step-card__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: 100px 0
}

.testimonials__header {
  margin-bottom: 56px
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .03)
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.testimonial-card__quote {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  padding-top: 28px
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 0;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--orange);
  opacity: .3;
  line-height: 1
}

.testimonial-card__author {
  border-top: 1px solid rgba(0, 0, 0, .07);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.testimonial-card__author strong {
  font-family: var(--font-heading);
  font-size: .92rem;
  color: var(--navy);
  font-weight: 700
}

.testimonial-card__author span {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .2px
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 80px 0 60px
}

.faq__header {
  margin-bottom: 36px
}

.faq__list {
  max-width: 820px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: background var(--transition)
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, .08)
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  line-height: 1.5;
  transition: color var(--transition)
}

.faq-item__question:hover {
  color: var(--orange)
}

.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(235, 95, 45, .08)
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease
}

.faq-item__answer p {
  font-size: .96rem;
  color: var(--text-light);
  line-height: 1.88;
  padding: 0 4px 22px
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(235, 95, 45, .15)
}

.faq-item.active .faq-item__answer {
  max-height: 300px
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  padding: 80px 0 110px;
  background: var(--white)
}

.cta__inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden
}

.cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 95, 45, .12) 0%, transparent 70%);
  pointer-events: none
}

.cta__inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(235, 95, 45, .08) 0%, transparent 70%);
  pointer-events: none
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1
}

.cta__info {
  padding-top: 8px
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  text-align: left
}

.cta__text {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, .72);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: left
}

.cta__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition)
}

.cta__whatsapp:hover {
  color: #25D366
}

.cta__whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #25D366
}

/* ---------- Contact Form ---------- */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.cta-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cta-form__field label {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55)
}

.cta-form__field input,
.cta-form__field select,
.cta-form__field textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none
}

.cta-form__field input::placeholder,
.cta-form__field textarea::placeholder {
  color: rgba(255, 255, 255, .3)
}

.cta-form__field input:focus,
.cta-form__field select:focus,
.cta-form__field textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .1)
}

.cta-form__field select {
  cursor: pointer;
  color: rgba(255, 255, 255, .7)
}

.cta-form__field select option {
  background: var(--navy-dark);
  color: var(--white)
}

.cta-form__field textarea {
  resize: vertical;
  min-height: 100px
}

.cta-form__submit {
  margin-top: 8px
}

.cta-form__submit .btn {
  width: 100%;
  padding: 16px 32px;
  font-size: .88rem;
  box-shadow: 0 4px 16px rgba(235, 95, 45, .35)
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.cta__buttons .btn--primary {
  padding: 16px 40px;
  font-size: .85rem;
  box-shadow: 0 4px 16px rgba(235, 95, 45, .35)
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .65);
  padding: 64px 0 32px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px
}

.footer__brand-text {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55)
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.footer__links li {
  margin-bottom: 12px
}

.footer__links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .3px;
  transition: color var(--transition)
}

.footer__links a:hover {
  color: var(--orange)
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35)
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  z-index: 999;
  transition: all var(--transition)
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4)
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media(max-width:1024px) {
  :root {
    --section-padding: 72px 0
  }

  .hero {
    min-height: 90vh;
    padding-top: 88px
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .why-us__grid {
    gap: 24px
  }

  .how-it-works__grid {
    gap: 24px
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .cta__inner {
    padding: 56px 40px
  }

  .cta__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .cta__title,
  .cta__text {
    text-align: center;
    max-width: 100%
  }

  .cta__info {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
  }
}

@media(max-width:768px) {
  :root {
    --section-padding: 60px 0
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 108px 36px 40px;
    gap: 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .1);
    transition: right .35s ease
  }

  .navbar__links a {
    color: var(--text-light)
  }

  .navbar__links a:hover {
    color: var(--navy)
  }

  .navbar__links.open {
    right: 0
  }

  .navbar__cta {
    margin-left: 0;
    margin-top: 16px
  }

  .navbar__toggle {
    display: flex
  }

  .hero {
    min-height: 85vh;
    padding-top: 80px
  }

  .hero__title {
    font-size: 2rem
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px
  }

  .hero__buttons .btn {
    width: 100%;
    text-align: center
  }

  .hero__trust {
    flex-direction: column;
    gap: 8px
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .services__grid {
    grid-template-columns: 1fr
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr
  }

  .how-it-works__grid {
    grid-template-columns: 1fr
  }

  .testimonials__grid {
    grid-template-columns: 1fr
  }

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .cta__inner {
    padding: 48px 28px
  }

  .cta-form__row {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero {
    min-height: 80vh
  }

  .hero__content {
    padding-bottom: 56px
  }

  .hero__title {
    font-size: 1.75rem
  }

  .hero__description {
    font-size: .95rem
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr
  }

  .why-us__grid {
    grid-template-columns: 1fr
  }

  .why-card {
    padding: 32px 20px 28px
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .cta__inner {
    padding: 40px 20px
  }

  .cta-form__row {
    grid-template-columns: 1fr
  }

  .service-card {
    padding: 32px 24px
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px
  }

  .whatsapp-fab svg {
    width: 28px;
    height: 28px
  }
}

/* Mobile Menu Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition)
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible
}

/* ============================================================
   FINAL MANUAL POLISH — Hero, Navbar, Buttons
   ============================================================ */

/* Transparent navbar should still have readable contrast */
.navbar {
  background: rgba(17, 29, 53, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

/* Make nav text clearer on hero */
.navbar__logo {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.9px;
}

.navbar__links a:hover {
  color: #ffffff;
}

.navbar.scrolled .navbar__logo,
.navbar.scrolled .navbar__links a {
  text-shadow: none;
}

/* Premium CTA buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  padding: 14px 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.btn--primary {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(235, 95, 45, 0.22);
}

.btn--primary:hover {
  background: #d94f21;
  border-color: #d94f21;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(235, 95, 45, 0.34);
}

.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

/* Navbar CTA should feel premium, not bulky */
.navbar__cta .btn {
  padding: 13px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(235, 95, 45, 0.26);
}

.navbar__cta .btn:hover {
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(235, 95, 45, 0.36);
}

/* Hero layout: cleaner structure and spacing */
.hero {
  min-height: 94svh;
  align-items: center;
  padding: 128px 0 72px;
}

.hero__content {
  max-width: 760px;
  padding: 0;
}

.hero__badge {
  margin-bottom: 24px;
}

.hero__title {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}

.hero__description {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}

.hero__buttons {
  gap: 18px;
  margin-bottom: 34px;
}

/* Trust signals should not feel cut or cramped */
.hero__trust {
  max-width: 760px;
  gap: 12px 30px;
  padding-top: 22px;
  margin-top: 4px;
}

.hero__trust li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Mobile/tablet cleanup */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 130px 0 76px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar__logo {
    color: var(--navy);
    text-shadow: none;
  }

  .navbar__toggle span {
    background: var(--navy);
  }

  .hero {
    padding: 120px 0 64px;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
  }

  .hero__description {
    font-size: 0.98rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 112px 0 56px;
  }

  .hero__badge {
    font-size: 0.58rem;
    padding: 10px 15px;
    letter-spacing: 0.7px;
  }

  .hero__title {
    font-size: 2rem;
  }
}

/* Final tiny hero/navbar balance */
.navbar {
  background: rgba(17, 29, 53, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2.15rem, 3.85vw, 4rem);
  line-height: 1.12;
  max-width: 720px;
}

.hero__description {
  max-width: 600px;
}

.navbar__inner {
  height: 76px;
}

/* ============================================================
   FINAL FIX — Navbar CTA hover + Hero content fit
   ============================================================ */

/* Fix navbar CTA button hover/interactive feel */
.navbar__cta a::after {
  display: none !important;
}

.navbar__cta .btn,
.navbar__links .navbar__cta .btn {
  color: #ffffff !important;
  background: var(--orange);
  border-color: var(--orange);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(235, 95, 45, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.navbar__cta .btn:hover,
.navbar__links .navbar__cta .btn:hover {
  color: #ffffff !important;
  background: #d94f21;
  border-color: #d94f21;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(235, 95, 45, 0.42);
}

.navbar__cta .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(235, 95, 45, 0.28);
}

/* Make hero content fit better on first load */
.hero {
  min-height: 92svh;
  padding: 112px 0 54px;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 3.55vw, 3.65rem);
  line-height: 1.13;
  max-width: 700px;
  margin-bottom: 22px;
}

.hero__description {
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 590px;
  margin-bottom: 28px;
}

.hero__buttons {
  margin-bottom: 26px;
}

.hero__buttons .btn {
  padding: 14px 28px;
  min-height: 54px;
}

/* Make trust signals less likely to push content below fold */
.hero__trust {
  padding-top: 18px;
  gap: 10px 26px;
}

.hero__trust li {
  font-size: 0.78rem;
}

/* Laptop/smaller-height screens */
@media (max-height: 820px) and (min-width: 900px) {
  .hero {
    min-height: 92vh;
    padding: 100px 0 44px;
  }

  .hero__badge {
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .hero__description {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero__buttons {
    margin-bottom: 20px;
  }

  .hero__buttons .btn {
    padding: 12px 26px;
    min-height: 50px;
  }

  .hero__trust {
    padding-top: 16px;
  }
}

/* ============================================================
   FIX — Mobile menu link visibility on hero
   ============================================================ */

@media (max-width: 768px) {
  .navbar__links.open {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navbar__links.open a {
    color: var(--navy) !important;
    text-shadow: none !important;
    opacity: 1 !important;
  }

  .navbar__links.open a:hover {
    color: var(--orange) !important;
  }

  .navbar__links.open .navbar__cta .btn {
    color: #ffffff !important;
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    text-shadow: none !important;
  }

  .navbar__links.open .navbar__cta .btn:hover {
    color: #ffffff !important;
    background: var(--orange-hover) !important;
    border-color: var(--orange-hover) !important;
  }

  .navbar__toggle.active span {
    background: var(--navy) !important;
  }
}

/* Accent text inside headings */
.text-accent {
  color: var(--orange);
}

.cta .text-accent {
  color: #ff7a4a;
}

/* ============================================================
   FINAL POLISH — Navbar Brand
   ============================================================ */

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.navbar__logo:hover {
  transform: translateY(-1px);
}

.navbar__logo::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(235, 95, 45, 0.12);
}

.navbar.scrolled .navbar__logo {
  color: var(--navy);
}

.navbar__logo::after {
  box-shadow: 0 0 0 4px rgba(235, 95, 45, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar__logo:hover::after {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(235, 95, 45, 0.18);
}

.navbar__logo::after {
  transform: translateY(-4px);
}

/* CTA heading accent reveal */
.cta-title-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateX(-90px);
  will-change: transform, opacity;
}

.cta__inner.visible .cta-title-reveal {
  animation: ctaAccentReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.18s;
}

@keyframes ctaAccentReveal {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-title-reveal {
    opacity: 1;
    transform: none;
  }

  .cta__inner.visible .cta-title-reveal {
    animation: none;
  }
}

/* Keep CTA heading accent on same line on desktop */
@media (min-width: 900px) {
  .cta__title {
    max-width: 620px;
    white-space: nowrap;
  }

  .cta-title-reveal {
    display: inline-block;
    white-space: nowrap;
  }
}

/* CTA eyebrow label */
.cta__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* CTA text refinement */
.cta__title {
  line-height: 1.18;
  margin-bottom: 26px;
}

.cta__text {
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta__whatsapp {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.cta__whatsapp:hover {
  color: #25D366;
}

.footer-accent {
  color: var(--orange);
}

/* ============================================================
   NAVBAR — Official phoenix logo
   ============================================================ */

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.navbar__logo::after {
  display: none !important;
}

.navbar__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.navbar__logo span {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.navbar.scrolled .navbar__logo {
  color: var(--navy);
}

@media (max-width: 768px) {
  .navbar__logo-img {
    width: 36px;
    height: 36px;
  }

  .navbar__logo span {
    font-size: 1.05rem;
  }
}

/* ============================================================
   CLIENT FEEDBACK — Softer section color transitions
   ============================================================ */

/* Softer warm section instead of heavy beige */
.section--eggshell,
.problem,
.why-us,
.testimonials {
  background: #f4efe8;
}

/* Soft off-white instead of harsh pure white */
.section,
.services,
.how-it-works,
.faq {
  background: #fbf8f3;
}

/* Make the problem section transition from the dark ticker softer */
.problem {
  padding-top: 96px;
}

/* Services should not feel like a sudden white jump */
.services {
  background: #fbf8f3;
}

/* Why section should feel connected, not like a separate beige block */
.why-us {
  background:
    radial-gradient(circle at top left, rgba(235, 95, 45, 0.055), transparent 34%),
    #f4efe8;
}

/* Testimonials same soft family */
.testimonials {
  background: #f4efe8;
}

/* FAQ should stay light but not stark white */
.faq {
  background: #fbf8f3;
}

/* Tighten spacing after problem section for smoother flow */
.problem {
  padding-bottom: 80px;
}

.services {
  padding-top: 86px;
}

@media (max-width: 768px) {
  .problem {
    padding-bottom: 64px;
  }

  .services {
    padding-top: 72px;
  }
}

/* ============================================================
   CLIENT FEEDBACK — Make Why Fynix cards less plain
   ============================================================ */

.why-us {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(235, 95, 45, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(27, 42, 74, 0.06), transparent 32%),
    #f4efe8;
}

.why-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(27, 42, 74, 0.08);
  box-shadow: 0 22px 55px rgba(27, 42, 74, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.10), transparent 34%);
  opacity: 0.9;
  pointer-events: none;
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.55;
}

.why-card__icon,
.why-card__title,
.why-card__text {
  position: relative;
  z-index: 1;
}

.why-card__icon {
  background: rgba(235, 95, 45, 0.08);
  border: 1px solid rgba(235, 95, 45, 0.18);
  box-shadow: 0 12px 28px rgba(235, 95, 45, 0.08);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(27, 42, 74, 0.12);
  border-color: rgba(235, 95, 45, 0.18);
}

/* ============================================================
   WHY FYNIX — Premium image cards
   ============================================================ */

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(27, 42, 74, 0.16);
}

/* background image */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--why-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.58;
  transform: scale(1.04);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

/* dark readable overlay */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 27, 48, 0.28), rgba(15, 27, 48, 0.88)),
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.25), transparent 36%);
  pointer-events: none;
}

/* each card image */
.why-card--manager {
  --why-bg: url("assets/images/why/manager.webp");
}

.why-card--global {
  --why-bg: url("assets/images/why/global.webp");
}

.why-card--plain {
  --why-bg: url("assets/images/why/plain.webp");
}

.why-card--flexible {
  --why-bg: url("assets/images/why/flexible.webp");
}

/* content above image */
.why-card__icon,
.why-card__title,
.why-card__text {
  position: relative;
  z-index: 2;
}

.why-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 0 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-card__title {
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card__text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 84px rgba(27, 42, 74, 0.22);
}

.why-card:hover::before {
  transform: scale(1.1);
  opacity: 0.72;
}

/* ============================================================
   WHY FYNIX — Premium image cards
   ============================================================ */

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(27, 42, 74, 0.16);
}

/* Full image background */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--why-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.68;
  transform: scale(1.04);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

/* Dark overlay for readability */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 27, 48, 0.18), rgba(15, 27, 48, 0.88)),
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.24), transparent 36%);
  pointer-events: none;
}

/* Card-specific images */
.why-card--manager {
  --why-bg: url("assets/images/why/manager.webp");
}

.why-card--global {
  --why-bg: url("assets/images/why/global.webp");
}

.why-card--plain {
  --why-bg: url("assets/images/why/plain.webp");
}

.why-card--flexible {
  --why-bg: url("assets/images/why/flexible.webp");
}

/* Content above image */
.why-card__icon,
.why-card__title,
.why-card__text {
  position: relative;
  z-index: 2;
}

.why-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 0 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.why-card__title {
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card__text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 84px rgba(27, 42, 74, 0.22);
}

.why-card:hover::before {
  transform: scale(1.1);
  opacity: 0.78;
}

/* ============================================================
   WHY FYNIX — Improve text readability on image cards
   ============================================================ */

.why-card {
  min-height: 390px;
  padding: 40px;
  justify-content: flex-end;
}

/* Keep image visible */
.why-card::before {
  opacity: 0.78;
}

/* Stronger dark overlay, especially at bottom where text sits */
.why-card::after {
  background:
    linear-gradient(180deg,
      rgba(15, 27, 48, 0.12) 0%,
      rgba(15, 27, 48, 0.35) 38%,
      rgba(15, 27, 48, 0.78) 68%,
      rgba(15, 27, 48, 0.96) 100%),
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.18), transparent 38%);
}

/* Add a subtle readable text area */
.why-card__title,
.why-card__text {
  max-width: 360px;
}

.why-card__title {
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.why-card__text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

/* Make icon less distracting and more premium */
.why-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  background: rgba(15, 27, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--orange);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Better mobile readability */
@media (max-width: 768px) {
  .why-card {
    min-height: 350px;
    padding: 32px 28px;
  }

  .why-card__title {
    font-size: 1.08rem;
  }

  .why-card__text {
    font-size: 0.92rem;
  }
}

.why-card,
.why-card__title,
.why-card__text {
  text-align: left;
}

.why-card__icon {
  margin-left: 0;
  margin-right: auto;
}

/* Final readability polish for Why Fynix image cards */
.why-card {
  min-height: 420px;
  padding: 44px 44px 40px;
  justify-content: flex-end;
}

/* Keep images visible, but darken the text area strongly */
.why-card::after {
  background:
    linear-gradient(180deg,
      rgba(15, 27, 48, 0.06) 0%,
      rgba(15, 27, 48, 0.22) 35%,
      rgba(15, 27, 48, 0.76) 68%,
      rgba(15, 27, 48, 0.97) 100%),
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.16), transparent 38%);
}

/* Make image slightly less washed out */
.why-card::before {
  opacity: 0.9;
}

/* Better text hierarchy */
.why-card__title {
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 380px;
}

.why-card__text {
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.88);
}

/* Icon should feel like a small badge, not too dominant */
.why-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: rgba(15, 27, 48, 0.62);
}

/* Softer premium image-card balance */
.why-card::before {
  opacity: 0.72;
  filter: saturate(0.85) contrast(0.95);
}

.why-card::after {
  background:
    linear-gradient(180deg,
      rgba(15, 27, 48, 0.10) 0%,
      rgba(15, 27, 48, 0.28) 40%,
      rgba(15, 27, 48, 0.72) 72%,
      rgba(15, 27, 48, 0.94) 100%),
    radial-gradient(circle at top right, rgba(235, 95, 45, 0.14), transparent 38%);
}

.why-card__title {
  font-size: 1.12rem;
  line-height: 1.28;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

/* ============================================================
   FOOTER — Official logo branding
   ============================================================ */

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer__brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer__brand-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .footer__brand {
    justify-content: center;
  }

  .footer__brand-logo {
    width: 38px;
    height: 38px;
  }
}

/* Services subtitle line-break control */
.services__subtitle {
  max-width: 860px;
  line-height: 1.65;
}

.services__subtitle br {
  display: block;
}

/* ============================================================
   FINAL COLOR FLOW FIX — Keep sections in one soft theme
   ============================================================ */

/* One consistent light theme for the middle homepage */
.problem,
.services,
.why-us,
.testimonials,
.how-it-works,
.faq {
  background: #f7f4ef !important;
}

/* Slightly lighter sections where needed, but still same family */
.services,
.how-it-works,
.faq {
  background: #faf8f4 !important;
}

/* Keep Why + Testimonials warm but not heavy beige */
.why-us,
.testimonials {
  background: #f7f4ef !important;
}

/* ============================================================
   SERVICE PAGE — Bookkeeping & Accounting
   ============================================================ */

.service-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  background:
    linear-gradient(90deg, rgba(15, 27, 48, 0.92), rgba(15, 27, 48, 0.68)),
    url("assets/images/hero-building.webp");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.service-hero__content {
  max-width: 820px;
}

.service-hero .section-eyebrow {
  color: var(--orange);
}

.service-hero__meta {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.service-hero__text {
  max-width: 690px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}

.service-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn--outline-dark {
  border: 1px solid rgba(27, 42, 74, 0.24);
  color: var(--navy);
  background: transparent;
}

.service-hero .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.service-hero .btn--outline-dark:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

/* Shared service page headers */
.section-header {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-header .section-title {
  margin-bottom: 18px;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.service-intro__content {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(27, 42, 74, 0.76);
}

.service-highlight {
  padding: 28px 30px;
  margin-bottom: 28px;
  background: rgba(235, 95, 45, 0.08);
  border-left: 4px solid var(--orange);
  color: var(--navy);
  border-radius: 0 14px 14px 0;
}

/* What's included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.included-card,
.audience-card,
.service-step {
  background: linear-gradient(145deg, #ffffff, #fff9f4);
  border: 1px solid rgba(235, 95, 45, 0.12);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(27, 42, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.included-card {
  padding: 30px 30px;
}

.included-card h3,
.audience-card h3,
.service-step h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
}

.included-card p,
.audience-card p,
.service-step p {
  color: rgba(27, 42, 74, 0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}

.included-card:hover,
.audience-card:hover,
.service-step:hover {
  transform: translateY(-7px);
  border-color: rgba(235, 95, 45, 0.24);
  box-shadow: 0 32px 72px rgba(27, 42, 74, 0.11);
}

/* Who it's for */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audience-card {
  padding: 34px 32px;
  min-height: 220px;
}

/* Process */
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-step {
  padding: 32px 28px;
}

.service-step span {
  display: block;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Service CTA */
.service-final-cta {
  background: linear-gradient(180deg, #faf8f4 0%, #f4efe8 100%);
}

.service-final-cta__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 56px;
  text-align: center;
  border-radius: 18px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(27, 42, 74, 0.16);
}

.service-final-cta__inner .section-eyebrow {
  color: var(--orange);
}

.service-final-cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin: 14px 0 18px;
}

.service-final-cta__inner p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* Service page responsive */
@media (max-width: 1024px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: auto;
    padding: 132px 0 74px;
  }

  .service-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .service-hero__buttons .btn {
    width: 100%;
  }

  .included-grid,
  .service-steps {
    grid-template-columns: 1fr;
  }

  .service-final-cta__inner {
    padding: 54px 28px;
  }
}

/* ============================================================
   SERVICE PAGE — Sizing and spacing correction
   ============================================================ */

/* Reduce excessive vertical spacing */
.service-included,
.service-audience,
.service-process,
.service-faq,
.service-final-cta,
.service-intro {
  padding-top: 86px;
  padding-bottom: 86px;
}

/* Hero can stay strong but slightly more balanced */
.service-hero {
  min-height: 82vh;
}

/* Section headings: still premium, less oversized */
.section-header {
  margin-bottom: 52px;
}

.section-header .section-title,
.service-intro .section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

.section-header .section-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Why it matters: tighter and cleaner */
.service-intro__grid {
  gap: 56px;
  align-items: start;
}

.service-intro__content {
  font-size: 0.98rem;
  line-height: 1.75;
}

.service-highlight {
  padding: 26px 30px;
  margin-bottom: 24px;
}

/* Included cards: smaller and more refined */
.included-grid {
  gap: 22px;
}

.included-card {
  min-height: 135px;
  padding: 28px 30px;
}

.included-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.included-card p {
  font-size: 0.86rem;
  line-height: 1.65;
}

/* Audience cards: cleaner size */
.audience-card {
  min-height: 205px;
  padding: 32px 30px;
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Process cards: reduce chunky feel */
.service-step {
  min-height: 215px;
  padding: 30px 28px;
}

.service-step h3 {
  font-size: 0.98rem;
}

.service-step p {
  font-size: 0.86rem;
  line-height: 1.65;
}

/* FAQ: reduce giant spacing */
.service-faq .faq__list {
  max-width: 900px;
}

.service-faq .faq-item__question {
  font-size: 0.92rem;
  padding: 22px 0;
}

/* CTA: good, just slightly less huge */
.service-final-cta__inner {
  padding: 72px 56px;
}

.service-final-cta__inner h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

/* Service page navbar should match homepage hero navbar */
body.service-page .navbar {
  background: rgba(17, 29, 53, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.service-page .navbar__logo,
body.service-page .navbar__links a {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

body.service-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

body.service-page .navbar.scrolled .navbar__logo,
body.service-page .navbar.scrolled .navbar__links a {
  color: var(--navy);
  text-shadow: none;
}

/* Service hero fit above the fold */
body.service-page .service-hero {
  min-height: 92svh;
  padding: 118px 0 70px;
  align-items: center;
}

body.service-page .service-hero__title {
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 24px;
}

body.service-page .service-hero__text {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

body.service-page .service-hero__buttons {
  margin-top: 0;
}

/* ============================================================
   SERVICE PAGE HERO — Match approved homepage style
   ============================================================ */

/* Service navbar should feel like homepage navbar */
body.service-page .navbar {
  background: rgba(17, 29, 53, 0.16) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.service-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

/* Fix navbar text colors */
body.service-page .navbar__logo,
body.service-page .navbar__links a {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

body.service-page .navbar.scrolled .navbar__logo,
body.service-page .navbar.scrolled .navbar__links a {
  color: var(--navy);
  text-shadow: none;
}

/* Fix navbar CTA button to match homepage */
body.service-page .navbar__cta .btn {
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  padding: 13px 30px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
}

/* Hero layout closer to homepage */
body.service-page .service-hero {
  min-height: 92svh !important;
  padding: 125px 0 70px !important;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 27, 48, 0.90), rgba(15, 27, 48, 0.62)),
    url("assets/images/hero-building.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

body.service-page .service-hero__content {
  max-width: 760px !important;
  text-align: left !important;
}

/* Homepage-like badge */
.service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(235, 95, 45, 0.14);
}

/* Title should match homepage style */
body.service-page .service-hero__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.2rem, 4vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.04em !important;
  max-width: 760px !important;
  margin-bottom: 26px !important;
  color: #ffffff !important;
}

/* Reduce orange dominance */
body.service-page .service-hero__title .text-accent {
  color: #ffffff !important;
}

/* Paragraph closer to homepage */
body.service-page .service-hero__text {
  max-width: 640px !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 32px !important;
}

/* Hero buttons match homepage */
body.service-page .service-hero__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0 !important;
}

body.service-page .service-hero__buttons .btn {
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none !important;
}

body.service-page .service-hero .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

body.service-page .service-hero .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--navy) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
}

/* Smaller-height laptop screens */
@media (max-height: 820px) and (min-width: 900px) {
  body.service-page .service-hero {
    min-height: 92vh !important;
    padding: 108px 0 52px !important;
  }

  body.service-page .service-hero__title {
    font-size: clamp(2.1rem, 3.4vw, 3.45rem) !important;
    margin-bottom: 20px !important;
  }

  body.service-page .service-hero__text {
    font-size: 0.96rem !important;
    line-height: 1.68 !important;
    margin-bottom: 26px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body.service-page .navbar {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  body.service-page .navbar__logo {
    color: var(--navy);
    text-shadow: none;
  }

  body.service-page .navbar__toggle span {
    background: var(--navy);
  }

  body.service-page .service-hero {
    min-height: auto !important;
    padding: 120px 0 64px !important;
  }

  body.service-page .service-hero__title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  body.service-page .service-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  body.service-page .service-hero__buttons .btn {
    width: 100%;
  }
}

/* ============================================================
   SERVICE PAGE HERO — Final match with homepage
   ============================================================ */

/* Navbar: match homepage proportions */
body.service-page .navbar__inner {
  height: 76px !important;
}

body.service-page .navbar {
  background: rgba(17, 29, 53, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.service-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08) !important;
}

body.service-page .navbar__logo,
body.service-page .navbar__links a {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22) !important;
}

body.service-page .navbar.scrolled .navbar__logo,
body.service-page .navbar.scrolled .navbar__links a {
  color: var(--navy) !important;
  text-shadow: none !important;
}

/* Navbar CTA button: remove ugly uppercase look */
body.service-page .navbar__cta a::after {
  display: none !important;
}

body.service-page .navbar__cta .btn,
body.service-page #nav-cta {
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  padding: 13px 28px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 12px 28px rgba(235, 95, 45, 0.28) !important;
}

/* Service hero: match homepage hero spacing */
body.service-page .service-hero {
  min-height: 92svh !important;
  padding: 112px 0 54px !important;
  display: flex !important;
  align-items: center !important;
  background:
    linear-gradient(90deg, rgba(15, 27, 48, 0.88), rgba(15, 27, 48, 0.58)),
    url("assets/images/hero-building.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

body.service-page .service-hero__content {
  max-width: 720px !important;
  text-align: left !important;
}

/* Make service eyebrow/meta align properly */
body.service-page .service-hero .section-eyebrow {
  display: block !important;
  text-align: left !important;
  color: var(--orange) !important;
  margin-bottom: 18px !important;
}

body.service-page .service-hero__meta {
  text-align: left !important;
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
}

/* Main fix: make heading same scale as homepage, not huge */
body.service-page .service-hero__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 3.55vw, 3.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.13 !important;
  letter-spacing: -0.035em !important;
  max-width: 700px !important;
  margin-bottom: 22px !important;
  color: #ffffff !important;
}

/* Keep service hero headline clean like homepage */
body.service-page .service-hero__title .text-accent {
  color: #ffffff !important;
}

/* Paragraph same as homepage feel */
body.service-page .service-hero__text {
  max-width: 590px !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 28px !important;
}

/* Hero CTA buttons match homepage */
body.service-page .service-hero__buttons {
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin-bottom: 0 !important;
}

body.service-page .service-hero__buttons .btn {
  min-height: 54px !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

/* Secondary button */
body.service-page .service-hero .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.78) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

body.service-page .service-hero .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--navy) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
}

/* Laptop height fix */
@media (max-height: 820px) and (min-width: 900px) {
  body.service-page .service-hero {
    min-height: 92vh !important;
    padding: 100px 0 44px !important;
  }

  body.service-page .service-hero__title {
    font-size: clamp(2rem, 3.25vw, 3.35rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 18px !important;
  }

  body.service-page .service-hero__text {
    font-size: 0.94rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
  }

  body.service-page .service-hero__buttons .btn {
    min-height: 50px !important;
    padding: 12px 26px !important;
  }
}

/* ============================================================
   FINAL SERVICE HERO CLEANUP — Match homepage hero
   ============================================================ */

/* Navbar same as homepage */
body.service-page .navbar {
  background: rgba(17, 29, 53, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.service-page .navbar__inner {
  height: 76px !important;
}

body.service-page .navbar__logo,
body.service-page .navbar__links a {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22) !important;
}

body.service-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08) !important;
}

body.service-page .navbar.scrolled .navbar__logo,
body.service-page .navbar.scrolled .navbar__links a {
  color: var(--navy) !important;
  text-shadow: none !important;
}

/* Navbar CTA same as homepage */
body.service-page .navbar__cta a::after {
  display: none !important;
}

body.service-page .navbar__cta .btn,
body.service-page #nav-cta {
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 13px 30px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 12px 28px rgba(235, 95, 45, 0.28) !important;
}

body.service-page .navbar__cta .btn:hover,
body.service-page #nav-cta:hover {
  color: #ffffff !important;
  background: #d94f21 !important;
  border-color: #d94f21 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 42px rgba(235, 95, 45, 0.42) !important;
}

/* Hero same mood/scale as homepage */
body.service-page .service-hero {
  min-height: 92svh !important;
  padding: 112px 0 54px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background:
    linear-gradient(to bottom, rgba(17, 29, 53, 0.42) 0%, rgba(17, 29, 53, 0.58) 42%, rgba(17, 29, 53, 0.84) 100%),
    url("assets/images/hero-building.webp") !important;
  background-size: cover !important;
  background-position: center bottom !important;
}

body.service-page .service-hero__content {
  max-width: 720px !important;
  text-align: left !important;
}

/* Keep your existing eyebrow/meta, just align and soften */
body.service-page .service-hero .section-eyebrow {
  display: block !important;
  text-align: left !important;
  color: var(--orange) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.66rem !important;
  font-weight: 700 !important;
  letter-spacing: 2.4px !important;
  margin-bottom: 16px !important;
}

body.service-page .service-hero__meta {
  text-align: left !important;
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* Main fix: same type feel as homepage */
body.service-page .service-hero__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 3.25vw, 3.35rem) !important;
  font-weight: 600 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  max-width: 700px !important;
  margin-bottom: 24px !important;
  color: #ffffff !important;
}

/* Do not make service hero orange-heavy */
body.service-page .service-hero__title .text-accent {
  color: #ffffff !important;
}

/* Paragraph same as homepage */
body.service-page .service-hero__text {
  max-width: 590px !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  margin-bottom: 28px !important;
}

/* Hero buttons same as homepage */
body.service-page .service-hero__buttons {
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
}

body.service-page .service-hero__buttons .btn {
  min-height: 54px !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

body.service-page .service-hero .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.78) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

body.service-page .service-hero .btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--navy) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
}

/* Mobile */
@media (max-width: 768px) {
  body.service-page .navbar {
    background: rgba(255, 255, 255, 0.96) !important;
  }

  body.service-page .navbar__logo {
    color: var(--navy) !important;
    text-shadow: none !important;
  }

  body.service-page .navbar__toggle span {
    background: var(--navy) !important;
  }

  body.service-page .service-hero {
    min-height: auto !important;
    padding: 120px 0 64px !important;
  }

  body.service-page .service-hero__title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  body.service-page .service-hero__buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.service-page .service-hero__buttons .btn {
    width: 100% !important;
  }
}

/* ============================================================
   SERVICE HERO — Label + mobile cleanup
   ============================================================ */

/* Make service labels more visible and premium */
body.service-page .service-hero .section-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  margin-bottom: 18px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

body.service-page .service-hero .section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(235, 95, 45, 0.14);
  flex-shrink: 0;
}

body.service-page .service-hero__meta {
  display: block !important;
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

/* Desktop hero: slightly cleaner alignment */
body.service-page .service-hero__content {
  padding-top: 12px !important;
}

body.service-page .service-hero__title {
  max-width: 720px !important;
}

/* Mobile service page fix */
@media (max-width: 768px) {
  body.service-page .navbar {
    height: 76px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  body.service-page .navbar__inner {
    height: 76px !important;
  }

  body.service-page .navbar__logo,
  body.service-page .navbar__logo span {
    color: var(--navy) !important;
    text-shadow: none !important;
  }

  body.service-page .navbar__logo-img {
    width: 34px !important;
    height: 34px !important;
  }

  body.service-page .navbar__toggle {
    display: flex !important;
  }

  body.service-page .navbar__toggle span {
    background: var(--navy) !important;
  }

  body.service-page .service-hero {
    min-height: auto !important;
    padding: 112px 0 56px !important;
    background-position: center top !important;
  }

  body.service-page .service-hero__content {
    max-width: 100% !important;
    padding-top: 0 !important;
  }

  body.service-page .service-hero .section-eyebrow {
    font-size: 0.58rem !important;
    letter-spacing: 1.2px !important;
    padding: 9px 13px !important;
    margin-bottom: 14px !important;
  }

  body.service-page .service-hero__meta {
    font-size: 0.7rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 18px !important;
  }

  body.service-page .service-hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 22px !important;
  }

  body.service-page .service-hero__text {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 26px !important;
  }

  body.service-page .service-hero__buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body.service-page .service-hero__buttons .btn {
    width: 100% !important;
    min-height: 52px !important;
  }
}

.navbar__toggle span {
  background: var(--orange) !important;
}

/* Mobile menu burger/X color */
.navbar__toggle span,
.navbar__toggle.active span {
  background: var(--orange) !important;
}


/* ============================================================
   HOMEPAGE — Services section heading alignment fix
   ============================================================ */

#services .section-header {
  text-align: center !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#services .section-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#services .section-subtitle {
  text-align: center !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ============================================================
   NAVBAR — Services dropdown final safe version
   ============================================================ */

.navbar__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.65rem;
  line-height: 1;
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Dropdown panel */
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(11, 22, 41, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
}

/* hover bridge so menu does not disappear */
.navbar__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* IMPORTANT: override normal navbar link styling inside dropdown */
.navbar__links .navbar__dropdown-menu a {
  display: block !important;
  position: relative !important;
  padding: 11px 13px !important;
  border-radius: 8px !important;
  color: var(--navy) !important;
  background: transparent !important;
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}

/* remove underline animation from dropdown links */
.navbar__links .navbar__dropdown-menu a::after {
  display: none !important;
  content: none !important;
}

.navbar__links .navbar__dropdown-menu a:hover {
  background: rgba(235, 95, 45, 0.08) !important;
  color: var(--orange) !important;
}

/* Mobile: show services list inside burger menu */
@media (max-width: 768px) {
  .navbar__dropdown {
    width: 100%;
    display: block;
  }

  .navbar__dropdown-trigger {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
  }

  .dropdown-arrow {
    display: none;
  }

  .navbar__dropdown-menu {
    position: static !important;
    min-width: 100% !important;
    margin-top: 6px !important;
    padding: 0 0 0 14px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .navbar__links .navbar__dropdown-menu a {
    padding: 8px 0 !important;
    color: rgba(27, 42, 74, 0.68) !important;
    font-size: 0.78rem !important;
    background: transparent !important;
  }

  .navbar__links .navbar__dropdown-menu a:hover {
    color: var(--orange) !important;
    background: transparent !important;
  }
}

/* ============================================================
   NAVBAR DROPDOWN — Premium background + mobile accordion
   ============================================================ */

/* Desktop dropdown refined look */
.navbar__dropdown-menu {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f4 100%) !important;
  border: 1px solid rgba(235, 95, 45, 0.12) !important;
  border-top: 3px solid var(--orange) !important;
  border-radius: 12px !important;
  box-shadow: 0 24px 60px rgba(11, 22, 41, 0.18) !important;
}

.navbar__links .navbar__dropdown-menu a {
  color: var(--navy) !important;
  text-shadow: none !important;
}

.navbar__links .navbar__dropdown-menu a:hover {
  background: rgba(235, 95, 45, 0.08) !important;
  color: var(--orange) !important;
}

/* Mobile: hide service links until Services is tapped */
@media (max-width: 768px) {
  .navbar__dropdown-menu {
    max-height: 0 !important;
    overflow: hidden !important;
    margin-top: 0 !important;
    padding: 0 0 0 14px !important;
    transition: max-height 0.3s ease, margin-top 0.3s ease !important;
  }

  .navbar__dropdown.open .navbar__dropdown-menu {
    max-height: 260px !important;
    margin-top: 8px !important;
  }

  .navbar__dropdown-trigger {
    cursor: pointer;
  }

  .navbar__dropdown-trigger .dropdown-arrow {
    display: inline-block !important;
    transition: transform 0.25s ease;
  }

  .navbar__dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .navbar__links .navbar__dropdown-menu a {
    padding: 9px 0 !important;
    color: rgba(27, 42, 74, 0.72) !important;
  }

  .navbar__links .navbar__dropdown-menu a:hover {
    color: var(--orange) !important;
    background: transparent !important;
  }
}

/* ============================================================
   FOOTER — 5 column contact/social layout
   ============================================================ */

.footer__grid {
  grid-template-columns: 1.4fr 1fr 0.9fr 1.2fr 0.8fr;
  gap: 54px;
}

.footer__contact-list a,
.footer__social-list a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer__social-list .footer-icon {
  border: 1px solid rgba(235, 95, 45, 0.35);
  border-radius: 50%;
  height: 24px;
  font-size: 0.72rem;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 34px;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__contact-list a,
  .footer__social-list a {
    grid-template-columns: 24px auto;
    justify-content: center;
  }
}

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

  .footer__brand-name {
    font-size: 1.05rem;
  }

  .footer__links a {
    font-size: 0.88rem;
  }
}

/* ============================================================
   FOOTER — Final responsive cleanup
   ============================================================ */

.footer__grid {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 0.9fr 1.2fr 0.8fr !important;
  gap: 58px !important;
  align-items: flex-start !important;
}

.footer__brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
}

.footer__brand-name {
  margin: 0 !important;
  white-space: nowrap !important;
}

.footer__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.footer__contact-list a,
.footer__social-list a {
  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  gap: 12px !important;
  align-items: center !important;
}

.footer__contact-list span:last-child,
.footer__social-list span:last-child {
  line-height: 1.45 !important;
}

.footer-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--orange) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.footer-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

.footer__social-list .footer-icon {
  border: 1px solid rgba(235, 95, 45, 0.35) !important;
  border-radius: 50% !important;
  font-size: 0.72rem !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 48px 40px !important;
  }
}

/* Mobile — make footer one clean centered column */
@media (max-width: 768px) {
  .footer {
    text-align: center !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    text-align: center !important;
  }

  .footer__col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer__brand {
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .footer__brand-name {
    white-space: nowrap !important;
  }

  .footer__brand-text {
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer__links {
    align-items: center !important;
    gap: 16px !important;
  }

  .footer__contact-list {
    width: 100% !important;
    max-width: 360px !important;
  }

  .footer__contact-list a,
  .footer__social-list a {
    grid-template-columns: 24px auto !important;
    justify-content: center !important;
    text-align: left !important;
  }

  .footer__social-list {
    width: 100% !important;
    max-width: 260px !important;
  }
}

/* ============================================================
   FOOTER — Final compact layout + clean icons
   ============================================================ */

.footer__grid {
  grid-template-columns: 1.35fr 1fr 0.9fr 1.25fr 0.85fr !important;
  gap: 42px !important;
  align-items: flex-start !important;
}

.footer__links {
  gap: 12px !important;
}

.footer__links li {
  margin: 0 !important;
}

.footer__links a {
  line-height: 1.45 !important;
}

.footer__contact-list a,
.footer__social-list a {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: 10px !important;
  align-items: center !important;
}

.footer-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--orange) !important;
}

.footer-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.footer__social-list .footer-icon {
  border: 1px solid rgba(235, 95, 45, 0.35) !important;
  border-radius: 50% !important;
}

.footer__social-list .footer-icon svg {
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 36px !important;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: center !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer__col {
    align-items: center !important;
  }

  .footer__brand {
    justify-content: center !important;
  }

  .footer__brand-name {
    white-space: nowrap !important;
  }

  .footer__brand-text {
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer__links {
    align-items: center !important;
    gap: 12px !important;
  }

  .footer__contact-list a,
  .footer__social-list a {
    grid-template-columns: 22px auto !important;
    justify-content: center !important;
    text-align: left !important;
  }
}

/* ============================================================
   FOOTER — Final clean compact version
   ============================================================ */

.footer__grid {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 0.9fr 1.25fr 0.85fr !important;
  gap: 38px !important;
  align-items: flex-start !important;
}

.footer__links {
  gap: 12px !important;
}

.footer__links li {
  margin: 0 !important;
}

.footer__links a {
  line-height: 1.45 !important;
}

.footer__contact-list a,
.footer__social-list a {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  gap: 10px !important;
  align-items: center !important;
}

.footer-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--orange) !important;
}

.footer-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.footer__social-list .footer-icon {
  border: 1px solid rgba(235, 95, 45, 0.35) !important;
  border-radius: 50% !important;
}

.footer__social-list .footer-icon svg {
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 34px !important;
  }
}

@media (max-width: 768px) {
  .footer {
    text-align: center !important;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer__col {
    align-items: center !important;
  }

  .footer__brand {
    justify-content: center !important;
  }

  .footer__brand-name {
    white-space: nowrap !important;
  }

  .footer__brand-text {
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer__links {
    align-items: center !important;
    gap: 12px !important;
  }

  .footer__contact-list,
  .footer__social-list {
    width: 100% !important;
    max-width: 360px !important;
  }

  .footer__contact-list a,
  .footer__social-list a {
    grid-template-columns: 22px auto !important;
    justify-content: center !important;
    text-align: left !important;
  }
}

/* ============================================================
   FOOTER — Icon visibility polish
   ============================================================ */

.footer-icon {
  color: var(--orange) !important;
}

/* Contact icons = outline */
.footer__contact-list .footer-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Social icons = filled, clearer */
.footer__social-list .footer-icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border: 1px solid rgba(235, 95, 45, 0.45) !important;
  border-radius: 50% !important;
}

.footer__social-list .footer-icon svg {
  width: 14px !important;
  height: 14px !important;
  stroke: none !important;
  fill: currentColor !important;
}

/* Make WhatsApp icon a bit clearer */
.footer__contact-list li:nth-child(3) .footer-icon svg {
  width: 19px !important;
  height: 19px !important;
  stroke-width: 2.35 !important;
}

/* Compact footer spacing */
.footer__links {
  gap: 10px !important;
}

.footer__contact-list {
  gap: 11px !important;
}

.footer__social-list {
  gap: 12px !important;
}

/* ============================================================
   FOOTER — Brand icon polish + social alignment
   ============================================================ */

/* Default footer SVG reset */
.footer-icon svg {
  display: block !important;
}

/* Brand icons like WhatsApp/social should be filled, not stroke outline */
.footer-icon--brand svg,
.footer-icon--social svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
  stroke: none !important;
}

/* Social icon circle */
.footer-icon--social {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border: 1px solid rgba(235, 95, 45, 0.45) !important;
  border-radius: 50% !important;
  color: var(--orange) !important;
}

/* Contact brand icon, especially WhatsApp */
.footer__contact-list .footer-icon--brand {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  color: var(--orange) !important;
}

.footer__contact-list .footer-icon--brand svg {
  width: 18px !important;
  height: 18px !important;
}

/* Social row alignment */
.footer__social-list a {
  display: grid !important;
  grid-template-columns: 28px auto !important;
  gap: 12px !important;
  align-items: center !important;
}

/* Keep social labels aligned neatly */
.footer__social-list span:last-child {
  display: inline-block !important;
  min-width: 86px !important;
  text-align: left !important;
}

@media (max-width: 768px) {
  .footer__social-list {
    width: auto !important;
    max-width: 220px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: stretch !important;
  }

  .footer__social-list a {
    grid-template-columns: 28px 90px !important;
    justify-content: start !important;
    text-align: left !important;
  }

  .footer__social-list span:last-child {
    min-width: 90px !important;
  }
}

.footer__contact-list li:nth-child(3) .footer-icon svg path {
  fill: currentColor !important;
  stroke: none !important;
}

.footer__contact-list span:last-child {
  white-space: nowrap;
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  background: #faf8f4;
}

.legal-hero {
  padding: 150px 0 72px;
  background:
    radial-gradient(circle at 70% 20%, rgba(235, 95, 45, 0.12), transparent 32%),
    #0b1629;
  color: #ffffff;
}

.legal-hero .section-eyebrow {
  color: var(--orange);
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0 16px;
}

.legal-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content {
  padding: 80px 0 100px;
}

.legal-content__inner {
  max-width: 940px;
  margin: 0 auto;
  background: #ffffff;
  padding: 58px;
  border-radius: 18px;
  border: 1px solid rgba(27, 42, 74, 0.06);
  box-shadow: 0 24px 70px rgba(27, 42, 74, 0.08);
}

.legal-content h2 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.3;
  margin: 36px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(27, 42, 74, 0.74);
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul {
  padding-left: 22px;
  margin: 12px 0 24px;
}

.legal-content li {
  margin-bottom: 9px;
}

.legal-content strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 125px 0 56px;
  }

  .legal-content {
    padding: 56px 0 72px;
  }

  .legal-content__inner {
    padding: 34px 24px;
    border-radius: 14px;
  }

  .legal-content h2 {
    font-size: 1.18rem;
  }
}

/* Legal page navbar button fix */
.legal-page .navbar__links .btn,
.legal-page .navbar__links .btn--primary,
.legal-page .navbar__links .navbar__cta {
  color: #ffffff !important;
  background: var(--orange) !important;
}

.legal-page .navbar__links .btn:hover,
.legal-page .navbar__links .btn--primary:hover,
.legal-page .navbar__links .navbar__cta:hover {
  color: #ffffff !important;
  background: var(--orange-dark, #d94d22) !important;
}

/* ============================================================
   LEGAL PAGES — Hero styling
   ============================================================ */

.legal-page .legal-hero {
  padding: 150px 0 90px !important;
  background:
    linear-gradient(90deg, rgba(11, 22, 41, 0.96), rgba(11, 22, 41, 0.88)),
    radial-gradient(circle at 78% 20%, rgba(235, 95, 45, 0.14), transparent 34%) !important;
  color: #ffffff !important;
}

.legal-page .legal-hero .container {
  text-align: center !important;
}

.legal-page .legal-hero .section-eyebrow {
  display: block !important;
  color: var(--orange) !important;
  text-align: center !important;
  margin-bottom: 18px !important;
}

.legal-page .legal-hero h1 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(3rem, 6vw, 5.6rem) !important;
  font-weight: 500 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
  color: #ffffff !important;
  margin: 0 0 20px !important;
}

.legal-page .legal-hero p {
  max-width: 720px !important;
  margin: 0 auto !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

@media (max-width: 768px) {
  .legal-page .legal-hero {
    padding: 125px 0 62px !important;
  }

  .legal-page .legal-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem) !important;
    line-height: 1.08 !important;
  }
}

.legal-content ul,
.legal-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 16px 0 26px !important;
}

.legal-content li,
.legal-list li {
  position: relative !important;
  padding-left: 26px !important;
  margin-bottom: 11px !important;
  color: rgba(27, 42, 74, 0.76) !important;
  line-height: 1.75 !important;
}

.legal-content li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.legal-content li strong,
.legal-list li strong {
  color: var(--navy);
  font-weight: 700;
}

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(27, 42, 74, 0.72);
}

.form-status--success {
  color: #1f7a4d;
}

.form-status--error {
  color: #b42318;
}

button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 1rem;
}

.cta__phone svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta__phone:hover {
  color: var(--orange);
}

/* CTA contact links final alignment */
.cta__whatsapp,
.cta__phone {
  width: fit-content;
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 1rem;
}

.cta__phone svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta__phone:hover {
  color: var(--orange);
}

@media (max-width: 768px) {

  .cta__whatsapp,
  .cta__phone {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta__phone {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  gap: 10px !important;
}

.cta__phone svg {
  width: 21px !important;
  height: 21px !important;
  stroke-width: 2 !important;
}

/* CTA contact links — force stacked layout */
.cta__info .cta__whatsapp,
.cta__info .cta__phone {
  display: flex !important;
  width: fit-content !important;
  align-items: center !important;
}

.cta__info .cta__phone {
  margin-top: 12px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  gap: 10px !important;
}

.cta__info .cta__phone svg {
  width: 21px !important;
  height: 21px !important;
}