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

:root {
  --navy: #172E56;
  --navy-mid: #1e3a6e;
  --navy-glow: #2251a3;
  --rust: #89371F;
  --rust-light: #a04224;
  --rust-glow: #c45a30;
  --cream: #F9F6F1;
  --cream2: #F0EBE3;
  --white: #ffffff;
  --font: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--cream)
}

::-webkit-scrollbar-thumb {
  background: var(--rust);
  border-radius: 3px
}

/* ━━ NAVBAR ━━ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 28px rgba(23, 46, 86, .10);
  backdrop-filter: blur(14px);
}

/* Stacked logo – shown in hero (dark) state */
.logo-dark {
  display: none;
  align-items: center;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  height: 74px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
}

.logo-dark img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* Horizontal light logo – shown when scrolled */
.logo-light {
  display: flex;
  align-items: center;
  height: 52px
}

.logo-light img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/*.logo-light img{height:40px;width:auto;object-fit:contain;max-width:180px}*/

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--rust)
}

.nav-cta {
  background: var(--rust) !important;
  color: var(--white) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}

.nav-cta:hover {
  background: var(--rust-light) !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: background .4s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 8px 32px rgba(23, 46, 86, .12);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .5rem 0;
  border-bottom: 1px solid var(--cream2);
}

.mobile-menu .mob-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: .8rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}

/* ━━ HERO ━━ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 8% 80px;
  overflow: hidden;
}

/* Lighter, warmer gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3566 0%, #1f3f78 40%, #172E56 100%);
}

.hero-orb1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 55, 31, .35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orb2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 81, 163, .5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-orb3 {
  position: absolute;
  top: 40%;
  left: 55%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 55, 31, .18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, transparent 0%, var(--rust) 20%, var(--rust-glow) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--rust-glow);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

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

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.hero-headline {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
  letter-spacing: -.02em;
}

.hero-headline .line-accent {
  display: block;
  background: linear-gradient(90deg, #e8a87c, #d4896a, #c16842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, .68);
  font-weight: 300;
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.typewriter-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.tw-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .38);
  font-weight: 600;
  white-space: nowrap;
}

.tw-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0
}

.typewriter {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8a87c;
  border-right: 2px solid var(--rust-glow);
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  min-width: 2px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s 1s forwards;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 6px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(137, 55, 31, .4);
}

.btn-primary:hover {
  background: var(--rust-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(137, 55, 31, .5)
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 6px;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, .07);
  transition: border-color .2s, background .2s, transform .2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px)
}

/* Floating stat cards */
.hero-stats-float {
  position: absolute;
  bottom: 48px;
  right: 8%;
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp .9s 1.2s forwards;
}

.stat-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 1rem 1.6rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: background .3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, .14)
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  margin-top: .35rem;
  display: block;
  font-weight: 500;
}

.stat-card .stat-accent {
  display: block;
  height: 2px;
  background: var(--rust-glow);
  border-radius: 1px;
  margin-top: .8rem;
  opacity: .7;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ━━ MARQUEE ━━ */
.marquee-wrap {
  background: var(--rust);
  padding: .9rem 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

/* ━━ SECTIONS ━━ */
section {
  padding: 100px 8%
}

.section-label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--rust);
  display: block
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}

.section-title.white {
  color: var(--white)
}

.section-sub {
  font-size: .98rem;
  color: #5a6e8a;
  font-weight: 300;
  line-height: 1.85;
  max-width: 560px
}

.section-sub.white {
  color: rgba(255, 255, 255, .58)
}

/* ━━ REVEAL ━━ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s
}

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

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

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

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

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

/* ━━ WHY US ━━ */
#why {
  background: var(--cream)
}

