/* ========== ROOT VARIABLES ========== */
:root {
  --blue: #4d79ca;
  --blue-dark: #3560b0;
  --blue-xdark: #1e3f80;
  --blue-light: #7aa0dc;
  --blue-pale: #ddeaff;
  --blue-glow: rgba(77, 121, 202, 0.3);
  --white: #ffffff;
  --off-white: #f0f5ff;
  --text: #0e1525;
  --text-muted: #5c6480;
  --border: rgba(77, 121, 202, 0.15);
  --dark: #07112b;
  --dark2: #0d1e40;
  --card-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  color: var(--text);
  max-width: 100vw;
}

h1,
h2,
h3,
h4,
.section-title,
.belief-card h4,
.service-card-content h3,
.step-content h4,
.why-item h4,
.faq-q h4 {
  font-family: "Cormorant Garamond", serif;
}

.nav-links a,
.nav-cta,
.section-tag,
.trust-pill,
.btn-primary,
.btn-secondary,
.contact-btn,
.footer-links a {
  font-family: "Syne", sans-serif;
}

/* ========== NOISE ========== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
}

/* ========== NAV ========== */
nav {
  position: relative;
  width: 100%;
  z-index: 1000;
  padding: 14px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(77, 121, 202, 0.12);
  transition: all 0.4s;
}

nav.scrolled {
  padding: 10px 4%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 30px rgba(77, 121, 202, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--blue-glow);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 8px 24px var(--blue-glow);
  transform: translateY(-2px);
}

.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 10px var(--blue-glow);
}

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

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

/* ========== HERO ========== */
.hero {
  min-height: calc(100vh - 140px);
  padding: 10px 4% 10px;
  /* Reduced top padding from 20px to 10px */
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
  background: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 121, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 121, 202, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-pan 20s linear infinite;
}

@keyframes grid-pan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 60px;
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(77, 121, 202, 0.12);
  top: -150px;
  right: -150px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(77, 121, 202, 0.08);
  bottom: 50px;
  left: -80px;
  animation-delay: 3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(120, 160, 220, 0.1);
  top: 40%;
  left: 40%;
  animation-delay: 5s;
}

@keyframes float-orb {

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

  50% {
    transform: translateY(-40px) scale(1.08);
  }
}

.hero-left {
  position: relative;
  z-index: 1;
  padding-top: 15px;
  align-self: center;
}

/* Reduced padding-top from 30px to 15px */

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 5px;
  color: var(--text);
  white-space: normal;
}

/* ========== HERO HEADING — TYPEWRITER ANIMATION ========== */
.hero-heading-anim {
  overflow: visible;
}

/* Blue accent words — continuous shimmer sweep */
.hw-blue {
  background: linear-gradient(90deg,
      var(--blue) 0%,
      #a8c8ff 38%,
      #cce0ff 52%,
      var(--blue) 68%,
      #a8c8ff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hw-shimmer 2.8s linear infinite;
}

@keyframes hw-shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 220% center;
  }
}

/* Blinking cursor */
.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--blue);
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  animation: cursor-blink 0.75s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(77, 121, 202, 0.6);
}

@keyframes cursor-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Cursor fades out when typing is done */
.hero-cursor.done {
  animation: cursor-fade 0.6s ease forwards;
}

@keyframes cursor-fade {
  to {
    opacity: 0;
    width: 0;
    margin: 0;
  }
}


.hero h1 .blue::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: line-grow 0.8s ease forwards 1s;
}

@keyframes line-grow {
  to {
    transform: scaleX(1);
  }
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 500px;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.8s;
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(77, 121, 202, 0.12);
  flex-wrap: nowrap;
  white-space: nowrap;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 1.1s;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  background: rgba(77, 121, 202, 0.06);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(77, 121, 202, 0.12);
  white-space: nowrap;
}

.trust-pill i {
  color: var(--blue);
  font-size: 0.78rem;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(77, 121, 202, 0.18);
  flex-shrink: 0;
}

