:root {
  --navy: #1c587f;
  --navy-dk: #164668;
  --navy-lt: #e8f3fa;
  --green: #62b935;
  --green-dk: #4e9a2a;
  --green-lt: #edf7e4;
  --cream: #faf8f4;
  --warm: #f6f4f0;
  --white: #ffffff;
  --ink: #1a1f2e;
  --ink-2: #3d4559;
  --ink-3: #6b7280;
  --border: #e5e2dc;
  --border-lt: #f0ede8;
  --gold: #c9a84c;
  --shadow-s: 0 2px 10px rgba(26, 31, 46, .07);
  --shadow-m: 0 8px 28px rgba(26, 31, 46, .10);
  --shadow-l: 0 20px 56px rgba(26, 31, 46, .14);
  --r: 10px;
  --r-sm: 6px;
  --r-lg: 18px;
  --t: .28s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  /* font-family: 'Outfit', system-ui, sans-serif; */
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit
}

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

.section {
  padding: 88px 0
}

.bg-warm {
  background: var(--warm)
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dk);
  background: var(--green-lt);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* section heading */
.sh {
  
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}

.sh em {
  font-style: italic;
  color: var(--navy)
}

.sh-sub {
  color: var(--ink-2);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 auto
}

.section__hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn--green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(98, 185, 53, .3)
}

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

.btn--white-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .85)
}

.btn--lg {
  padding: 14px 34px;
  font-size: .97rem
}

.btn--full {
  width: 100%;
  justify-content: center
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dk);
  color: rgba(255, 255, 255, .8);
  font-size: .78rem;
  padding: 7px 0
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 6px
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px
}

.topbar__right a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .75);
  transition: var(--t)
}

.topbar__right a:hover {
  color: var(--green)
}

.topbar__social {
  display: flex;
  gap: 10px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.topbar__social a {
  color: rgba(255, 255, 255, .6)
}

.topbar__social a:hover {
  color: var(--green)
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--t);
}

.header.scrolled {
  box-shadow: var(--shadow-m)
}

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

.logo__img {
  height: 52px;
  width: auto;
  object-fit: contain
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav__list {
  display: flex;
  gap: 0
}

.nav__link {
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link:hover {
  color: var(--navy);
  background: var(--navy-lt)
}

.nav__cta {
  padding: 9px 20px;
  font-size: .86rem
}

/* Dropdown */
.nav__dropdown {
  position: relative
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t);
  z-index: 100;
}

.nav__dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown__menu li a {
  display: block;
  padding: 9px 18px;
  font-size: .86rem;
  color: var(--ink-2);
  transition: var(--t);
}

.dropdown__menu li a:hover {
  color: var(--navy);
  background: var(--navy-lt)
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 901
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(140deg, #0f3851 0%, var(--navy) 55%, #1d6696 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 48px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(98, 185, 53, .12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .04) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 32, 48, .3) 0%, transparent 100%);
  pointer-events: none
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2.2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero__eyebrow span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.hero__h1 {
  
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero__h1 em {
  font-style: italic;
  color: var(--green)
}

.hero__sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.72
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px
}

.hero__nums {
  display: flex;
  align-items: center;
  gap: 20px
}

.hnum {
  text-align: center
}

.hnum b {
  display: block;
  
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

.hnum span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 3px;
  display: block
}

.hnum__div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .18)
}

/* Hero Right */
.hero__right {
  position: relative;
  display: flex;
  justify-content: center
}

.hero__photo-frame {
  position: relative;
  width: 320px;
}

.hero__photo {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-l);
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, .15);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-10px)
  }
}

.hero__photo-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-m);
}

.hero__photo-badge img {
  height: 36px;
  width: auto;
  object-fit: contain
}

.hero__photo-badge strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink)
}

.hero__photo-badge span {
  font-size: .7rem;
  color: var(--ink-3)
}

.hero__photo-tag {
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--green);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(98, 185, 53, .4);
  white-space: nowrap;
}

.hero__ca-watermark {
  position: absolute;
  bottom: 40px;
  right: -16px;
  opacity: .12;
  width: 100px;
}