.why-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream2);
  border: 2px solid var(--cream2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.pillar {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background .25s;
  position: relative;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--rust-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.pillar:hover::before {
  transform: scaleX(1)
}

.pillar:hover {
  background: #fdf9f6
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(137, 55, 31, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .7rem
}

.pillar-body {
  font-size: .87rem;
  color: #5a6e8a;
  line-height: 1.75;
  font-weight: 400
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(23, 46, 86, .08);
}

.ct-header {
  padding: 1.2rem 2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ct-header.left {
  background: #eef0f5;
  color: #7a8aaa
}

.ct-header.right {
  background: #eef0f5;
  color: var(--white)
}

.ct-row-left,
.ct-row-right {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .87rem;
  border-bottom: 1px solid rgba(23, 46, 86, .06);
}

.ct-row-left {
  background: var(--white);
  color: #7a8aaa
}

.ct-row-right {
  background: #f5f8fe;
  color: var(--navy);
  font-weight: 500
}

.ct-row-left:last-child,
.ct-row-right:last-child {
  border-bottom: none
}

/* ━━ SERVICES ━━ */
#services {
  background: linear-gradient(160deg, #172E56 0%, #1a3870 50%, #1f3f78 100%);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 55, 31, .18) 0%, transparent 65%);
  pointer-events: none;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 81, 163, .25) 0%, transparent 65%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, .05);
  padding: 2.6rem 2rem;
  position: relative;
  cursor: default;
  transition: background .3s;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), var(--rust-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.service-card:hover {
  background: rgba(255, 255, 255, .09)
}

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

.service-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.service-icon {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  display: block
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .7rem
}

.service-body {
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1
}

/* ━━ WHO WE SERVE ━━ */
#who {
  background: var(--cream2)
}

.segments {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 3rem
}

.segment {
  background: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 4px;
  transition: box-shadow .3s;
}

.segment:hover {
  box-shadow: 0 8px 40px rgba(23, 46, 86, .10)
}

.segment-bar {
  width: 5px;
  background: linear-gradient(to bottom, var(--rust), var(--rust-glow));
  flex-shrink: 0
}

.segment-content {
  padding: 2.2rem 2.5rem;
  flex: 1
}

.segment-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: .8rem
}

.segment-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy)
}

.segment-range {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rust);
  background: rgba(137, 55, 31, .1);
  padding: .25rem .75rem;
  border-radius: 20px;
}

.segment-body {
  font-size: .9rem;
  color: #5a6e8a;
  line-height: 1.8;
  max-width: 680px
}

/* ━━ HOW IT WORKS ━━ */
#how {
  background: var(--cream)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--cream2);
}

.step {
  padding: 0 1.5rem;
  position: relative
}

.step-num-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  position: relative;
  z-index: 1;
  transition: border-color .3s, background .3s;
}

.step:hover .step-num-wrap {
  background: var(--navy);
  border-color: var(--navy)
}

.step-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rust)
}

.step:hover .step-num {
  color: var(--white)
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  text-align: center
}

.step-body {
  font-size: .84rem;
  color: #5a6e8a;
  line-height: 1.75;
  text-align: center
}

.how-cta {
  text-align: center;
  margin-top: 4rem
}

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: .9rem 2rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
  display: inline-block;
}

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

/* ━━ TESTIMONIALS ━━ */
#testimonials {
  background: linear-gradient(160deg, #172E56 0%, #1a3870 60%, #172E56 100%);
  overflow: hidden;
}

.testi-stats {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-wrap: wrap;
}

.tstat-card {
  flex: 1;
  min-width: 140px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(8px);
  transition: background .3s;
}

.tstat-card:hover {
  background: rgba(255, 255, 255, .11)
}

.tstat-icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: .6rem
}

.tstat-num {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -.02em
}

.tstat-accent {
  display: block;
  height: 2px;
  width: 28px;
  background: var(--rust-glow);
  margin: .5rem 0
}

.tstat-label {
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255, 255, 255, .42);
  font-weight: 600;
  display: block;
  line-height: 1.4
}

.testi-slider {
  overflow: hidden
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  animation: testiScroll 38s linear infinite;
  width: max-content
}

.testi-track:hover {
  animation-play-state: paused
}

