/* ============================================
   HEARIZAN — PREMIUM LANDING PAGE STYLES
   Built on top of style.css base
   ============================================ */

:root {
  --hero-bg: #F7FAFE;
  --soft-blue: #EBF3FB;
  --soft-teal: #DEF5F8;
  --ink: #0B1E33;
  --ink-2: #2D3F54;
  --ink-3: #5C6F85;
  --line: #E5EDF5;
  --shadow-soft: 0 1px 3px rgba(10, 91, 176, 0.04), 0 8px 32px rg.ba(10, 91, 176, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 91, 176, 0.08), 0 16px 48px rgba(10, 91, 176, 0.12);
  --shadow-lg: 0 12px 32px rgba(10, 91, 176, 0.12), 0 32px 80px rgba(10, 91, 176, 0.18);
}

body.landing {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.landing h1, body.landing h2, body.landing h3, body.landing h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Override navbar logo styles for the image */
.navbar-logo-img {
  height: 43px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 7rem 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #F7FAFE 0%, #FFFFFF 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1BAFC4 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0A5BB0 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  opacity: 0.3;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 91, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 91, 176, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem ;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(27, 175, 196, 0.08);
  border: 1px solid rgba(27, 175, 196, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0E6FCC;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1BAFC4;
  box-shadow: 0 0 0 4px rgba(27, 175, 196, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(27, 175, 196, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(27, 175, 196, 0); }
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.hero-title-accent {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  height: 62px;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.35s ease, border-color 0.35s ease;
}
/* Sliding fill (entered from right) */
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.btn-hero:hover::before {
  transform: translateX(0);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 91, 176, 0.25), 0 1px 2px rgba(10, 91, 176, 0.15);
}
.btn-hero-primary::before {
  background: linear-gradient(135deg, #084d96 0%, #159BAE 100%);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 91, 176, 0.35), 0 1px 2px rgba(10, 91, 176, 0.15);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.btn-hero-ghost::before {
  background: #0A5BB0;
}
.btn-hero-ghost:hover {
  color: #fff;
  border-color: #0A5BB0;
}

.btn-hero-white {
  background: #fff;
  color: #0A5BB0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-hero-white::before {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
}
.btn-hero-white:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-hero-outline-white::before {
  background: rgba(255, 255, 255, 0.25);
}
.btn-hero-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.play-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: var(--soft-blue);
}
.hero-trust-avatars img:first-child { margin-left: 0; }
.hero-trust-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.hero-trust-text {
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.hero-trust-text strong { color: var(--ink); }

/* ===== Hero Visual (Right side) — Phone Mockup ===== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
}

/* Decorative glowing blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.hero-blob-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(27, 175, 196, 0.5) 0%, transparent 70%);
  top: -40px;
  right: -80px;
}
.hero-blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(10, 91, 176, 0.4) 0%, transparent 70%);
  bottom: -40px;
  left: -80px;
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  background: #0B1E33;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 24px 60px -12px rgba(10, 91, 176, 0.4),
    0 40px 80px -20px rgba(10, 91, 176, 0.25);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0B1E33;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  background: linear-gradient(180deg, #F7FAFE 0%, #FFFFFF 60%);
  border-radius: 32px;
  padding: 2.25rem 0.875rem 0.875rem;
  overflow: hidden;
  min-height: auto;
}

/* App content */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.25rem;
}
.app-greeting-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.app-greeting-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--soft-blue);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 91, 176, 0.15);
}
.app-avatar img { width: 100%; height: 100%; }

/* Next visit card */
.app-next-card {
  background: linear-gradient(135deg, #0A5BB0 0%, #0E6FCC 50%, #1BAFC4 100%);
  border-radius: 16px;
  padding: 1rem;
  color: #fff;
  margin-bottom: 0.875rem;
  position: relative;
  overflow: hidden;
}
.app-next-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.app-next-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 0.625rem;
  position: relative;
}
.app-next-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7DDDF0;
  box-shadow: 0 0 0 3px rgba(125, 221, 240, 0.3);
  animation: pulse 2s infinite;
}
.app-next-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  position: relative;
}
.app-next-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  position: relative;
}
.app-next-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-top: 0.75rem;
  overflow: hidden;
  position: relative;
}
.app-next-progress-bar {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #7DDDF0, #fff);
  border-radius: 999px;
  animation: progress-fill 3s ease-in-out infinite;
}
@keyframes progress-fill {
  0%, 100% { width: 65%; }
  50% { width: 78%; }
}
.app-next-status {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
  position: relative;
}

