*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #4d61d6;
  --primary-hover: #6878d6;
  --primary-pale: #eff2ff;
  --dark: #242a56;
  --dark2: #393a56;
  --white: #ffffff;
  --border: #bfd1ff;
  --text-dark: #242a56;
  --text-body: #393a56;
  --text-muted: #6878d6;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 20px rgba(36, 42, 86, 0.1);
  --shadow-md: 0 8px 32px rgba(36, 42, 86, 0.14);
  --shadow-lg: 0 16px 56px rgba(36, 42, 86, 0.18);
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--primary-pale);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  line-height: 1.2;
}
p {
  line-height: 1.75;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pageIn 0.45s ease both;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NAV */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: var(--trans);
}
#navbar.scrolled {
  background: rgba(36, 42, 86, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
#navbar:not(.scrolled) {
  background: transparent;
}
.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-eye {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(191, 209, 255, 0.4);
}
.logo-eye svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-wordmark {
  color: var(--white);
}
.logo-wordmark strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-wordmark small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links button {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--trans);
}
.nav-links button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-links button.active {
  color: #bfd1ff;
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(191, 209, 255, 0.35) !important;
}
.nav-cta:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77, 97, 214, 0.5) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 800;
  padding: 1rem;
  border-top: 1px solid rgba(191, 209, 255, 0.12);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav button,
.mobile-nav a {
  display: block;
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: var(--trans);
}
.mobile-nav button:hover,
.mobile-nav a:hover,
.mobile-nav button.active,
.mobile-nav a.active {
  background: rgba(77, 97, 214, 0.2);
  color: #bfd1ff;
}
.mobile-nav .m-cta,
.mobile-nav a.m-cta {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  margin-top: 8px;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(77, 97, 214, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(77, 97, 214, 0.25);
  margin-bottom: 1.1rem;
}
.tag-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(191, 209, 255, 0.15);
  color: #bfd1ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(191, 209, 255, 0.25);
  margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}
.center {
  text-align: center;
}
.center .section-sub {
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  font-family: "DM Sans", sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(77, 97, 214, 0.45);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 1rem;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 65% 40%,
      rgba(77, 97, 214, 0.3) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, var(--dark) 0%, #1a2044 60%, var(--dark2) 100%);
}
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: 0.18;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 209, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 209, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 97, 214, 0.18) 0%,
    transparent 70%
  );
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77, 97, 214, 0.18);
  border: 1px solid rgba(191, 209, 255, 0.3);
  color: #bfd1ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: #bfd1ff;
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero h1 em {
  font-style: italic;
  color: #bfd1ff;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(191, 209, 255, 0.15);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Playfair Display", serif;
  color: #bfd1ff;
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(191, 209, 255, 0.2);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-main-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(191, 209, 255, 0.18);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.hmc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(191, 209, 255, 0.12);
}
.hmc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.hmc-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}
.hmc-cred {
  color: rgba(191, 209, 255, 0.6);
  font-size: 0.73rem;
  margin-top: 2px;
}
.hmc-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.hmc-stat {
  background: rgba(77, 97, 214, 0.15);
  border: 1px solid rgba(191, 209, 255, 0.12);
  border-radius: 10px;
  padding: 0.9rem;
  text-align: center;
}
.hmc-stat strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
  color: #bfd1ff;
  font-weight: 700;
}
.hmc-stat small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hmc-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.hmc-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.floating-pill {
  position: absolute;
  background: rgba(36, 42, 86, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 209, 255, 0.25);
  border-radius: 100px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.fp1 {
  bottom: -20px;
  left: -20px;
  animation: floatA 3s ease-in-out infinite;
}
.fp2 {
  top: -16px;
  right: -16px;
  animation: floatB 3.5s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.fp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(77, 97, 214, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-icon svg {
  width: 14px;
  height: 14px;
  fill: #bfd1ff;
}
.fp-icon.green {
  background: rgba(34, 197, 94, 0.15);
}
.fp-icon.green svg {
  fill: #22c55e;
}
.fp-text strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}
.fp-text small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* IMAGE GALLERY STRIP */
.img-strip {
  padding: 0;
}
.img-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  height: 320px;
}
.img-strip-item {
  position: relative;
  overflow: hidden;
}
.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-strip-item:hover img {
  transform: scale(1.06);
}
.img-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36, 42, 86, 0.85) 0%,
    transparent 55%
  );
}
.img-strip-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.img-strip-label span {
  display: block;
  font-size: 0.72rem;
  color: rgba(191, 209, 255, 0.7);
  font-weight: 400;
  margin-top: 3px;
}

