/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", sans-serif;
  color: #1a252f;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ═══════════════════════════════════
   VARIABLES
═══════════════════════════════════ */
:root {
  --navy: #0d1f3c;
  --navy-mid: #154360;
  --blue: #1b4f72;
  --accent: #2e86c1;
  --accent-lt: #5dade2;
  --gold: #d4ac0d;
  --gold-dk: #b8930e;
  --text: #1a252f;
  --text-mid: #4a5568;
  --text-lt: #718096;
  --bg: #f0f4f8;
  --white: #fff;
  --border: #e2e8f0;
  --r: 14px;
  --r-sm: 8px;
  --r-pill: 50px;
  --sh: 0 4px 24px rgba(13, 31, 60, 0.1);
  --sh-lg: 0 16px 48px rgba(13, 31, 60, 0.18);
  --sh-card: 0 2px 12px rgba(13, 31, 60, 0.08);
}

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
}
.mt-24 {
  margin-top: 24px;
}

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  color: var(--text-mid);
  line-height: 1.78;
}

/* ═══════════════════════════════════
   SECTION LABELS
═══════════════════════════════════ */
.section-pill {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-lt), var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.section-title {
  margin: 8px 0 14px;
  color: var(--navy);
}
.section-sub {
  color: var(--text-mid);
  font-size: 0.96rem;
  max-width: 560px;
}
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 30px;
  transition: all 0.25s;
  cursor: pointer;
}
.btn--lg {
  padding: 16px 38px;
  font-size: 0.95rem;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 172, 13, 0.35);
}
.btn--gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 172, 13, 0.45);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 134, 193, 0.28);
}
.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}
.btn__arrow {
  transition: transform 0.2s;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition:
    box-shadow 0.3s,
    background 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo span {
  color: var(--gold);
}
.nav {
  display: flex;
  gap: 2px;
}
.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav__link:hover,
.nav__link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.header__cta {
  padding: 9px 22px;
  font-size: 0.82rem;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(46, 134, 193, 0.22) 0%,
    transparent 70%
  );
  top: -150px;
  right: -80px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 172, 13, 0.14) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 60px;
}
.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(93, 173, 226, 0.12) 0%,
    transparent 70%
  );
  top: 40%;
  left: 40%;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 120px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212, 172, 13, 0.14);
  border: 1px solid rgba(212, 172, 13, 0.32);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}
.hero__title {
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero__title--accent {
  color: var(--gold);
  display: block;
  background: linear-gradient(90deg, #d4ac0d, #f0c832, #d4ac0d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.06rem;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.78;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.trust__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 193, 106, 0.2);
  border: 1px solid rgba(46, 193, 106, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #5eed90;
  flex-shrink: 0;
}

/* stat cards */
.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.stat-cards {
  display: flex;
  gap: 14px;
}
.stat-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-col--offset {
  margin-top: 36px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  padding: 22px 24px;
  min-width: 148px;
  transition: all 0.3s;
  cursor: default;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 172, 13, 0.4);
  transform: translateY(-4px);
}
.stat-card--accent {
  border-top: 3px solid var(--gold);
}
.stat-card__icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  filter: grayscale(0);
}
.stat-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-card__lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}
.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════
   STATS BAR
═══════════════════════════════════ */
.statsbar {
  background: var(--navy-mid);
  padding: 0;
}
.statsbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.statsbar__item {
  text-align: center;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.statsbar__divider {
  position: absolute;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  top: 20%;
  bottom: 20%;
}
.statsbar__divider:nth-child(2) {
  left: 25%;
}
.statsbar__divider:nth-child(4) {
  left: 50%;
}
.statsbar__divider:nth-child(6) {
  left: 75%;
}
.statsbar__num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.statsbar__lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media img {
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  width: 100%;
}
.about__badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.about__badge-num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
}
.about__badge-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin-top: 4px;
}
.about__floating-tag {
  position: absolute;
  top: 24px;
  left: -16px;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid var(--gold);
}
.about__content h2 {
  margin: 10px 0 16px;
}
.about__content > p {
  margin-bottom: 22px;
}
.vm-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.vm-box {
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 18px;
}
.vm-box__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.vm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vm-dot--blue {
  background: var(--accent);
}
.vm-dot--gold {
  background: var(--gold);
}
.vm-box ul li {
  color: var(--text-mid);
  font-size: 0.83rem;
  padding: 3px 0 3px 18px;
  position: relative;
}
.vm-box ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* ═══════════════════════════════════
   SERVICES GRID
