/* =============== THEME (WHITE + PRIMARY BLUE) =============== */
:root {
  --bg: #ffffff; /* base canvas (light) */
  --bg-2: #f5f8ff; /* soft blue band */
  --surface: #ffffff; /* cards / panels */
  --surface-2: #f0f4fb; /* alt surface */
  --line: rgba(12, 18, 34, 0.08);

  --muted: #5c6b89; /* body text secondary */
  --text: #0c1222; /* primary text */

  --brand: #003c8a; /* primary */
  --brand-2: #2aa7ff; /* bright highlight */
  --accent: #22d3ee; /* aqua spark */

  --shadow: 0 10px 26px rgba(2, 12, 36, 0.12);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(
      1200px 600px at -20% -20%,
      rgba(0, 60, 138, 0.12),
      transparent 70%
    ),
    radial-gradient(
      1000px 500px at 110% 10%,
      rgba(42, 167, 255, 0.1),
      transparent 70%
    ),
    radial-gradient(
      800px 400px at 50% 120%,
      rgba(0, 60, 138, 0.08),
      transparent 70%
    ),
    linear-gradient(180deg, #ffffff, #f8fbff 60%, #ffffff);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =============== LAYOUT HELPERS =============== */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.section + .section {
  padding-top: 40px;
}
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head .eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--brand);
  background: linear-gradient(
    180deg,
    rgba(0, 60, 138, 0.08),
    rgba(42, 167, 255, 0.08)
  );
  border: 1px solid rgba(0, 60, 138, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 60, 138, 0.1);
}
.section-head h2 {
  margin: 14px 0 6px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
}
.section-head .lead {
  color: var(--muted);
  margin: 0 auto;
  max-width: 780px;
}

/* =============== NAVBAR (primary brand color) =============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.navcontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navlogo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand-text {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.navtoggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.navul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.navul.is-open {
  display: flex;
}
.navlink {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  opacity: 0.95;
  transition: background 0.2s ease;
}
.navlink:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
}
.navlogin {
  display: inline-block;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
  background: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.navlogin:hover {
  filter: brightness(0.96);
}

/* mobile nav */
@media (max-width: 900px) {
  .navtoggle {
    display: block;
  }
  .navul {
    position: absolute;
    top: 64px;
    right: 4vw;
    left: 4vw;
    background: linear-gradient(180deg, #003c8a, #08346f);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  .navul.is-open {
    display: flex;
  }
  .navlink {
    color: #fff;
  }
}

/* =============== HERO (old layout preserved) =============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 80px) 0 60px;
  background: var(--bg-2);
}
.hero .container {
  padding-top: clamp(28px, 5vw, 48px);
} /* breathing room under sticky nav */

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-left p {
  margin: 10px auto 16px;
  max-width: 640px;
  line-height: 1.55;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcomelogo {
  width: min(420px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}
.welcomesub {
  text-align: center;
  color: #2d4f94;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  margin: 4px auto 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 12px 16px;
  border-radius: 12px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 20px rgba(0, 60, 138, 0.28);
}
.btn-outline {
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand);
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.qr-download {
  text-align: center;
  margin: 14px 0 4px;
}
.qr-download p {
  color: var(--muted);
  margin: 6px 0 8px;
}
.qr-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7faff);
  border: 1px solid rgba(0, 60, 138, 0.14);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.stat {
  background: #fff;
  border: 1px solid rgba(0, 60, 138, 0.12);
  padding: 10px 14px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat .num {
  font-weight: 800;
  font-size: 1rem;
  color: #2a6ccc;
}
.stat .label {
  display: block;
  color: #5a6d92;
  font-size: 0.85rem;
}

/* --- Local video block (now works for <video> too) --- */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, #fff, #f5f8ff);
  border: 1px solid rgba(0, 60, 138, 0.14);
}
/* Fill for both iframe (legacy) and video (localized) */
.video-wrap iframe,
.video-wrap video,
.video-wrap .rs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* floating shapes (subtle) */
.shape {
  position: absolute;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.shape-1 {
  width: 420px;
  height: 420px;
  top: -100px;
  left: -80px;
  background: radial-gradient(
    closest-side,
    rgba(0, 60, 138, 0.25),
    transparent 65%
  );
  animation-delay: 0s;
}
.shape-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(
    closest-side,
    rgba(42, 167, 255, 0.22),
    transparent 65%
  );
  animation-delay: 3s;
}
.shape-3 {
  width: 280px;
  height: 280px;
  top: 20%;
  right: 12%;
  background: radial-gradient(
    closest-side,
    rgba(34, 211, 238, 0.18),
    transparent 65%
  );
  animation-delay: 6s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(16px) translateX(-8px) scale(1.03);
  }
}

/* =============== ABOUT (cards) =============== */
.about .about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .about .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 60, 138, 0.25);
  box-shadow: 0 16px 34px rgba(2, 12, 36, 0.14);
}
.about-card h3 {
  margin: 10px 0 6px;
  color: var(--text);
}
.about-card p {
  margin: 0;
  color: #475569;
}