.hero__ca-watermark img {
  width: 100%;
  filter: invert(1) brightness(10)
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll__ball {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  position: relative;
}

.scroll__ball::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
  animation: scroll-anim 1.8s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1
  }

  100% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden
}

.trust-strip__row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.ts__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  white-space: nowrap
}

.ts__items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.ts__items span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap
}

.ts__items svg {
  color: var(--green);
  flex-shrink: 0
}

.ts__dot {
  color: rgba(255, 255, 255, .25);
  font-size: 1.2rem
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start
}

.about__lead {
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.68
}

.about__body {
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.75
}

.about__vals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.aval {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.aval__ico {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--green-lt);
  color: var(--green-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.aval strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px
}

.aval span {
  font-size: .86rem;
  color: var(--ink-3);
  line-height: 1.55
}

.about__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.about__callbtn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  transition: var(--t)
}

.about__callbtn:hover {
  color: var(--navy)
}

.about__callbtn-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-lt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.about__callbtn span {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-3)
}

.about__callbtn strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink)
}

/* About Right */
.about__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px
}

.asg__item {
  background: var(--navy);
  padding: 28px 20px;
  text-align: center
}

.asg__item--green {
  background: var(--green)
}

.asg__item strong {
  display: block;
  
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

.asg__item span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block
}

.about__ca-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px
}

.about__ca-card img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0
}

.about__ca-card strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink)
}

.about__ca-card span {
  font-size: .78rem;
  color: var(--ink-3);
  line-height: 1.4
}

.about__ca-since {
  display: block;
  font-size: .72rem;
  color: var(--green-dk);
  font-weight: 600;
  margin-top: 3px
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.svc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.svc:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-m);
  transform: translateY(-4px)
}

.svc--accent {
  background: var(--navy);
  border-color: var(--navy)
}

.svc--accent:hover {
  background: var(--navy-dk)
}

.svc__num {
  
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.svc--accent .svc__num {
  color: rgba(255, 255, 255, .1)
}

.svc__ico {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--navy-lt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc--accent .svc__ico {
  background: rgba(255, 255, 255, .12);
  color: var(--white)
}

.svc h3 {
  
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3
}

.svc--accent h3 {
  color: var(--white)
}

.svc p {
  font-size: .87rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  line-height: 1.7
}

.svc--accent p {
  color: rgba(255, 255, 255, .75)
}

.svc ul {
  margin-bottom: 20px
}

.svc ul li {
  font-size: .82rem;
  color: var(--ink-3);
  padding: 5px 0 5px 16px;
  border-bottom: 1px solid var(--border-lt);
  position: relative
}

.svc ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: .82rem
}

.svc--accent ul li {
  color: rgba(255, 255, 255, .65);
  border-color: rgba(255, 255, 255, .1)
}

.svc__cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--t)
}

.svc--accent .svc__cta {
  color: var(--green)
}

.svc__cta:hover {
  opacity: .7
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder__wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center
}

.founder__frame {
  position: relative;
  background: var(--warm);
  border-radius: var(--r-lg);
  overflow: visible;
}

.founder__frame img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow-l)
}

.founder__ca-seal {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--r);
  box-shadow: var(--shadow-m);
}

.founder__ca-seal img {
  height: 44px;
  width: auto;
  object-fit: contain
}

.founder__lead {
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.7
}

.founder__body {
  color: var(--ink-2);
  margin-bottom: 26px;
  line-height: 1.75
}

.founder__creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.fcred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-2)
}

.fcred__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0
}

/* ============================================================
   STATS BAR
   ============================================================ */
.statsbar {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 48px 0
}

.sbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap
}

.sbar__i {
  text-align: center;
  padding: 16px 40px
}

.sbar__i strong {
  display: block;
  
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1
}

.sbar__i strong span {
  color: var(--white)
}

.sbar__i span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .07em;
  display: block;
  margin-top: 4px
}

.sbar__sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .12)
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start
}

.why__img-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
}

.why__logo {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 24px;
  object-fit: contain
}

.why__quote {
  border-left: 3px solid var(--green);
  padding-left: 18px;
  text-align: left;
  margin-bottom: 24px
}

.why__quote p {
  
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 8px
}

.why__quote cite {
  font-size: .78rem;
  color: var(--ink-3);
  font-style: normal;
  font-weight: 600
}