═══════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 22px;
  transition: all 0.32s;
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent-lt);
}
.svc-card__icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--ic, #ebf5fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.25s;
}
.svc-card:hover .svc-card__icon-wrap {
  transform: scale(1.1) rotate(-4deg);
}
.svc-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 16px;
}
.svc-card__link {
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-card__link:hover {
  gap: 10px;
  color: var(--navy);
}

/* ═══════════════════════════════════
   WHY SECTION
═══════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why__content h2 {
  margin: 10px 0 16px;
}
.why__content p {
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 134, 193, 0.12);
  border: 1px solid rgba(46, 134, 193, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.why__media {
  position: relative;
}
.why__media img {
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  width: 100%;
}
.why__exp-badge {
  position: absolute;
  bottom: -28px;
  left: -24px;
  background: var(--gold);
  border-radius: var(--r);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212, 172, 13, 0.35);
}
.why__exp-num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.why__exp-lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 31, 60, 0.7);
  line-height: 1.4;
  margin-top: 4px;
}

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
  position: relative;
  background: linear-gradient(
    140deg,
    var(--navy) 0%,
    var(--blue) 50%,
    var(--accent) 100%
  );
  padding: 80px 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
}
.cta-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 172, 13, 0.1) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
}
.cta-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(93, 173, 226, 0.15) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: 50px;
}
.cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-section__text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  margin-bottom: 10px;
}
.cta-section__text p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

/* ═══════════════════════════════════
   INDUSTRIES
═══════════════════════════════════ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px 12px;
  text-align: center;
  cursor: default;
  transition: all 0.28s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ind-card:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.ind-card:hover span {
  filter: brightness(10) grayscale(1);
}
.ind-card__icon {
  font-size: 2rem;
  transition: transform 0.25s;
}
.ind-card:hover .ind-card__icon {
  transform: scale(1.15);
}
.ind-card > span:last-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}
.ind-card:hover > span:last-child {
  color: #fff;
}

/* ═══════════════════════════════════
   BLOG
═══════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.blog-card__img {
  height: 190px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.blog-card__cat {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.blog-card__body {
  padding: 24px;
}
.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-lt);
  display: block;
  margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════
   TOOLS
═══════════════════════════════════ */
.tools-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 52px;
}
.tool-item {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b0bec5;
  transition: all 0.3s;
  line-height: 1.3;
  text-align: center;
}
.tool-item strong {
  font-weight: 900;
}
.tool-item:hover {
  color: var(--navy);
  transform: scale(1.08);
}
.tool-gusto {
  font-size: 1.7rem;
  font-weight: 900;
  font-style: italic;
  color: #c5cdd4;
}
.tool-gusto:hover {
  color: #e8484a;
}
.tool-qb:hover {
  color: #2ca01c;
}
.tool-xero:hover {
  color: #13b5ea;
}
small {
  font-size: 0.65rem;
  font-weight: 400;
  display: block;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 70px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
}
.footer__logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.footer__logo span {
  color: var(--gold);
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  max-width: 240px;
  line-height: 1.7;
}
.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer__badge {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.footer__col ul li {
  margin-bottom: 8px;
}
.footer__col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__col ul li a::before {
  content: "›";
  color: var(--accent-lt);
  font-size: 1rem;
}
.footer__col ul li a:hover {
  color: #fff;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.footer__ci a {
  color: rgba(255, 255, 255, 0.6);
}
.footer__ci a:hover {
  color: var(--accent-lt);
}
.footer__bottom {
  background: rgba(0, 0, 0, 0.32);
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════ */
.page-hero {
  background: linear-gradient(
    140deg,
    var(--navy) 0%,
    var(--blue) 60%,
    var(--accent) 100%
  );
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero h1 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb strong {
  color: rgba(255, 255, 255, 0.88);
}

/* ═══════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   ABOUT PAGE – TEAM
═══════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.team-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
}
.team-card__body {
  padding: 26px;
}
.team-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.team-card__body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.cert-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.cert {
  background: #ebf5fb;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

/* ═══════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════ */
.sb-block {
  margin-bottom: 56px;
}
.sb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
}
.sb-inner.flip {
  direction: rtl;
}
.sb-inner.flip > * {
  direction: ltr;
}
.sb-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.sb-body {
  padding: 44px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sb-num {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sb-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.sb-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-body ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.sb-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.cinfo-box {
  background: var(--blue);
  border-radius: var(--r);
  padding: 40px 32px;
}
.cinfo-box h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cinfo-box > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.ci-icon {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.ci-info strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
  margin-bottom: 2px;
}
.ci-info span,
.ci-info a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}
.ci-info a:hover {
  color: #fff;
}
.cform-wrap {
  background: #fff;
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh);
}
.cform-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.fg label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.fg input,
.fg textarea,
.fg select {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.12);
}
.fg textarea {
  height: 120px;
  resize: vertical;
}
.form-success {
  display: none;
  background: #e8f8f0;
  border: 1px solid #b7dfcd;
  color: #1d6d3a;
  padding: 13px 18px;
  border-radius: var(--r-sm);
  margin-top: 14px;
  font-size: 0.88rem;
}
.map-wrap {
  margin-top: 56px;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--r);
  box-shadow: var(--sh);
}