.about-illustration {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f5f8ff);
  border: 1px solid rgba(0, 60, 138, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
/* If videos are placed inside about-illustration, ensure fill */
.about-illustration video,
.about-illustration .rs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============== SERVICES (light band) =============== */
.services {
  background: radial-gradient(
      900px 340px at 20% 0%,
      rgba(0, 60, 138, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 80% 0%,
      rgba(42, 167, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-2), var(--bg-2));
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}
.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 60, 138, 0.22);
  box-shadow: 0 18px 40px rgba(0, 60, 138, 0.2);
}
.service-icon {
  font-size: 1.6rem;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 60, 138, 0.12),
    rgba(42, 167, 255, 0.14)
  );
  color: #1e3a8a;
  border: 1px solid rgba(0, 60, 138, 0.2);
}
.service-card h4 {
  margin: 0 0 6px;
  color: var(--text);
}
.service-card p {
  margin: 0;
  color: #475569;
}

/* =============== TEAM (soft glass on light) =============== */
.team .team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

.member {
  text-align: center;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.member:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 60, 138, 0.22);
}
.member h5 {
  margin: 10px 0 2px;
  font-size: 1.05rem;
  color: var(--text);
}
.role {
  color: #556b8d;
  font-size: 0.9rem;
}
.links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.links a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 60, 138, 0.18);
  color: var(--brand);
  text-decoration: none;
}
.links a:hover {
  filter: brightness(1.03);
}