/* WHY CARDS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: var(--trans);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}
.why-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}
.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* VISUAL BANNER */
.visual-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.visual-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.visual-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36, 42, 86, 0.88) 0%,
    rgba(57, 58, 86, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-inner {
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}
.vb-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.vb-inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* TESTIMONIAL SLIDER */
.testi-section {
  background: var(--dark);
  padding: 6rem 0;
}
.testi-slider-outer {
  max-width: 820px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testi-track {
  display: flex;
  width: 100%;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
}
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(191, 209, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.testi-card::before {
  content: '"\\2019';
  content: open-quote;
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  justify-content: center;
  color: #ffd700;
}
.testi-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffd700;
}
.testi-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(191, 209, 255, 0.25);
}
.testi-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}
.testi-role {
  color: rgba(191, 209, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 1px;
  text-align: left;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(77, 97, 214, 0.2);
  border: 1.5px solid rgba(191, 209, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(191, 209, 255, 0.25);
  cursor: pointer;
  transition: var(--trans);
}
.dot.active {
  background: #bfd1ff;
  width: 28px;
  border-radius: 100px;
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-pale),
    var(--primary),
    var(--primary-pale)
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(77, 97, 214, 0.2);
}
.process-step h4 {
  font-size: 0.88rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.process-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 97, 214, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(77, 97, 214, 0.15) 0%,
    transparent 70%
  );
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--primary-pale);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* PLANS */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.plans-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #f5f7ff 0%, var(--white) 100%);
}
.plan-card.group-plan {
  border-color: #6878d6;
  background: linear-gradient(160deg, #f0f3ff 0%, var(--white) 100%);
}
.group-plan > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-badge.group {
  background: var(--dark);
}
.plan-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.plan-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}
.plan-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.plan-price {
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.plan-amount {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.plan-amount sup {
  font-size: 1.1rem;
  vertical-align: top;
  margin-top: 0.3rem;
  display: inline-block;
  color: var(--primary);
}
.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.discounted-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  margin-bottom: 4px;
}
.discounted-price svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.8);
}
.group-note {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
  background: var(--primary-pale);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-body);
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--primary-pale);
}
.plan-features li:last-child {
  border-bottom: none;
}
.plan-features li svg {
  width: 15px;
  height: 15px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.plan-card .btn {
  width: 100%;
  justify-content: center;
}
.compare-wrap {
  margin-top: 4rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.compare-wrap h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cmp-table th {
  background: var(--primary-pale);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.cmp-table th:not(:first-child) {
  text-align: center;
}
.cmp-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #eef1ff;
  color: var(--text-body);
}
.cmp-table td:not(:first-child) {
  text-align: center;
}
.cmp-table tr:last-child td {
  border-bottom: none;
}
.cmp-table tr:hover td {
  background: var(--primary-pale);
}
.check svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
  display: inline-block;
}
.dash {
  color: #c5cfe8;
  font-size: 1.1rem;
}

/* ABOUT */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-box {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-box img.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-placeholder {
  color: rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 2rem;
}
.about-img-placeholder svg {
  width: 80px;
  height: 80px;
  fill: rgba(191, 209, 255, 0.15);
  margin: 0 auto 1rem;
}
.about-img-placeholder p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.cred-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 1.5rem;
}
.cred-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.cred-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cred-badge {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.cred-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.signature-wrap {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sig-img-box {
  height: 80px;
  display: flex;
  align-items: center;
}
.sig-img-box img {
  max-height: 80px;
  max-width: 220px;
  object-fit: contain;
}
.sig-img-placeholder {
  height: 80px;
  width: 220px;
  border: 2px dashed rgba(77, 97, 214, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 97, 214, 0.04);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.sig-img-placeholder svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  opacity: 0.5;
}
.sig-img-placeholder span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.sig-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
}
.sig-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
  display: block;
  margin-top: 2px;
}
.about-text h2 {
  margin-bottom: 1.2rem;
}
.about-text p {
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.nbeo-journey {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 2rem;
}
.nbeo-journey h4 {
  color: #bfd1ff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.nbeo-journey p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}
.journey-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(77, 97, 214, 0.2);
  border: 1px solid rgba(191, 209, 255, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  margin-top: 1rem;
}
.journey-stat strong {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #bfd1ff;
  font-weight: 700;
}
.journey-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--trans);
}
.stat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}
.process-dark {
  background: var(--dark);
  padding: 5rem 0;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.proc-card {
  background: rgba(77, 97, 214, 0.08);
  border: 1px solid rgba(191, 209, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--trans);
}
.proc-card:hover {
  background: rgba(77, 97, 214, 0.15);
  border-color: rgba(191, 209, 255, 0.2);
}
.proc-n {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.proc-card h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.proc-card p {
  font-size: 0.85rem;
  color: rgba(191, 209, 255, 0.55);
  line-height: 1.7;
}
.wc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.wc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--trans);
}
.wc-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.wc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wc-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
.wc-item h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.wc-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ci-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
.ci-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.ci-value a {
  color: var(--primary);
  transition: var(--trans);
}
.ci-value a:hover {
  color: var(--primary-hover);
}
.faq-title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
}
.faq-item summary svg {
  width: 15px;
  height: 15px;
  fill: var(--primary);
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item[open] summary svg {
  transform: rotate(45deg);
}
.faq-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1rem;
}
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}
.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fg {
  margin-bottom: 1rem;
}
.fg label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--primary-pale);
  transition: var(--trans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(77, 97, 214, 0.12);
}
.fg textarea {
  resize: vertical;
  min-height: 120px;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z' fill='%236878D6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 24px rgba(77, 97, 214, 0.4);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 4rem 0 0;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(191, 209, 255, 0.1);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-top: 1.2rem;
  max-width: 300px;
}
.footer-links h5 {
  color: rgba(191, 209, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: "DM Sans", sans-serif;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 0.7rem;
  transition: var(--trans);
  cursor: pointer;
}
.footer-links a:hover {
  color: #bfd1ff;
}
.footer-links .disc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(77, 97, 214, 0.35);
  color: #bfd1ff;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  margin-left: 4px;
  vertical-align: middle;
}
.footer-contact-col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact-col p svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-col a {
  color: #bfd1ff;
}
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}
.soc-row {
  display: flex;
  gap: 6px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(77, 97, 214, 0.15);
  border: 1px solid rgba(191, 209, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}
.soc-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.soc-btn svg {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.5);
}
.soc-btn:hover svg {
  fill: var(--white);
}
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(77, 97, 214, 0.5);
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
}
#scrollTop:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}
#scrollTop svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* TESTIMONIALS PAGE */
.testimonials-page-section {
  background: var(--primary-pale);
}

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