/* ═══════════════════════════════════
   BLOG PAGE
═══════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bpc {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.bpc:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.bpc__img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.bpc__body {
  padding: 28px;
}
.bpc__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.bpc__cat {
  background: #ebf5fb;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bpc__date {
  font-size: 0.78rem;
  color: var(--text-lt);
}
.bpc h2 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.38;
}
.bpc p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sw {
  background: #fff;
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
}
.sw h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.rp {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rp:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rp__title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.rp__date {
  font-size: 0.75rem;
  color: var(--text-lt);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  background: var(--bg);
  color: var(--text-mid);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.sw-cta {
  background: var(--blue);
  border-radius: var(--r);
  padding: 26px;
}
.sw-cta h4 {
  color: #fff;
  border-bottom-color: var(--gold);
}
.sw-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 100px;
  }
  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__sub,
  .hero__trust {
    max-width: 100%;
  }
  .hero__right {
    justify-content: center;
  }
  .about__grid,
  .why__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about__media,
  .why__media {
    max-width: 560px;
    margin: 0 auto;
  }
  .about__floating-tag {
    left: 0;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .sb-inner {
    grid-template-columns: 1fr;
  }
  .sb-inner.flip {
    direction: ltr;
  }
  .sb-img {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .nav.open {
    display: flex;
  }
  .nav__link {
    padding: 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .header__cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .statsbar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .statsbar__divider:nth-child(2) {
    display: none;
  }
  .statsbar__divider:nth-child(4) {
    left: 50%;
  }
  .statsbar__divider:nth-child(6) {
    display: none;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .vm-cols {
    grid-template-columns: 1fr;
  }
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .stat-cards {
    gap: 10px;
  }
  .stat-card {
    min-width: 130px;
    padding: 18px 18px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cards {
    gap: 8px;
  }
  .stat-card {
    padding: 14px 14px;
    min-width: 110px;
  }
  .stat-card__num {
    font-size: 1.8rem;
  }
  .tools-row {
    gap: 28px;
  }
}