/* hex avatar */
.avatar {
  width: 110px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hex {
  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );
  border: 1px solid rgba(0, 60, 138, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* =============== FOOTER (light band) =============== */
.footer {
  padding: 40px 0 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #fff, #f5f8ff);
}
.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footnote {
  color: #5c6b89;
  margin-top: 6px;
}
.footer h6 {
  margin: 0 0 8px;
  color: var(--brand);
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin: 6px 0;
  color: #5c6b89;
}
.footer-links a {
  color: var(--brand);
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
  border: 1px solid rgba(0, 60, 138, 0.22);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.copyright {
  text-align: center;
  color: #5c6b89;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 20px;
  padding-top: 12px;
}

/* =============== A11y helpers for modal lock (if used) =============== */
.wm-modal-open {
  overflow: hidden;
}

#team.section {
  padding-top: 20px;
}

/* Video embed helper (legacy iframe API) */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============== SUBSCRIPTION (NEW) =============== */
.subscription {
  background: radial-gradient(
      900px 340px at 15% 0%,
      rgba(0, 60, 138, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 360px at 85% 0%,
      rgba(42, 167, 255, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-2), var(--bg-2));
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 60, 138, 0.22);
  box-shadow: 0 18px 40px rgba(0, 60, 138, 0.2);
}
.price-card.highlight {
  outline: 2px solid rgba(42, 167, 255, 0.35);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0b2a55;
  background: linear-gradient(
    180deg,
    rgba(0, 60, 138, 0.1),
    rgba(42, 167, 255, 0.12)
  );
  border: 1px solid rgba(0, 60, 138, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
}
.plan {
  margin: 8px 0 2px;
  font-size: 1.25rem;
  color: var(--text);
}
.tagline {
  margin: 0 0 10px;
  color: #5a6d92;
  font-size: 0.95rem;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features li {
  color: #475569;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.features i {
  color: #1e3a8a;
  margin-top: 2px;
}

.subscribe-form {
  margin-top: 26px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 60, 138, 0.14);
  box-shadow: var(--shadow);
}
.subscribe-form h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.subscribe-form .plan-picked {
  font-weight: 600;
  color: #0c1222;
  opacity: 0.9;
}
.subscribe-form .plan-picked.active {
  opacity: 1;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 780px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.9rem;
  color: #334155;
}
.form-field input,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 60, 138, 0.18);
  background: #fff;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #2aa7ff;
  box-shadow: 0 0 0 4px rgba(42, 167, 255, 0.15);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.disclaimer {
  margin: 10px 0 0;
  color: #5c6b89;
  font-size: 0.9rem;
}

/* --- form validation (fixed comment typo) --- */
.field-error {
  color: #b42318;
  font-size: 0.8rem;
  display: none;
  margin-top: 4px;
}
.field-error.show {
  display: block;
}
.invalid {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12) !important;
}

/* =============== GENERIC MODAL (used by sign-up / docs) =============== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}
.modal-backdrop.show {
  display: flex;
}
.modal-card {
  width: min(560px, 94vw);
  background: #fff;
  color: #0c1222;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(2, 12, 36, 0.25);
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #f4f7ff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.modal-head h3 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #003c8a;
}
.modal-close {
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.modal-body {
  padding: 18px;
}

/* Sign-up form grid inside modal */
.modal-body .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-body .form-grid .full {
  grid-column: 1 / -1;
}
.modal-body .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-body .form-field label {
  font-size: 0.9rem;
  color: #21406d;
}
.modal-body .form-field input {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #c8d5ee;
  font-family: "Inter", sans-serif;
  outline: none;
}
.modal-body .form-field input:focus {
  border-color: #003c8a;
  box-shadow: 0 0 0 3px rgba(0, 60, 138, 0.12);
}
.help {
  font-size: 0.8rem;
  color: #5c6b89;
}
.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-outline {
  border-color: #c8d5ee;
  color: #0c1222;
  background: #fff;
}
.btn-primary {
  background: #003c8a;
  color: #fff;
}
.error-text {
  color: #b42318;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}
.error-text.show {
  display: block;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
}
.checkbox-row a {
  color: #003c8a;
  text-decoration: underline;
}
.qr-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin-top: 12px;
}

/* QR image */
.qr-download .qr-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 60, 138, 0.15);
  background: #fff;
  padding: 8px;
}

/* Button styling */
.download-btn {
  background: #003c8a;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 10px;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 60, 138, 0.3);
  transition: background 0.2s ease, transform 0.1s ease;
}

.download-btn:hover {
  background: #0a4cae;
  transform: translateY(-1px);
}

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

/* =============== RESPONSIVE TWEAKS =============== */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
}

@media (max-width: 768px) {
  .qr-download .qr-img {
    width: 130px;
    height: 130px;
  }

  .download-btn {
    font-size: 14px;
    padding: 9px 18px;
  }
}

/* =============== MISSION / VISION =============== */
.mission-vision {
  position: relative;
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}

.mv-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  position: relative;
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 60, 138, 0.22);
  box-shadow: 0 18px 40px rgba(0, 60, 138, 0.18);
}

.mv-head {
  margin-bottom: 10px;
}
.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand);
  background: linear-gradient(
    180deg,
    rgba(0, 60, 138, 0.08),
    rgba(42, 167, 255, 0.08)
  );
  border: 1px solid rgba(0, 60, 138, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 60, 138, 0.1);
}
.mv-head h3 {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  color: var(--text);
}

.mv-text {
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.mv-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.mv-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
}
.mv-highlights i {
  color: #1e3a8a;
  margin-top: 2px;
}

/* soft floating shapes */
.mv-shape {
  position: absolute;
  pointer-events: none;
  filter: blur(22px);
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.mv-shape.s1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(
    closest-side,
    rgba(0, 60, 138, 0.22),
    transparent 65%
  );
}
.mv-shape.s2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -60px;
  background: radial-gradient(
    closest-side,
    rgba(42, 167, 255, 0.2),
    transparent 65%
  );
}