@keyframes testiScroll {
  from {
    transform: translateX(0)
  }

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

.testi-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  padding: 2.2rem 2.2rem;
  width: 350px;
  flex-shrink: 0;
  transition: background .3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, .10)
}

.testi-quote {
  font-size: 3.5rem;
  line-height: .4;
  color: var(--rust-glow);
  opacity: .7;
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.testi-text {
  font-size: .89rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 1.8rem;
  font-weight: 300
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rust), var(--rust-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: .87rem;
  color: var(--white);
  display: block
}

.testi-role {
  font-size: .73rem;
  color: rgba(255, 255, 255, .38)
}

/* ━━ BLOG ━━ */
#blog {
  background: var(--cream)
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 16px 48px rgba(23, 46, 86, .12);
  transform: translateY(-4px)
}

.blog-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.blog-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform .4s;
}

.blog-card:hover .blog-thumb-bg {
  transform: scale(1.05)
}

.blog-thumb-bg.b1 {
  background: linear-gradient(135deg, #1a3870 0%, #2251a3 100%)
}

.blog-thumb-bg.b2 {
  background: linear-gradient(135deg, #89371F 0%, #c45a30 100%)
}

.blog-thumb-bg.b3 {
  background: linear-gradient(135deg, #1f3f78 0%, #89371F 80%)
}

.blog-thumb-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: .35;
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: .25rem .75rem;
}

.blog-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.blog-meta {
  font-size: .68rem;
  color: #8a9bbf;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .8rem;
  flex: 1;
}

.blog-excerpt {
  font-size: .83rem;
  color: #5a6e8a;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-weight: 300
}

.blog-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  padding-bottom: .1rem;
}

.blog-link:hover {
  border-color: var(--rust)
}

.blog-cta {
  text-align: center;
  margin-top: 3rem
}

/* ━━ ABOUT ━━ */
#about {
  background: var(--cream2)
}

.founder-wrap {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start
}

.founder-card-v2 {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(23, 46, 86, .08);
}

.founder-img-area {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a3870, #172E56);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-placeholder {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .1);
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
}

.founder-img-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rust), var(--rust-glow));
}

.founder-card-meta {
  padding: 1.8rem
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem
}

.founder-role {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 1.2rem
}

.founder-quals {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.4rem
}

.qual-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(23, 46, 86, .06);
  border-radius: 4px;
  padding: .4rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
}

.qual-chip svg {
  flex-shrink: 0;
  color: var(--rust)
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.founder-linkedin:hover {
  border-color: var(--rust)
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 0
}

.founder-section-title {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.founder-section-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--rust)
}

.exp-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.6rem 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--rust);
  box-shadow: 0 2px 16px rgba(23, 46, 86, .05);
  transition: box-shadow .3s;
}

.exp-card:hover {
  box-shadow: 0 6px 28px rgba(23, 46, 86, .10)
}

.exp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem
}

.exp-org {
  font-size: .78rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: .5rem
}

.exp-desc {
  font-size: .85rem;
  color: #5a6e8a;
  line-height: 1.7;
  font-weight: 300
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(137, 55, 31, .08);
  border-radius: 3px;
  padding: .2rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6rem;
}

.philosophy-quote {
  margin-top: 5rem;
  text-align: center;
  border-top: 1px solid var(--cream);
  padding-top: 4rem;
}

.philosophy-quote blockquote {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rust);
  font-style: normal;
  font-weight: 700;
}

/* ━━ FAQ ━━ */
#faq {
  background: var(--cream)
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: start
}

.faq-item {
  border-bottom: 1px solid rgba(23, 46, 86, .08);
  overflow: hidden
}

.faq-q {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: color .2s;
  user-select: none;
}

.faq-q:hover {
  color: var(--rust)
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(23, 46, 86, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--rust);
  transition: background .2s, border-color .2s;
}

.faq-item.open .faq-icon {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .86rem;
  color: #5a6e8a;
  line-height: 1.8;
  padding: 0;
  transition: max-height .4s ease, padding .3s;
  font-weight: 300;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.4rem
}