.testimonial-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--trans);
}

.testimonial-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.testimonial-page-card .testi-stars {
  color: #ffd700;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-page-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.dark-name {
  color: var(--text-dark);
}

.dark-role {
  color: var(--text-muted);
}

.featured-testimonial {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-color: rgba(191, 209, 255, 0.2);
}

.featured-testimonial p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.featured-testimonial .dark-name {
  color: var(--white);
}

.featured-testimonial .dark-role {
  color: rgba(191, 209, 255, 0.6);
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .featured-testimonial {
    grid-column: auto;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .plans-grid,
  .plans-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .img-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .img-strip-grid .img-strip-item:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .why-grid,
  .about-intro,
  .contact-layout,
  .wc-grid,
  .stats-row,
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section,
  .page-hero {
    padding: 4rem 0 5rem;
  }
  .page-hero::after {
    height: 48px;
  }
  .group-plan > div {
    grid-template-columns: 1fr !important;
  }
  .group-plan .plan-desc {
    max-width: 100% !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .visual-banner {
    height: 340px;
  }
  .vb-inner {
    padding: 1.5rem;
    max-width: 100%;
  }
  .vb-inner h2 {
    font-size: clamp(1.7rem, 4vw, 2.2rem);
  }
  .vb-inner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .vb-inner .btn {
    width: 100%;
    max-width: 300px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .signature-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .img-strip-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .img-strip-item {
    height: 220px;
  }
  .visual-banner {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-inner {
    padding: 1.5rem 1.25rem;
  }
  .plans-grid,
  .plans-grid-bottom,
  .process-steps {
    grid-template-columns: 1fr;
  }
}
