:root {
  --royal-navy: #1a2f5c;
  --royal-blue: #243b6b;
  --soft-blue: #eef2f8;
  --royal-red: #d62828;
  --royal-red-dark: #b91c1c;
  --light-red: #fdecec;
  --ink: #111111;
  --muted: #5c6470;
  --border: #e4e8ef;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --shadow: 0 18px 45px rgba(26, 47, 92, 0.10);
  --shadow-soft: 0 12px 30px rgba(26, 47, 92, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  padding-top: 82px;
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

main {
  overflow-x: clip;
}

body.mobile-cta-padding {
  padding-bottom: 74px;
}

a {
  color: var(--royal-blue);
  text-decoration: none;
}

a:hover {
  color: var(--royal-red);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--royal-navy);
  color: #fff;
  border-radius: 10px;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 237, 245, 0.85);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(8, 43, 95, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.navbar {
  min-height: 82px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.12);
}

.brand-text {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--royal-navy);
  font-size: 0.98rem;
}

@media (min-width: 1200px) {
  .brand-text {
    font-size: 1.02rem;
  }
}

.site-header .nav-link {
  font-weight: 650;
  color: #24415f;
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 0.5rem 0.62rem !important;
}

@media (min-width: 1200px) {
  .site-header .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.72rem !important;
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--royal-red);
  background: var(--light-red);
}

.btn {
  border-radius: 999px;
  font-weight: 750;
  padding-inline: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-navy), var(--royal-red));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(26, 47, 92, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-red-dark));
  border-color: transparent;
}

.btn-outline-primary {
  color: var(--royal-navy);
  border-color: rgba(26, 47, 92, 0.28);
  background: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--royal-navy);
  border-color: var(--royal-navy);
  color: #fff;
}

.btn-success {
  background: linear-gradient(135deg, #128c7e, #25d366);
  border: 0;
}

.hero-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(214, 40, 40, 0.08), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(26, 47, 92, 0.10), transparent 30%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 78%);
}

.min-vh-lg-100 {
  min-height: calc(100vh - 82px);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-shape-one {
  width: 320px;
  height: 320px;
  background: rgba(214, 40, 40, 0.10);
  top: 16%;
  left: -120px;
}

.hero-shape-two {
  width: 260px;
  height: 260px;
  background: rgba(26, 47, 92, 0.10);
  bottom: 5%;
  right: -90px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--royal-red);
  background: var(--light-red);
  border: 1px solid rgba(214, 40, 40, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-section h1,
.section-title {
  letter-spacing: -0.055em;
  color: var(--royal-navy);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-section .lead {
  max-width: 650px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

.action-buttons .btn {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0.62rem 1.1rem;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.action-buttons .btn i {
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .action-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .action-buttons .btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .action-buttons .btn {
    flex: 0 1 auto;
    min-width: 8.5rem;
    font-size: 0.9rem;
    padding: 0.68rem 1.2rem;
  }
}

.action-buttons-light .btn-light {
  color: var(--royal-navy);
  font-weight: 750;
}

.action-buttons-light .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.action-buttons-light .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: #25425d;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(8, 43, 95, 0.05);
}

.badge-grid i {
  color: var(--royal-red);
}

.hero-card {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff, #f5f6f9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 237, 245, 0.9);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 237, 245, 0.9);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  max-width: 245px;
}

.floating-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--light-red);
  color: var(--royal-red);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--royal-navy);
  line-height: 1.1;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-card-top {
  top: 34px;
  left: -18px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 34px;
}

.section-padding {
  padding: 96px 0;
}

.bg-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1rem;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 850;
  line-height: 1.06;
}

.section-text {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.image-stack {
  position: relative;
  overflow: hidden;
}

.logo-tile {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.logo-tile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 26px;
}

.mini-card,
.feature-card,
.support-card,
.why-card,
.contact-card,
.form-card,
.app-panel,
.disclaimer,
.accordion-item {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 18px;
  padding: 1rem;
  color: #294761;
  font-weight: 750;
}

.mini-card i {
  color: var(--royal-red);
  font-size: 1.25rem;
}

.feature-card,
.support-card,
.why-card {
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.support-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(8, 43, 95, 0.12);
  border-color: rgba(214, 40, 40, 0.28);
}

.icon-box,
.support-card i,
.why-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--light-red), var(--soft-blue));
  color: var(--royal-red);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.feature-card h3,