/* ━━ CTA BANNER ━━ */
#cta-banner {
  background: linear-gradient(135deg, var(--rust) 0%, #a04224 60%, #89371F 100%);
  padding: 90px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

#cta-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
  position: relative;
  letter-spacing: -.01em;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2.5rem;
  position: relative;
  font-weight: 300
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  position: relative;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .15)
}

/* ━━ FOOTER ━━ */
footer {
  background: #0c1a30;
  padding: 70px 8% 30px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.3rem;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: .82rem;
  color: rgba(255, 255, 255, .33);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300
}

.footer-reg {
  font-size: .71rem;
  color: rgba(255, 255, 255, .26);
  line-height: 1.7
}

.footer-reg span {
  display: block
}

.footer-col-title {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .85)
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .75rem
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rust-glow);
  opacity: .85
}

.contact-item a,
.contact-item span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
  line-height: 1.5
}

.contact-item a:hover {
  color: rgba(255, 255, 255, .85)
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  gap: 1.5rem;
}

.footer-copy {
  font-size: .74rem;
  color: rgba(255, 255, 255, .2);
  text-align: center
}

.footer-disclaimer {
  font-size: .68rem;
  color: rgba(255, 255, 255, .17);
  max-width: 800px;
  line-height: 1.65;
  text-align: center;
  font-weight: 300
}

.social-icons {
  display: flex;
  gap: .7rem;
  margin-top: 1.5rem
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.social-icon:hover {
  border-color: var(--rust);
  color: var(--white);
  background: var(--rust)
}

/* ━━ RESPONSIVE ━━ */

/* iOS smooth scrolling + tap improvements */
html {
  -webkit-overflow-scrolling: touch
}

* {
  -webkit-tap-highlight-color: transparent
}

a,
button {
  touch-action: manipulation
}

/* ── Tablet 1100px ── */
@media(max-width:1100px) {
  .why-pillars {
    grid-template-columns: 1fr 1fr
  }

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

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem
  }

  .steps::before {
    display: none
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .founder-wrap {
    grid-template-columns: 1fr
  }

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

/* ── Mobile 768px ── */
@media(max-width:768px) {

  /* Global */
  section {
    padding: 64px 5%
  }

  /* Navbar */
  nav {
    padding: 0 5%;
    height: 72px
  }

  .mobile-menu {
    top: 72px;
    padding: 1.2rem 5%
  }

  .mobile-menu a {
    padding: .8rem 0;
    min-height: 48px;
    display: flex;
    align-items: center
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  /* Hero */
  #hero {
    padding: 92px 5% 48px
  }

  .hero-badge {
    font-size: .6rem;
    padding: .35rem .85rem;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: .3rem;
    line-height: 1.5;
  }

  .hero-badge-dot {
    display: none
  }

  .hero-headline {
    font-size: clamp(2.1rem, 8.5vw, 3rem);
    letter-spacing: -.015em
  }

  .hero-sub {
    font-size: .92rem;
    max-width: 100%
  }

  .typewriter-wrap {
    flex-wrap: wrap;
    gap: .5rem
  }

  .tw-label {
    font-size: .65rem
  }

  .tw-divider {
    display: none
  }

  .typewriter {
    font-size: 1rem;
    max-width: 100%
  }

  .hero-btns {
    flex-direction: column;
    gap: .75rem
  }

  .hero-btns a {
    text-align: center;
    width: 100%;
    padding: .95rem 1.5rem;
    box-sizing: border-box
  }

  /* Hero stat cards */
  .hero-stats-float {
    position: static;
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    width: 100%;
  }

  .stat-card {
    padding: .9rem .7rem;
    text-align: center
  }

  .stat-num {
    font-size: 1.35rem
  }

  .stat-label {
    font-size: .58rem;
    letter-spacing: .06em
  }

  /* Why us */
  .why-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1rem
  }

  .why-pillars {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem
  }

  .compare-table {
    grid-template-columns: 1fr;
    overflow: hidden
  }

  .ct-header.left,
  .ct-row-left {
    display: none
  }

  .ct-header.right {
    border-radius: 8px 8px 0 0
  }

  .ct-row-right {
    font-size: .85rem;
    padding: .9rem 1.4rem
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    padding: 2rem 1.6rem
  }

  .services-cta {
    margin-top: 2rem
  }

  /* Who we serve */
  .segment-meta {
    flex-wrap: wrap;
    gap: .6rem
  }

  .segment-content {
    padding: 1.6rem 1.4rem
  }

  .segment-title {
    font-size: 1.1rem
  }

  /* How it works – single column on mobile */
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto
  }

  .step-num-wrap {
    width: 60px;
    height: 60px
  }

  .step-num {
    font-size: 1.1rem
  }

  .how-cta {
    margin-top: 2.5rem
  }

  .how-cta a {
    display: block;
    text-align: center;
    width: 100%
  }

  /* Testimonials */
  .testi-stats {
    gap: .8rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem
  }

  .tstat-card {
    padding: 1rem 1rem;
    min-width: calc(50% - .4rem)
  }

  .tstat-num {
    font-size: 1.2rem
  }

  .testi-card {
    width: 82vw;
    max-width: 320px;
    padding: 1.6rem 1.5rem
  }

  /* Blog */
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem
  }

  .blog-header .btn-outline-navy {
    width: 100%;
    text-align: center;
    display: block
  }

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

  .blog-cta {
    margin-top: 2rem
  }

  .blog-cta a {
    display: block;
    text-align: center
  }

  /* About / Founder */
  .founder-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem
  }

  .founder-img-area {
    height: 200px
  }

  .founder-placeholder {
    font-size: 3.5rem
  }

  .founder-card-meta {
    padding: 1.4rem
  }

  .exp-card {
    padding: 1.3rem 1.4rem
  }

  .philosophy-quote {
    margin-top: 3rem;
    padding-top: 3rem
  }

  .philosophy-quote blockquote {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem)
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .faq-q {
    font-size: .88rem;
    padding: 1.1rem 0;
    min-height: 48px
  }

  /* CTA Banner */
  #cta-banner {
    padding: 60px 5%
  }

  .cta-sub {
    font-size: .92rem
  }

  .btn-white {
    display: block;
    width: 100%;
    text-align: center;
    padding: .95rem 1.5rem
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem
  }

  .footer-disclaimer {
    text-align: center;
    max-width: 100%
  }

  footer {
    padding: 50px 5% 24px
  }
}

