/* ─── EXACT BRAND TOKENS ─────────────────────────── */
:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --hero-bg: #f9f2f2;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── TOP BAR ────────────────────────────────────── */
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar-contact:hover {
  color: white;
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}

.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.top-bar-social {
  display: flex;
  gap: 8px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.top-bar-social a:hover {
  background: var(--blue);
  color: white;
}

/* ─── NAVIGATION ─────────────────────────────────── */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

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

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-link.has-drop::after {
  content: " ▾";
  font-size: 9px;
}

.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(6, 119, 253, 0.35);
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: var(--hero-bg);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 90px 60px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 200px;
  margin-bottom: 28px;
  width: fit-content;
  border: 1px solid rgba(6, 119, 253, 0.2);
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-blue {
  background: var(--blue);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 200px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 119, 253, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 200px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--blue);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.btn-ghost:hover {
  background: var(--blue-light);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  white-space: nowrap;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-bg) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: 44px;
  right: 32px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  max-width: 260px;
  white-space: nowrap;
}

.hero-floating-card-2 {
  position: absolute;
  bottom: 44px;
  right: 308px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  animation-delay: 1.5s;
  max-width: 260px;
  white-space: nowrap;
}

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

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

.card-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.floating-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.floating-card-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

/* ─── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 18px 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.trust-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SHARED SECTION STYLES ──────────────────────── */
.section {
  padding: 90px 50px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.3px;
  text-transform: capitalize;
}

.section-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 520px;
  margin-top: 14px;
}

/* ─── HOW WE HELP ────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.help-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.help-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}

.help-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
  transform: translateY(-3px);
}

.help-card:hover .help-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.help-card:hover .help-card-title {
  color: white;
}

.help-card:hover .help-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

.help-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: background 0.3s;
}

.help-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.help-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s;
}

.help-card.blue {
  background: var(--blue);
  border-color: transparent;
  grid-column: span 2;
  display: flex;
  gap: 18px;
  align-items: center;
}

.help-card.blue .help-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.help-card.blue .help-card-title {
  color: white;
  margin-bottom: 4px;
}

.help-card.blue .help-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── SPECIALITIES (dark section) ───────────────── */
.specialities-section {
  background: var(--section-dark);
  padding: 90px 50px;
}

.specialities-section .section-eyebrow {
  color: #7eb3ff;
}

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

.specialities-section .section-body {
  color: rgba(255, 255, 255, 0.55);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 26px 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.spec-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.spec-card:hover {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.4);
}

.spec-card:hover::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.4);
}

.spec-card:hover .spec-abbr {
  color: rgba(255, 255, 255, 0.8);
}

.spec-card:hover .spec-desc {
  color: rgba(255, 255, 255, 0.75);
}

.spec-emoji {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.spec-abbr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 6px;
  display: block;
}

.spec-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.spec-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.spec-footer {
  margin-top: 44px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 44px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── WHY CHOOSE US ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--off-white);
  padding: 90px 50px;
}

.why-image-wrap {
  position: relative;
}

.why-image-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.why-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(6, 119, 253, 0.4);
  letter-spacing: 0.3px;
}

.why-image-stat {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: white;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.why-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.why-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 4px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 14px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.why-point:hover {
  background: var(--blue);
  border-left-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
}

.why-point:hover .why-point-icon {
  background: rgba(255, 255, 255, 0.2);
}

.why-point:hover .why-point-title {
  color: white;
}

.why-point:hover .why-point-desc {
  color: rgba(255, 255, 255, 0.75);
}

.why-point-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s;
}

.why-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.why-point-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: white;
  padding: 90px 50px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.test-grid .test-card:nth-child(4) {
  grid-column: 1 / 2;
}

.test-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}

.test-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
  transform: translateY(-3px);
}

.test-card:hover .test-quote {
  color: white;
  opacity: 0.4;
}

.test-card:hover .test-text {
  color: rgba(255, 255, 255, 0.85);
}

.test-card:hover .test-author {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.test-card:hover .test-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.test-card:hover .test-name {
  color: white;
}

.test-card:hover .test-role {
  color: rgba(255, 255, 255, 0.55);
}

.test-card.featured-test {
  background: var(--blue);
}

.test-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
}

.test-quote {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 0.6;
  margin-bottom: 14px;
  opacity: 0.3;
  transition:
    color 0.3s,
    opacity 0.3s;
}

.test-card.featured-test .test-quote {
  color: white;
}

.test-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  transition: color 0.3s;
}

.test-card.featured-test .test-text {
  color: rgba(255, 255, 255, 0.85);
}

.test-author {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s;
}

.test-card.featured-test .test-author {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s;
}

.test-card.featured-test .test-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.test-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s;
}