.support-card h3,
.why-card h3 {
  color: var(--royal-navy);
  font-size: 1.17rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.feature-card p,
.support-card p,
.why-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-list div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.05);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--light-red);
  color: var(--royal-red-dark);
  font-weight: 850;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.wellness-band {
  background:
    linear-gradient(90deg, rgba(238, 242, 248, 0.85), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 85% 35%, rgba(214, 40, 40, 0.08), transparent 28%);
}

.wellness-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.wellness-points span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: #294761;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.05);
}

.wellness-points i {
  color: var(--royal-red);
}

.app-panel-col {
  display: flex;
  justify-content: flex-end;
}

.app-panel {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 34px;
  padding: 2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 40, 40, 0.10), transparent 28%),
    linear-gradient(135deg, #fff, #eef2f8);
}

.phone-mockup {
  width: 100%;
  max-width: 310px;
  margin: 0;
  border-radius: 36px;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, var(--royal-navy), var(--royal-blue));
  color: #fff;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 60px rgba(8, 43, 95, 0.20);
  border: 8px solid #fff;
}

.phone-mockup img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 34px;
  margin: 0 auto 1.3rem;
}

.phone-mockup h3 {
  font-weight: 850;
}

.phone-mockup p {
  color: rgba(255, 255, 255, 0.78);
}

.phone-mockup a {
  align-self: center;
  color: var(--royal-navy);
  background: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
}

.cta-section {
  padding: 32px 0;
  background: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(214, 40, 40, 0.22), transparent 28%),
    linear-gradient(135deg, var(--royal-navy), var(--royal-red));
  box-shadow: var(--shadow);
}

.cta-box .section-kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.20);
}