/* Stats row */
.app-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}
.app-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.625rem 0.5rem;
  text-align: center;
}
.app-stat-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.app-stat-label {
  font-size: 0.625rem;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 600;
}

/* Audiogram preview */
.app-chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
}
.app-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.app-chart-badge {
  font-size: 0.625rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.app-chart-svg {
  width: 100%;
  height: 50px;
  display: block;
}
.ping-circle {
  animation: ping-circle 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes ping-circle {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* Floating accent cards */
.hero-accent {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  z-index: 3;
}

.hero-accent-1 {
  top: 22%;
  left: -64px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  animation: float 5s ease-in-out infinite;
  z-index: 4;
}
.hero-accent-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-accent-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hero-accent-sub {
  font-size: 0.6875rem;
  color: var(--ink-3);
}

.hero-accent-2 {
  bottom: 8%;
  right: -64px;
  padding: 0.875rem 1rem;
  max-width: 200px;
  animation: float 5s ease-in-out infinite;
  animation-delay: -2.5s;
  z-index: 4;
}
.hero-accent-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.375rem;
}
.hero-accent-quote {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.hero-accent-author {
  font-size: 0.6875rem;
  color: var(--ink-3);
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* ===== Trust Strip ===== */
.trust-strip {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: #fff;
}
.trust-strip-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust-logo {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-3);
  opacity: 0.6;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0A5BB0 0%, #0E6FCC 50%, #1BAFC4 100%);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}
.stats-band-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.stats-band-item {
  text-align: center;
  color: #fff;
}
.stats-band-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stats-band-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.stats-band-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  margin-bottom: 3rem;
}
.section-head-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1BAFC4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.875rem;
}
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
}
.section-sub {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 6rem 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(10, 91, 176, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(10, 91, 176, 0.15);
}
.service-card:hover .service-card-icon {
  background: rgba(27, 175, 196, 0.18);
}
.service-card:hover .service-card-link {
  color: #1BAFC4;
}
.service-card-featured {
  background: #fff;
  border-color: rgba(10, 91, 176, 0.2);
  box-shadow: 0 4px 16px -4px rgba(10, 91, 176, 0.06);
}
.service-card-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(10, 91, 176, 0.08);
  color: #0A5BB0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 175, 196, 0.1);
  color: #1BAFC4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B1E33;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-card-desc {
  font-size: 0.9375rem;
  color: #5C6F85;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-top: 1px solid #E5EDF5;
  margin-bottom: 0.875rem;
}
.service-card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0B1E33;
  letter-spacing: -0.01em;
}
.service-card-duration {
  font-size: 0.75rem;
  color: #5C6F85;
  background: #F7FAFE;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A5BB0;
  text-decoration: none;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link:hover { color: #1BAFC4; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 6rem 0;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(27, 175, 196, 0.08) 0%, transparent 70%);
  top: -300px;
  right: -300px;
  pointer-events: none;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.how-steps {
  margin: 2.5rem 0;
}
.how-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.how-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.how-step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 91, 176, 0.3);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.how-step-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.how-step-content p {
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.6;
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* ===== How Visual (Mock browser) ===== */
.how-visual {
  position: relative;
}
.how-visual img {
  border-radius: 20px;
}
.how-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.how-visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(27, 175, 196, 0.3) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.how-visual-inner {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.how-visual-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--hero-bg);
}
.how-visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5EDF5;
}
.how-visual-dot:first-child { background: #FF5F57; }
.how-visual-dot:nth-child(2) { background: #FFBD2E; }
.how-visual-dot:nth-child(3) { background: #28CA42; }
.how-visual-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-3);
  font-weight: 500;
}
.how-visual-body { padding: 1.5rem; }
.how-mock-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background: var(--hero-bg);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.how-mock-step.active {
  background: linear-gradient(135deg, rgba(10, 91, 176, 0.05), rgba(27, 175, 196, 0.08));
  border: 1px solid rgba(27, 175, 196, 0.2);
}
.how-mock-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-mock-check.active {
  background: linear-gradient(135deg, #0A5BB0, #1BAFC4);
}
.how-mock-text { display: flex; flex-direction: column; }
.how-mock-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.how-mock-text span {
  font-size: 0.75rem;
  color: var(--ink-3);
}
.how-mock-btn {
  width: 100%;
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
  border: none;
  padding: 0.875rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: transform 0.15s;
}
.how-mock-btn:hover { transform: translateY(-1px); }

/* ============================================
   WHY CHOOSE US (Bento Grid)
   ============================================ */
.why-section {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 175, 196, 0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

/* Clean 3-col grid (replaces bento) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.why-card {
  background: #fff;
  border: 1px solid #E5EDF5;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.why-card:hover {
  border-color: rgba(10, 91, 176, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(10, 91, 176, 0.1);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(27, 175, 196, 0.1);
  color: #1BAFC4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1E33;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.9375rem;
  color: #5C6F85;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Bento Grid Layout (3 cols × 3 rows) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  position: relative;
}

.bento-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Large featured card spans 2 cols × 1 row */
.bento-large {
  grid-column: span 2;
  grid-row: 1;
  background: linear-gradient(135deg, #0A5BB0 0%, #0E6FCC 50%, #1BAFC4 100%);
  border-color: transparent;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}
.bento-illustration {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.bento-circle-1 { width: 100%; height: 100%; }
.bento-circle-2 { width: 75%; height: 75%; border-color: rgba(255, 255, 255, 0.3); }
.bento-circle-3 { width: 50%; height: 50%; border-color: rgba(255, 255, 255, 0.5); animation: spin 30s linear infinite; }
.bento-circle-3::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.bento-icon-large {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.bento-large .bento-content { color: #fff; }
.bento-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  color: #fff;
}
.bento-large h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  color: #fff;
}
.bento-large p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.bento-stats-inline {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.bento-stats-inline > div { display: flex; flex-direction: column; }
.bento-stats-inline strong {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bento-stats-inline span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Small cards */
.bento-small h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.bento-small p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.55;
}
.bento-icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.bento-icon-pill.teal { background: rgba(27, 175, 196, 0.12); color: #1BAFC4; }
.bento-icon-pill.navy { background: rgba(10, 91, 176, 0.12); color: #0A5BB0; }
.bento-icon-pill.purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.bento-icon-pill.amber { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.bento-teal {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(180deg, #fff 0%, #F0FBFD 100%);
}

.bento-navy {
  grid-column: 1;
  grid-row: 2;
  background: linear-gradient(180deg, #fff 0%, #F0F7FE 100%);
}
.bento-equipment-visual {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 1.25rem;
}
.equipment-bar {
  flex: 1;
  background: linear-gradient(180deg, #1BAFC4 0%, #0A5BB0 100%);
  border-radius: 4px;
  height: var(--h);
  animation: grow 1.5s ease-out;
}
@keyframes grow {
  from { height: 0; }
  to { height: var(--h); }
}

/* Portal medium card spans 2 cols on bottom row */
.bento-portal {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #FAFAFE 0%, #F4F2FE 100%);
  border-color: rgba(139, 92, 246, 0.15);
}
.bento-portal .bento-content { min-width: 0; }
.bento-portal h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}
.bento-portal p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.bento-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.2s;
}
.bento-link:hover { color: #7c3aed; }
.bento-portal-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.875rem;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
}
.bento-portal-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.bento-portal-row:last-child { border-bottom: none; }
.bento-portal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bento-portal-dot.teal { background: #1BAFC4; box-shadow: 0 0 0 3px rgba(27, 175, 196, 0.2); }
.bento-portal-dot.success { background: #10b981; }
.bento-portal-dot.warning { background: #f59e0b; }
.bento-portal-text { display: flex; flex-direction: column; min-width: 0; }
.bento-portal-text span {
  font-size: 0.625rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.bento-portal-text strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}

/* Pricing card */
.bento-pricing {
  grid-column: 3;
  grid-row: 2;
  background: linear-gradient(180deg, #fff 0%, #FFF9EE 100%);
}
.bento-price-strip {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.bento-price-strip > div {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.25rem;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 8px;
}
.bento-price-strip span {
  display: block;
  font-size: 0.625rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 2px;
}
.bento-price-strip strong {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #d97706;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-large { grid-column: 1 / -1; grid-row: auto; grid-template-columns: 1fr; }
  .bento-illustration { height: 180px; }
  .bento-teal, .bento-navy, .bento-pricing { grid-column: auto; grid-row: auto; }
  .bento-portal { grid-column: 1 / -1; grid-row: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-portal { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS — Modern Equal-Height Grid
   ============================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 91, 176, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 175, 196, 0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}

/* Header section */
.t-head-modern {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  position: relative;
}
.t-head-modern .section-eyebrow,
.t-head-modern .section-title {
  text-align: center;
}
.t-head-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-3);
  margin-bottom: 2rem;
}

/* Rating pills row */
.t-rating-pills {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.t-rating-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  border-right: 1px solid var(--line);
}
.t-rating-pill:last-child { border-right: none; }
.t-rating-pill strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.t-rating-pill > div { display: flex; flex-direction: column; align-items: flex-start; }
.t-rating-pill-stars {
  font-size: 0.75rem;
  color: #FFD15A;
  letter-spacing: -1px;
  margin-bottom: 1px;
}
.t-rating-pill > div span {
  font-size: 0.6875rem;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.t-rating-pill-total {
  background: linear-gradient(135deg, #0A5BB0 0%, #1BAFC4 100%);
  color: #fff;
}
.t-rating-pill-total strong { color: #fff; }
.t-rating-pill-total span { color: rgba(255, 255, 255, 0.85); }

/* Cards grid - 3 equal columns */
.t-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.t-card-modern {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
}
.t-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(10, 91, 176, 0.18);
  border-color: rgba(10, 91, 176, 0.15);
}

/* Featured card with gradient background */
.t-card-modern-featured {
  background: linear-gradient(135deg, #0A5BB0 0%, #0E6FCC 50%, #1BAFC4 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 36px -8px rgba(10, 91, 176, 0.35);
}
.t-card-modern-featured::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.t-card-modern-featured::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

/* Quote mark in top right */
.t-card-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(10, 91, 176, 0.08);
  pointer-events: none;
  z-index: 0;
}
.t-card-modern-featured .t-card-quote-mark {
  color: rgba(255, 255, 255, 0.18);
}

/* Stars */
.t-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Quote text - takes available space */
.t-card-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.t-card-modern-featured .t-card-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Footer with avatar */
.t-card-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.t-card-modern-featured .t-card-foot {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.t-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-blue);
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 91, 176, 0.12);
}
.t-card-modern-featured .t-card-avatar {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.t-card-author {
  flex: 1;
  min-width: 0;
}
.t-card-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-card-modern-featured .t-card-author strong { color: #fff; }
.t-card-author span {
  font-size: 0.75rem;
  color: var(--ink-3);
}
.t-card-modern-featured .t-card-author span {
  color: rgba(255, 255, 255, 0.7);
}
.t-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.t-card-verified svg { color: #fff; }

@media (max-width: 1024px) {
  .t-grid-modern { grid-template-columns: 1fr 1fr; }
  .t-card-modern-featured { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .t-grid-modern { grid-template-columns: 1fr; }
  .t-card-modern-featured { grid-column: auto; }
  .t-rating-pills { flex-wrap: wrap; }
  .t-rating-pill { flex: 1 1 calc(50% - 0px); border-bottom: 1px solid var(--line); }
  .t-rating-pill:nth-child(2n) { border-right: none; }
  .t-rating-pill:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .t-rating-pill { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .t-rating-pill:last-child { border-bottom: none; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 6rem 0;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.faq-intro .section-eyebrow,
.faq-intro .section-title,
.faq-intro .section-sub {
  text-align: left;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-intro .btn { margin-top: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--hero-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  background: #fff;
  border-color: rgba(10, 91, 176, 0.15);
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: #0A5BB0; }
.faq-chevron {
  transition: transform 0.3s;
  color: var(--ink-3);
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: #0A5BB0; }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CTA SECTION — Premium
   ============================================ */
.cta-section {
  padding: 4rem 0 6rem;
  background: #fff;
}
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #042B57 0%, #0A5BB0 35%, #0E6FCC 70%, #1BAFC4 100%);
  border-radius: 32px;
  padding: 5rem 3rem;
  overflow: hidden;
  text-align: center;
  box-shadow:
    0 24px 60px -12px rgba(10, 91, 176, 0.4),
    0 50px 100px -20px rgba(10, 91, 176, 0.25);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(27, 175, 196, 0.5);
  top: -150px;
  left: -150px;
  animation: cta-glow-pulse 8s ease-in-out infinite;
}
.cta-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -100px;
  right: -100px;
  animation: cta-glow-pulse 8s ease-in-out infinite;
  animation-delay: -4s;
}
.cta-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(125, 221, 240, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Floating decorative elements - positioned in corners, away from content */
.cta-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}
.cta-floating-1 {
  top: 12%;
  left: 6%;
  animation: cta-float 6s ease-in-out infinite;
}
.cta-floating-2 {
  top: 12%;
  right: 6%;
  animation: cta-float 6s ease-in-out infinite;
  animation-delay: -2s;
}
.cta-floating-3 {
  bottom: 14%;
  right: 8%;
  animation: cta-float 6s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes cta-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.cta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7DDDF0;
  box-shadow: 0 0 0 4px rgba(125, 221, 240, 0.25);
  animation: pulse 2s infinite;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-title-accent {
  background: linear-gradient(135deg, #B8EEF7 0%, #fff 50%, #B8EEF7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(184, 238, 247, 0.3);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

/* Trust indicators below CTA */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.cta-trust-item svg { color: #7DDDF0; }

@media (max-width: 768px) {
  .cta-card { padding: 3.5rem 1.75rem; border-radius: 24px; }
  .cta-floating-1, .cta-floating-2, .cta-floating-3 { display: none; }
  .cta-trust { gap: 1.25rem; }
}

/* ============================================
   FOOTER overrides for the new logo
   ============================================ */
body.landing .footer {
  background: linear-gradient(180deg, #042B57 0%, #0A5BB0 100%);
}
body.landing .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
body.landing .footer-legal {
  display: flex;
  gap: 1.5rem;
}
body.landing .footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
body.landing .footer-legal a:hover { color: #fff; }

body.landing .footer-social {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
}
body.landing .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}
body.landing .footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container,
  .how-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { min-height: auto; max-width: 360px; margin: 0 auto; }
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stats-band-divider { display: none; }
  .faq-intro { position: static; }
}
@media (max-width: 640px) {
  .hero { padding-top: 5rem; }
  .hero-accent-1 { left: -16px; padding: 0.5rem 0.75rem; }
  .hero-accent-2 { right: -16px; max-width: 170px; padding: 0.75rem; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .services-section, .how-section, .why-section, .testimonials-section, .faq-section, .cta-section {
    padding: 4rem 0;
  }
  .cta-card { padding: 2.5rem 1.5rem; border-radius: 20px; }
  .trust-logos { gap: 1.25rem; }
  .trust-logo { font-size: 0.8125rem; }
}


/* ============================================
   TESTIMONIALS SWIPER SLIDER
   ============================================ */
.t-swiper-wrap {
  position: relative;
  padding: 0 0 4.5rem;
}
.testimonials-swiper {
  overflow: visible;
  padding-bottom: 0.5rem;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonials-swiper .swiper-slide .t-card-modern {
  width: 100%;
  margin: 0;
}

/* Wrapper for dots + arrows at bottom center */
.swiper-arrow-dots-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}

/* Pagination dots - now in the middle */
.testimonials-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  transform: none !important;
  order: 2; /* middle */
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  margin: 0 !important;
  transition: all 0.25s ease;
  border-radius: 999px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0A5BB0, #1BAFC4);
}

/* Navigation arrows - split to either side of dots */
.testimonials-prev,
.testimonials-next {
  position: static !important;
  top: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: 44px !important;
  height: 44px !important;
  background: #fff;
  border: 1px solid #E5EDF5;
  border-radius: 999px;
  color: #0A5BB0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px -4px rgba(10, 91, 176, 0.12);
  flex-shrink: 0;
}
.testimonials-prev:hover, .testimonials-next:hover {
  background: #0A5BB0;
  color: #fff;
}

.testimonials-prev { order: 1; } /* left side */
.testimonials-next { order: 3; } /* right side */

.testimonials-prev:hover,
.testimonials-next:hover {

  transform: scale(1.05) !important;
}

/* Hide default Swiper arrow pseudo content */
.testimonials-prev::after,
.testimonials-next::after {
  display: none;
}

.testimonials-prev.swiper-button-disabled,
.testimonials-next.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.swiper-button-next svg, .swiper-button-prev svg{
  width: 60% !important;
}

/* Mobile - hide arrows, only show dots */
@media (max-width: 768px) {
  .testimonials-prev,
  .testimonials-next {
    display: none !important;
  }
  .swiper-arrow-dots-wrapper {
    margin-top: 1.5rem;
  }
  .testimonials-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}
.footer-col h4 {
    color: white !important;
}