.test-card.featured-test .test-name {
  color: white;
}

.test-role {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  transition: color 0.3s;
}

.test-card.featured-test .test-role {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── REFER SECTION ─────────────────────────────── */
.refer-section {
  background: var(--blue);
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.refer-amount {
  font-size: 80px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin: 16px 0;
}

.refer-amount sup {
  font-size: 36px;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.refer-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

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

.refer-section .section-body {
  color: rgba(255, 255, 255, 0.7);
}

.refer-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-transform: uppercase;
}

.form-input,
.form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--blue);
  background: white;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 200px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 119, 253, 0.4);
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-section {
  background: var(--off-white);
  padding: 90px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.contact-map-wrap {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  background: #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap .form-group {
  margin-bottom: 14px;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  border-color: var(--blue);
  background: white;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 50px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.footer-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--blue);
  color: white;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-app-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.app-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* ─── REC BADGE ─────────────────────────────────── */
.rec-strip {
  background: white;
  border-top: 1px solid var(--border);
  padding: 20px 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

.rec-item img {
  height: 32px;
  opacity: 0.6;
}

.val-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.val-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.4);
}

.val-card:hover .val-icon {
  background: rgba(255, 255, 255, 0.2);
}

.val-card:hover .val-bar {
  background: rgba(255, 255, 255, 0.4);
}

.val-card:hover .val-desc {
  color: rgba(255, 255, 255, 0.75);
}

.val-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.val-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transition: background 0.3s;
}

.val-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  transition: color 0.3s;
}

.anim-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-word.in {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   SHR GROUP — RESPONSIVE / MOBILE CSS
   ═══════════════════════════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON (hidden on desktop) ─────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: var(--blue-light);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 16px 20px 24px;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer .nav-link {
  font-size: 15px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
}

.mobile-nav-drawer .nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-drawer .nav-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 200px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════════════
   TABLET (900px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .main-nav {
    padding: 0 24px;
    position: relative;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .top-bar {
    padding: 8px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 24px 48px;
  }

  .hero-image-wrap {
    height: 320px;
    order: -1;
  }

  .hero-image-wrap::before {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--hero-bg) 100%
    );
  }

  .hero-stats {
    gap: 24px;
    padding-top: 28px;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

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

  .hero-floating-card,
  .hero-floating-card-2 {
    display: none;
  }

  .trust-strip {
    padding: 14px 24px;
    gap: 16px;
  }

  .trust-sep {
    display: none;
  }

  .section {
    padding: 60px 24px;
  }

  .why-grid {
    padding: 60px 24px;
    gap: 48px;
    grid-template-columns: 1fr;
  }

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

  .help-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
  }

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

  .refer-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   MOBILE (480px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    padding: 0 16px;
    height: 68px;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
  }

  .nav-logo-text {
    font-size: 12px;
  }

  .nav-logo-text small {
    font-size: 9px;
  }

  .hero-content {
    padding: 40px 16px 36px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-image-wrap {
    height: 240px;
  }

  .stat-num {
    font-size: 24px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .btn-blue,
  .btn-ghost {
    max-width: 100%;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-items {
    gap: 10px;
  }

  .section {
    padding: 48px 20px;
  }
}

  .why-grid {
    padding: 48px 16px;
  }

  .refer-section {
    padding: 48px 16px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .help-cards-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer {
    padding: 48px 16px 24px;
  }

  .why-image-badge {
    display: none;
  }

  .section-eyebrow {
    font-size: 10px;
  }
}

[data-name="consent-checkbox"] {
  margin-top: 20px;
  display: inline-block !important;
}

[data-name="consent-checkbox"] .wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wpcf7-form .row,
.wpcf7-form p {
  margin-bottom: 0 !important;
  padding-bottom: 8px !important;
}

.wpcf7-form label {
  font-size: 11px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-transform: uppercase;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance) {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance):focus {
  border-color: var(--blue);
  background: white;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance) {
  font-size: 12px !important;
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-acceptance):focus {
  border-color: var(--blue);
  border: 1px solid var(--blue) !important;
}

.wpcf7-form .wpcf7-submit {
  display: block;
  width: 100% !important;
  padding: 15px !important;

  background: var(--blue) !important;
  color: white !important;
  border: none !important;
  border-radius: 200px !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  transition: all 0.2s !important;
  letter-spacing: 0.3px !important;
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 119, 253, 0.4);
}

.wpcf7-form p {
  padding-bottom: 0px !important;
}

/** Homepage Hero **/

.stat-num {
  color: var(--blue) !important;
}


@media screen and (max-width: 500px){
.hero-stats {
    justify-content: center;
}
}
.org-cover-card > div:last-child > div:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.18) 
    
}