.cta-box h2 {
  font-weight: 850;
  letter-spacing: -0.04em;
  margin: 1rem 0 0.55rem;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card,
.form-card,
.disclaimer {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  word-break: break-word;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card i {
  color: var(--royal-red);
  font-size: 1.25rem;
}

.disclaimer {
  background: var(--light-red);
  color: #7a1f1f;
  box-shadow: none;
  border-color: rgba(214, 40, 40, 0.22);
}

.form-control,
.form-select {
  border-radius: 14px;
  border-color: #dce7f1;
  min-height: 50px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--royal-red);
  box-shadow: 0 0 0 0.25rem rgba(214, 40, 40, 0.14);
}

.form-label {
  font-weight: 750;
  color: #294761;
}

.faq-accordion {
  max-width: 920px;
}

.accordion-item {
  overflow: hidden;
  border-radius: 18px !important;
  margin-bottom: 1rem;
}

.accordion-button {
  font-weight: 800;
  color: var(--royal-navy);
  padding: 1.25rem 1.35rem;
}

.accordion-button:not(.collapsed) {
  background: var(--light-red);
  color: var(--royal-navy);
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  padding: 1.25rem 1.35rem;
}

.site-footer {
  background: var(--royal-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 34px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 18px;
}

.footer-brand strong,
.site-footer h3 {
  color: #fff;
}

.site-footer h3 {
  font-size: 1rem;
  font-weight: 850;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.65rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.social-links-icons,
.social-links:not(.social-links-light) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links:not(.social-links-light) {
  margin-top: 1.25rem;
}

.site-footer .social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer .social-links a:hover {
  color: #fff;
  background: rgba(214, 40, 40, 0.35);
  transform: translateY(-2px);
}

.social-links-light .social-links-title {
  display: block;
  font-weight: 800;
  color: var(--royal-navy);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.social-links-light a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--royal-navy);
  font-size: 1.1rem;
  box-shadow: 0 8px 22px rgba(26, 47, 92, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links-light a:hover {
  color: #fff;
  background: var(--royal-navy);
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-navy), var(--royal-red));
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(26, 47, 92, 0.22);
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #fff;
  transform: translateY(-2px);
}

.back-to-top.is-visible:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  z-index: 1000;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 991.98px) {
  .floating-card-top {
    left: 12px;
  }

  .floating-card-bottom {
    right: 12px;
  }

  .logo-tile {
    right: 8px;
    bottom: 8px;
  }

  body {
    padding-top: 76px;
  }

  .navbar {
    min-height: 76px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    max-width: 205px;
    line-height: 1.15;
  }

  .min-vh-lg-100 {
    min-height: auto;
  }

  .hero-img {
    min-height: 360px;
  }

  .section-padding {
    padding: 74px 0;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-box .action-buttons {
    width: 100%;
  }
}

.site-header,
.site-header .container,
.site-footer .container {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .hero-shape-one {
    width: 220px;
    height: 220px;
    left: -70px;
  }

  .hero-shape-two {
    width: 180px;
    height: 180px;
    right: -55px;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  body {
    padding-bottom: 74px;
  }

  .display-4 {
    font-size: 2.45rem;
  }

  .hero-card {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-img {
    min-height: 320px;
    border-radius: 20px;
  }

  .floating-card {
    position: static;
    margin-top: 0.85rem;
    max-width: none;
  }

  .badge-grid span {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
  }

  .action-buttons .btn {
    width: 100%;
    white-space: normal;
  }

  .logo-tile {
    right: 10px;
    bottom: 10px;
    width: 118px;
    height: 118px;
  }

  .logo-tile img {
    width: 90px;
    height: 90px;
  }

  .wellness-points {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    display: none;
  }

  .back-to-top {
    bottom: 88px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 30px rgba(8, 43, 95, 0.10);
    z-index: 1040;
  }

  .mobile-bottom-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.7rem 0.4rem;
    color: var(--royal-navy);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-bottom-cta i {
    color: var(--royal-red);
    font-size: 1.2rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.92rem;
    max-width: 170px;
  }

  .display-4 {
    font-size: 2.15rem;
  }
}
.legal-content h2 {
  color: var(--royal-navy);
  font-size: 1.25rem;
  font-weight: 850;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.pillars-grid .feature-card h3 {
  font-size: 1.05rem;
}

.supplement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.supplement-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  color: #294761;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(26, 47, 92, 0.05);
}

.supplement-tags i {
  color: var(--royal-red);
}

.community-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.community-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--royal-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.community-stat span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.split-section {
  padding: 88px 0;
}

.split-section .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin-top: 0.85rem;
}

.split-content {
  max-width: 560px;
}

.split-section.split-reverse .split-content {
  margin-left: auto;
}

.split-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 47, 92, 0.08);
  box-shadow: 0 24px 60px rgba(26, 47, 92, 0.12);
}

.split-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(26, 47, 92, 0.28));
  pointer-events: none;
}

.split-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.split-frame.split-frame-contain::after {
  display: none;
}

.split-frame.split-frame-contain {
  background: linear-gradient(180deg, #fff, #f3f6fb);
}

.split-frame.split-frame-contain img {
  object-fit: contain;
  aspect-ratio: 16 / 10;
  max-height: 300px;
  padding: 0.85rem;
}

.split-points {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.split-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #294761;
  font-weight: 650;
  line-height: 1.45;
}

.split-points li i {
  color: var(--royal-red);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.split-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.split-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 22px rgba(26, 47, 92, 0.05);
}

.split-stat strong {
  display: block;
  color: var(--royal-navy);
  font-size: 1rem;
  line-height: 1.1;
}

.split-stat span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.whatsapp-channel-box {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 126, 0.08));
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.whatsapp-channel-box p {
  margin: 0 0 0.75rem;
  color: #1f4d3a;
  font-weight: 650;
  line-height: 1.5;
  font-size: 0.95rem;
}

.whatsapp-channel-box .btn-success {
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
}

@media (max-width: 991.98px) {
  .split-section {
    padding: 74px 0;
  }

  .split-content {
    max-width: none;
    margin-bottom: 0.5rem;
  }

  .split-section.split-reverse .split-content {
    margin-left: 0;
  }

  .split-frame img {
    max-height: 280px;
  }

  .split-frame.split-frame-contain img {
    max-height: 250px;
  }

  .app-panel-col {
    justify-content: center;
  }

  .app-panel {
    margin-left: auto;
    margin-right: auto;
  }
}