/* ========== HERO RIGHT IMAGE ========== */
.hero-right {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fade-in-right 1s ease forwards 0.5s;
  align-self: center;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

.hero-img-wrap {
  position: relative;
  animation: float-card 5s ease-in-out infinite;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  max-height: 420px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(77, 121, 202, 0.15), 0 0 0 1px rgba(77, 121, 202, 0.1);
  object-fit: contain;
  display: block;
}

/* ===== BADGE SIZE FIX — smaller, compact ===== */
.img-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 0.72rem;
  white-space: nowrap;
  max-width: 160px;
}

.img-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.img-badge .badge-label {
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.badge-a {
  bottom: -16px;
  left: -16px;
  animation: badge-pop 3s ease-in-out infinite;
}

.badge-c {
  top: 20px;
  right: -16px;
  animation: badge-pop 4s ease-in-out infinite 2s;
}

@keyframes badge-pop {

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

  30% {
    transform: translateY(-8px) scale(1.03);
  }

  60% {
    transform: translateY(-4px) scale(1.02);
  }
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ========== ABOUT PAGE image-left / content-right ========== */
.about-inner>.about-img-wrap:first-child {
  grid-column: 1;
  grid-row: 1;
}

.about-inner>.about-img-wrap:first-child~div {
  grid-column: 2;
  grid-row: 1;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 45%;
  height: 200%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px var(--blue-glow);
}

.btn-primary i {
  transition: transform 0.2s;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(77, 121, 202, 0.05);
  color: var(--text);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1.5px solid rgba(77, 121, 202, 0.2);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(77, 121, 202, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SECTION BASE — Reduced Spacing ========== */
section {
  padding: 10px 4% 10px;
  /* Reduced top from 20px to 10px */
  position: relative;
}

section:not(.contact):not(.hero):not(.about):not(.mission-section):not(.faq-section)::after {
  content: "";
  display: block;
  width: 90%;
  max-width: 1200px;
  height: 2px;
  background: rgba(77, 121, 202, 0.15);
  margin: 15px auto 5px auto;
  /* Reduced from 40px top / 10px bottom */
  border-radius: 4px;
}

.section-tag {
  display: inline-block;
  background: rgba(77, 121, 202, 0.1);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  /* Reduced from 16px */
  border: 1px solid rgba(77, 121, 202, 0.18);
  transition: background 0.2s;
}

.section-tag:hover {
  background: rgba(77, 121, 202, 0.18);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  /* Reduced from 16px */
  color: var(--text);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ========== TICKER ========== */
.ticker-wrap {
  overflow: hidden;
  background: #ffffff;
  padding: 28px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(77, 121, 202, 0.12);
  border-bottom: 1px solid rgba(77, 121, 202, 0.12);
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker {
  display: inline-flex;
  align-items: center;
  animation: ticker 36s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  font-family: "Syne", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.ticker-item:hover {
  color: var(--blue);
}

.ticker-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  opacity: 0.6;
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(77, 121, 202, 0.4);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

/* ========== BELIEFS (Philosophy) — Reduced Spacing ========== */
.beliefs {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 50px 4% 30px;
}

.beliefs::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 121, 202, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.beliefs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.beliefs-img-wrap {
  position: relative;
}

.beliefs-img {
  width: 100%;
  height: 460px;
  max-height: 500px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: float-card 5s ease-in-out infinite 1s;
}

.beliefs-overlay-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--blue);
  color: white;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(77, 121, 202, 0.4);
  animation: badge-pop 4s ease-in-out infinite;
}

.beliefs-overlay-badge .big {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.beliefs-overlay-badge .sm {
  font-size: 0.75rem;
  opacity: 0.8;
}

.beliefs .section-title {
  white-space: nowrap;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.beliefs .section-sub {
  max-width: 540px;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 15px;
  /* Reduced from 24px */
}

.belief-card {
  background: white;
  border: 1px solid rgba(77, 121, 202, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(77, 121, 202, 0.06);
  transition: all 0.35s;
  cursor: default;
}

.belief-card:hover {
  background: white;
  border-color: rgba(77, 121, 202, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(77, 121, 202, 0.12);
}

.belief-icon {
  width: 44px;
  height: 44px;
  background: rgba(77, 121, 202, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
  transition: all 0.3s;
  color: var(--blue);
}

.belief-card:hover .belief-icon {
  background: var(--blue);
  transform: scale(1.1) rotate(5deg);
  color: white;
}

.belief-card h4 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.belief-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== SERVICES (What We Do) — Reduced Spacing ========== */
.services {
  background: #ffffff;
  padding: 5px 4% 20px;
  /* Reduced top from 30px to 5px */
}

.section-center-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 5px auto;
  /* Reduced bottom from 10px to 5px */
}

.section-center-header .section-sub {
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  /* Reduced from 28px to 10px */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(77, 121, 202, 0.13);
  border-color: rgba(77, 121, 202, 0.3);
}

.service-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 14px 16px 18px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.svc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--text);
  font-family: "Syne", sans-serif;
  z-index: 10;
}

.svc-badge .sbi {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.svc-badge small {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-num-label {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.8;
  display: inline-block;
  padding: 2px 8px;
  background: transparent;
  border-radius: 4px;
  transition: background 0.2s;
  margin-left: -8px;
}

.service-card:hover .service-num-label {
  background: rgba(77, 121, 202, 0.08);
}

.service-card-content h3 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.2;
}

.service-card-content>p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: auto;
  border-top: 1px solid rgba(77, 121, 202, 0.12);
  padding-top: 10px;
  padding-bottom: 2px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.service-features li .fi {
  width: 22px;
  height: 22px;
  background: rgba(77, 121, 202, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.service-features li:hover .fi {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

.service-features li:hover {
  color: var(--text);
}

/* ========== ABOUT (Who We Are) — Reduced Spacing ========== */
.about {
  background: #ffffff;
  padding: 5px 4% 30px;
  /* Reduced top from 30px to 5px */
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  animation: float-card 5s ease-in-out infinite 2s;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.about-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 30px 80px rgba(77, 121, 202, 0.16);
  background: white;
  min-height: 360px;
  max-height: 440px;
  display: block;
}

.about-img-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.about-b1 {
  top: -16px;
  right: -16px;
  animation: badge-pop 3.5s ease-in-out infinite;
}

.about-b2 {
  bottom: -16px;
  left: -16px;
  animation: badge-pop 4s ease-in-out infinite 1.2s;
}

/* ========== VISUAL PANELS ========== */
.about-visual-panel,
.beliefs-visual-panel {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(77, 121, 202, 0.16);
  border: 1px solid rgba(77, 121, 202, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 480px;
}

.avp-tagline,
.bvp-label {
  font-family: "Syne", sans-serif;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.avp-heading,
.bvp-title {
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
}

.avp-heading strong,
.bvp-title strong {
  color: var(--blue);
}

.avp-divider,
.bvp-divider {
  width: 60px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 20px;
}

.avp-desc,
.bvp-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.avp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(77, 121, 202, 0.1);
  padding-top: 30px;
}

.avp-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  font-family: "Syne", sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.avp-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bvp-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(77, 121, 202, 0.1);
  font-family: "Syne", sans-serif;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
}

.beliefs-visual-panel {
  position: relative;
  background: linear-gradient(135deg, white, #f8faff);
}

.bvp-pillars {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

.bvp-pillar {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(77, 121, 202, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.bvp-pillar:hover {
  transform: translateX(10px);
  border-color: rgba(77, 121, 202, 0.3);
}

.bvp-pillar-num {
  font-family: "Syne", sans-serif;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.2rem;
}

.bvp-pillar-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

@keyframes animated-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient-text {
  background: linear-gradient(270deg, var(--text), var(--blue), var(--text-muted), var(--blue));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animated-gradient 6s ease infinite;
}

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

.about-stat {
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(77, 121, 202, 0.07);
  transition: all 0.3s;
  text-align: center;
  border: 1px solid rgba(77, 121, 202, 0.08);
}

.about-stat:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(77, 121, 202, 0.13);
}

.about-stat .big-num {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.about-stat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-img-badge i {
  font-size: 1.2rem;
  color: var(--blue);
}

.about-img-badge .b-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
}

.about-img-badge .b-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 15px;
  /* Reduced from 24px */
}

.step {
  background: white;
  border: 1px solid rgba(77, 121, 202, 0.12);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(77, 121, 202, 0.06);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(77, 121, 202, 0.13);
  border-color: rgba(77, 121, 202, 0.3);
}

.step-line {
  display: none;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(77, 121, 202, 0.3);
  transition: transform 0.3s;
}

.step:hover .step-num {
  transform: scale(1.1) rotate(-5deg);
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--dark);
}

.step-content p {
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
  background: linear-gradient(180deg, white 0%, var(--off-white) 100%);
  padding: 10px 4% 10px;
}

/* Reduced padding-top to 10px */

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  animation: float-card 5s ease-in-out infinite 0.5s;
}

.why-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 320px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.why-badge {
  position: absolute;
  background: var(--blue);
  color: white;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 12px 40px rgba(77, 121, 202, 0.4);
}

.why-badge-1 {
  top: -18px;
  right: -18px;
  animation: badge-pop 3.8s ease-in-out infinite;
}

.why-badge-2 {
  bottom: -18px;
  left: -18px;
  animation: badge-pop 4.2s ease-in-out infinite 1.5s;
}

.why-badge i {
  font-size: 1.1rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

/* Reduced from 36px */

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(77, 121, 202, 0.12);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(77, 121, 202, 0.06);
  transition: all 0.3s;
  cursor: default;
}

.why-item:hover {
  border-color: rgba(77, 121, 202, 0.3);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(77, 121, 202, 0.1);
}

.why-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(77, 121, 202, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.3s;
}

.why-item:hover .why-item-icon {
  background: var(--blue);
  color: white;
  transform: rotate(-5deg);
}

.why-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== FAQ — Reduced Spacing ========== */
.faq-section {
  background: #ffffff;
  padding: 5px 4% 40px;
  /* Reduced top padding from 30px to 5px */
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.faq-img-wrap {
  position: relative;
  top: 0;
  margin-top: 40px;
  animation: float-card 5s ease-in-out infinite 1s;
  background: linear-gradient(135deg, #eef3fc, #f5f8ff);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 8px 40px rgba(77, 121, 202, 0.08);
}

.faq-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 280px;
  box-shadow: 0 20px 60px rgba(77, 121, 202, 0.18);
}

.faq-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(77, 121, 202, 0.15);
  color: var(--text);
  animation: badge-pop 4s ease-in-out infinite;
}

.faq-badge i {
  font-size: 1.2rem;
  color: var(--blue);
}

.faq-badge .b-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
}

.faq-badge .b-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

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

.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(77, 121, 202, 0.1);
  box-shadow: 0 2px 12px rgba(77, 121, 202, 0.05);
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(77, 121, 202, 0.3);
  background: #f8faff;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-q:hover h4 {
  color: var(--blue);
  transition: color 0.2s;
}

.faq-q h4 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: white;
  font-size: 0.75rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact {
  background: linear-gradient(135deg, #07112b 0%, #0d2050 50%, #07112b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 4% 40px;
}

.contact::before {
  content: "";
  position: absolute;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(77, 121, 202, 0.25) 0%, transparent 60%);
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact .section-title {
  color: white;
}

.contact .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 20px;
  max-width: 520px;
}

.contact .section-tag {
  background: rgba(77, 121, 202, 0.25);
  color: #c5d7f5;
  border-color: rgba(77, 121, 202, 0.3);
}

.contact-img-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-img-item {
  position: relative;
  animation: badge-pop 4s ease-in-out infinite;
}

.contact-img-item:nth-child(2) {
  animation-delay: 1s;
  margin-top: -20px;
}

.contact-img-item:nth-child(3) {
  animation-delay: 2s;
}

.contact-img-item img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(77, 121, 202, 0.3);
  display: block;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-btn.whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.contact-btn.whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

.contact-btn.phone {
  background: white;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-btn.phone:hover {
  background: #f0f5ff;
}

.contact-btn.email {
  background: rgba(77, 121, 202, 0.25);
  border: 1.5px solid rgba(77, 121, 202, 0.45);
  color: white;
}

.contact-btn.email:hover {
  background: rgba(77, 121, 202, 0.4);
}

.contact-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.contact-note {
  margin-top: 40px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

/* ========== FOOTER ========== */
footer {
  background: #07112b;
  padding: 36px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(77, 121, 202, 0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--blue-light);
}

/* ========== FLOATING WIDGET ========== */
.float-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-btn:hover {
  transform: scale(1.18) translateY(-4px);
}

.float-wa {
  background: #25d366;
  color: white;
  animation: float-bounce 2.2s ease-in-out infinite;
}

.float-call {
  background: var(--blue);
  color: white;
  animation: float-bounce 2.2s ease-in-out infinite 0.6s;
}

@keyframes float-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ========== MISSION ========== */
.mission-section {
  padding: 0 4% 40px;
  background: #ffffff;
  position: relative;
  border-top: none;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--blue);
  padding: 30px 45px;
  border-radius: 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 35px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(77, 121, 202, 0.2);
}

.mission-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mission-icon {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  flex-shrink: 0;
  animation: float-mission 4s ease-in-out infinite;
}

@keyframes float-mission {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mission-info {
  flex: 1;
}

.mission-section .section-title {
  color: white;
  margin-bottom: 8px;
  font-size: 1.4rem;
  text-align: left;
  text-transform: none;
  font-weight: 700;
}

.mission-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: none;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .mission-section .section-title {
    text-align: center;
  }

  .mission-text {
    font-size: 0.9rem;
  }
}

/* ========== BACK TO TOP ========== */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 121, 202, 0.35), 0 4px 20px rgba(77, 121, 202, 0.15);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(77, 121, 202, 0), 0 4px 20px rgba(77, 121, 202, 0.15);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(77, 121, 202, 0), 0 4px 20px rgba(77, 121, 202, 0.15);
  }
}

#back-to-top {
  position: fixed;
  bottom: 165px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(77, 121, 202, 0.3);
  color: var(--blue);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 498;
  outline: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pulse-ring 2.5s ease-out infinite;
}

#back-to-top:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px var(--blue-glow);
  border-color: transparent;
  animation: none;
}

/* ========================================================
   MEDIA QUERIES — COMPREHENSIVE RESPONSIVE
   ======================================================== */

/* ===== LARGE TABLET (1024px) ===== */
@media (max-width: 1024px) {
  nav {
    padding: 14px 4%;
  }

  nav.scrolled {
    padding: 10px 4%;
  }

  .hero {
    gap: 24px;
    padding: 24px 4% 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .hero-img-main {
    width: 100%;
    height: auto;
    max-height: 380px;
  }

  section {
    padding: 20px 4% 20px;
  }

  /* Reduced from 30px-60px */
  .beliefs {
    padding: 15px 4% 40px;
  }

  .about {
    padding: 15px 4% 40px;
  }

  .services {
    padding: 15px 4% 30px;
  }

  .faq-section {
    padding: 15px 4% 40px;
  }

  .contact {
    padding: 70px 4% 60px;
  }

  .beliefs-inner,
  .about-inner,
  .why-inner,
  .faq-inner {
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 100%;
  }

  .services-header {
    max-width: 100%;
  }

  .about-stats-row,
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .beliefs .section-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    white-space: nowrap;
  }
}

/* ===== TABLET (768px) ===== */
@media (max-width: 768px) {
  #navbar {
    width: 100%;
    left: 0;
    right: 0;
    padding: 14px 5%;
    position: fixed !important;
    top: 0 !important;
    z-index: 1001 !important;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  nav + section {
    padding-top: 90px !important;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav.menu-open .nav-links,
  .nav-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 5%;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Hero — single column */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 85px 4% 30px;
    min-height: auto;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .hero-btns,
  .hero-trust-line {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust-line {
    gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .trust-pill {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .hero-right {
    display: block;
    width: 100%;
    order: -1;
  }

  .hero-img-main {
    max-height: 280px;
  }

  /* Badges — hide on small screens to prevent overflow */
  .badge-a,
  .badge-c {
    display: none;
  }

  /* Sections — Reduced padding for tablet */
  section {
    padding: 25px 4% 20px;
  }

  .beliefs {
    padding: 15px 4% 30px;
  }

  .about {
    padding: 15px 4% 30px;
  }

  .services {
    padding: 15px 4% 30px;
  }

  .faq-section {
    padding: 15px 4% 30px;
  }

  .contact {
    padding: 60px 4% 50px;
  }

  /* Grids — single column */
  .beliefs-inner,
  .about-inner,
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* ===== BELIEFS IMAGE — SHOW ON MOBILE ===== */
  .beliefs-img-wrap {
    display: block !important;
    max-width: 100%;
    overflow: visible;
  }

  .beliefs-img {
    height: 280px;
    object-fit: cover;
  }

  .beliefs .section-title {
    white-space: normal;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  /* ===== FAQ IMAGE — SHOW ON MOBILE ===== */
  .faq-img-wrap {
    display: block !important;
    margin-bottom: 40px;
  }

  .faq-img {
    height: 220px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Services Get Started button — CENTER on mobile */
  .services-header {
    justify-content: center !important;
    margin-bottom: 20px;
  }

  .section-center-header {
    margin-bottom: 8px;
  }

  .about-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 4% 80px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== MOBILE (480px) ===== */
@media (max-width: 480px) {
  #navbar {
    width: 100%;
    left: 0;
    right: 0;
    padding: 12px 4%;
    position: fixed !important;
    top: 0 !important;
    z-index: 1001 !important;
    background: white;
  }

  .hero {
    padding: 80px 4% 20px;
  }

  .hero-right,
  .faq-img-wrap {
    display: none !important;
  }

  .hero h1 {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
    font-weight: 900;
    line-height: 1.1;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-line {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    white-space: normal;
  }

  .trust-divider {
    display: none;
  }

  .trust-pill {
    font-size: 0.7rem;
  }

  .hero-img-main {
    max-height: 220px;
  }

  section {
    padding: 30px 4% 24px;
  }

  /* Reduced from 40px */
  .beliefs {
    padding: 15px 4% 30px;
  }

  .about {
    padding: 15px 4% 30px;
  }

  .services {
    padding: 15px 4% 25px;
  }

  .faq-section {
    padding: 15px 4% 30px;
  }

  .contact {
    padding: 48px 4% 40px;
  }

  .section-title {
    font-size: 2.22rem;
  }

  /* Beliefs — single column, title wraps */
  .beliefs .section-title {
    white-space: normal;
    font-size: 2.6rem;
    font-weight: 900;
  }

  .beliefs-inner {
    gap: 28px;
  }

  .beliefs-img {
    height: 220px;
  }

  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .belief-card,
  .why-item {
    padding: 18px 14px;
  }

  /* Services — single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card-content h3 {
    font-size: 1.4rem;
    font-weight: 900;
    white-space: normal;
  }

  .service-card-content>p {
    font-size: 0.78rem;
  }

  /* About steps */
  .about-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .step-content h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark);
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* FAQ */
  .faq-inner {
    gap: 28px;
  }

  .faq-img {
    height: 180px;
  }

  .faq-img-wrap {
    padding: 12px;
  }

  /* Contact */
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .contact-img-row {
    gap: 12px;
  }

  .contact-img-item img {
    width: 90px;
    height: 90px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ===== SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .beliefs .section-title {
    font-size: 1.9rem;
  }

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

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

  #navbar {
    width: 100%;
    left: 0;
    right: 0;
    padding: 10px 4%;
    position: fixed !important;
    top: 0 !important;
    z-index: 1001 !important;
    background: white;
  }

  section {
    padding: 25px 3% 20px;
  }

  .beliefs {
    padding: 15px 3% 25px;
  }

  .about {
    padding: 15px 3% 25px;
  }

  .services {
    padding: 15px 3% 25px;
  }

  .faq-section {
    padding: 15px 3% 25px;
  }

  .contact {
    padding: 35px 3% 30px;
  }
}