/* ── Small phones 480px ── */
@media(max-width:480px) {
  section {
    padding: 56px 4%
  }

  #hero {
    padding: 84px 4% 40px
  }

  nav {
    padding: 0 4%
  }

  .mobile-menu {
    padding: 1rem 4%
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(1.95rem, 8vw, 2.5rem)
  }

  .hero-sub {
    font-size: .87rem
  }

  .hero-badge {
    font-size: .58rem
  }

  /* Stat cards — 3-col stays but tighter */
  .stat-num {
    font-size: 1.2rem
  }

  .stat-label {
    font-size: .55rem
  }

  .stat-card {
    padding: .75rem .5rem
  }

  /* Steps definitely single column */
  .steps {
    max-width: 100%
  }

  /* Segments */
  .segment-range {
    font-size: .62rem;
    padding: .2rem .55rem
  }

  /* Testi */
  .testi-card {
    width: 90vw;
    max-width: none
  }

  .tstat-num {
    font-size: 1.1rem
  }

  .tstat-label {
    font-size: .58rem
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem)
  }

  /* Qual chips in founder section */
  .qual-chip {
    font-size: .72rem;
    padding: .35rem .65rem
  }

  /* FAQ */
  .faq-q {
    font-size: .84rem
  }

  /* Footer */
  footer {
    padding: 44px 4% 20px
  }

  .footer-top {
    gap: 1.8rem
  }
}