.why__since {
  background: var(--navy);
  border-radius: var(--r-sm);
  padding: 16px;
  color: var(--white);
  text-align: center
}

.why__since strong {
  display: block;
  
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green)
}

.why__since span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7)
}

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

.wcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: var(--t);
}

.wcard:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-s);
  transform: translateY(-3px)
}

.wcard__ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--green-lt);
  color: var(--green-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wcard h3 {
  
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px
}

.wcard p {
  font-size: .84rem;
  color: var(--ink-3);
  line-height: 1.65
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  padding: 20px 0
}

.pstep {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: var(--t);
}

.pstep:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-m);
  transform: translateY(-4px)
}

.pstep--green {
  border-color: var(--green)
}

.pstep--green:hover {
  border-color: var(--green-dk)
}

.pstep__num {
  
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px
}

.pstep--green .pstep__num {
  color: rgba(98, 185, 53, .25)
}

.pstep__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy-lt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pstep--green .pstep__icon {
  background: var(--green-lt);
  color: var(--green-dk)
}

.pstep h3 {
  
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px
}

.pstep p {
  font-size: .84rem;
  color: var(--ink-3);
  line-height: 1.65
}

.pstep__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 60px;
  color: var(--green);
  flex-shrink: 0
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--t);
}

.tcard:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-m);
  transform: translateY(-3px)
}

.tcard--dark {
  background: var(--navy);
  border-color: var(--navy)
}

.tcard--dark:hover {
  background: var(--navy-dk)
}

.tcard__ca {
  margin-bottom: 14px
}

.tcard__ca img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7
}

.tcard__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px
}

.tcard__stars--light {
  color: var(--green)
}

.tcard p {
  font-size: .88rem;
  color: var(--ink-3);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px
}

.tcard--dark p {
  color: rgba(255, 255, 255, .75)
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px
}

.tcard__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-lt);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard__av--outline {
  background: rgba(255, 255, 255, .15);
  color: var(--white)
}

.tcard__author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink)
}

.tcard--dark .tcard__author strong {
  color: var(--white)
}

.tcard__author span {
  font-size: .78rem;
  color: var(--ink-3)
}

.tcard--dark .tcard__author span {
  color: rgba(255, 255, 255, .55)
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start
}

.faq__left p {
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.7;
  margin-top: 14px
}

.faq__logo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-top: 32px;
}

.faq__logo-card img {
  height: 42px;
  width: auto;
  object-fit: contain
}

.faq__logo-card span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4
}

.faq__logo-card small {
  font-size: .75rem;
  color: var(--ink-3);
  font-weight: 400
}

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

.faq__item {
  border-bottom: 1px solid var(--border)
}

.faq__item:first-child {
  border-top: 1px solid var(--border)
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: var(--t);
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
}

.faq__q:hover {
  color: var(--navy)
}

.faq__q svg {
  flex-shrink: 0;
  transition: transform var(--t)
}

.faq__item.open .faq__q svg {
  transform: rotate(180deg)
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease
}

.faq__item.open .faq__a {
  max-height: 300px
}

.faq__a p {
  font-size: .88rem;
  color: var(--ink-3);
  line-height: 1.75;
  padding-bottom: 18px
}

/* ============================================================
   BLOG
   ============================================================ */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.bcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--t);
}

.bcard:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-m);
  transform: translateY(-3px)
}

.bcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.btag {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green-dk);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.btag--blue {
  background: var(--navy-lt);
  color: var(--navy)
}

.bdate {
  font-size: .75rem;
  color: var(--ink-3)
}

.bcard h3 {
  
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35
}

.bcard p {
  font-size: .86rem;
  color: var(--ink-3);
  margin-bottom: 18px;
  line-height: 1.7
}

.bcard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--t)
}

.bcard__link:hover {
  color: var(--green);
  gap: 10px
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start
}

.contact__lead {
  color: var(--ink-2);
  margin-bottom: 32px;
  line-height: 1.75
}

.cinfo__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px
}

.cinfo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  transition: var(--t);
  color: var(--ink);
}

a.cinfo:hover {
  border-color: var(--navy);
  background: var(--navy-lt)
}

.cinfo__ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--navy-lt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cinfo__ico--g {
  background: var(--green-lt);
  color: var(--green-dk)
}

.cinfo strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-3);
  margin-bottom: 3px
}

.cinfo span {
  display: block;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.45
}

.contact__socrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.csoc {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: var(--t);
}

.csoc:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white)
}

.csoc--wa {
  width: auto;
  padding: 0 16px;
  gap: 6px;
  color: var(--white);
  background: #25D366;
  border-color: #25D366;
  font-size: .84rem;
  font-weight: 600
}

.csoc--wa:hover {
  background: #1ebe5b;
  border-color: #1ebe5b
}

/* Form */
.cform__wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-m)
}

.cform__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-lt)
}

.cform__logo {
  height: 44px;
  width: auto;
  object-fit: contain
}

.cform__header h3 {
  
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink)
}

.cform__header p {
  font-size: .82rem;
  color: var(--ink-3);
  margin-top: 3px
}

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

.fg {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column
}

.fg label {
  font-size: .76rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.fg label span {
  color: var(--green)
}

.fg input,
.fg select,
.fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--ink);
  background: var(--white);
  transition: var(--t);
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28, 88, 127, .07)
}

.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer
}

.fg textarea {
  resize: vertical;
  min-height: 96px
}

.form__success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--green-lt);
  color: var(--green-dk);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 600
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0c1f2e;
  color: var(--white)
}

.footer__body {
  padding: 68px 0 44px
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 44px
}

.footer__brand p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.72;
  max-width: 280px;
  margin-top: 14px
}

.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px
}

.footer__soc {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.footer__soc a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: var(--t);
}

.footer__soc a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white)
}

.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 18px
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer__col ul li a {
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--t)
}

.footer__col ul li a:hover {
  color: var(--green)
}

.footer__clist {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer__ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55)
}

.footer__ci svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px
}

.footer__ci a {
  color: rgba(255, 255, 255, .55);
  transition: var(--t)
}

.footer__ci a:hover {
  color: var(--green)
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 0
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px
}

.footer__bar-inner p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3)
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa__float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: var(--t);
  animation: wa-in .6s 2s ease both;
}

.wa__float:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .5)
}

@keyframes wa-in {
  0% {
    transform: scale(0) translateY(30px);
    opacity: 0
  }

  80% {
    transform: scale(1.08) translateY(-3px)
  }

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

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1060px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero__right {
    display: none
  }

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

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

  .about__stats-grid {
    margin-bottom: 0
  }

  .svc__grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .founder__img {
    max-width: 340px;
    margin: 0 auto
  }

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

  .why__img-col {
    display: none
  }

  .why__cards {
    grid-template-columns: repeat(3, 1fr)
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .pstep__arrow {
    display: none
  }

  .testi__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

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

  .sbar {
    flex-wrap: wrap
  }

  .sbar__sep {
    display: none
  }

  .sbar__i {
    padding: 16px 24px
  }
}

@media(max-width:768px) {
  .section {
    padding: 56px 0
  }

  .topbar {
    display: none
  }

  .nav__list,
  .nav__cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 290px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 28px 40px;
    box-shadow: var(--shadow-l);
    transform: translateX(100%);
    transition: transform var(--t);
    z-index: 900;
    gap: 0;
  }

  .nav.open {
    transform: translateX(0)
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%
  }

  .nav__link {
    color: var(--ink);
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-lt);
    font-size: 1rem
  }

  .nav__dropdown .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px
  }

  .nav__cta {
    display: inline-flex;
    margin-top: 20px
  }

  .hero__h1 {
    font-size: 2rem
  }

  .hero__btns {
    flex-direction: column
  }

  .hero__nums {
    flex-wrap: wrap;
    gap: 12px
  }

  .hnum__div {
    display: none
  }

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

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

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

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

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

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

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

  .footer__bar-inner {
    flex-direction: column;
    text-align: center
  }

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

  .ts__items {
    gap: 10px
  }

  .ts__dot {
    display: none
  }

  .cform__wrap {
    padding: 24px 18px
  }

  .wa__float span {
    display: none
  }

  .wa__float {
    padding: 14px;
    border-radius: 50%
  }
}

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

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