:root {
  --bg-top: #f7fbff;
  --bg-bottom: #e8f7ff;
  --text: #13304f;
  --muted: #5f7388;
  --line: rgba(255, 255, 255, 0.92);
  --card: rgba(255, 255, 255, 0.76);
  --shadow: rgba(73, 126, 177, 0.17);
  --blue: #1c86f2;
  --cyan: #36c6d1;
  --navy: #123257;
  --accent: #eef8ff;
  --footer: #0e2742;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(54, 198, 209, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(28, 134, 242, 0.12), transparent 28%),
    linear-gradient(135deg, var(--bg-top), var(--bg-bottom));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  left: -4rem;
  background: rgba(99, 205, 255, 0.12);
  filter: blur(12px);
}

.site-shell::after {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  bottom: 8rem;
  background: rgba(28, 134, 242, 0.1);
  filter: blur(18px);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(247, 251, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px var(--shadow);
}

.brand strong,
.brand-footer strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand span,
.brand-footer span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-nav a,
.footer-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(112, 154, 194, 0.12);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 24px rgba(112, 154, 194, 0.15);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

.hero-section,
.section,
.page-hero {
  padding: 5rem 0;
}

.hero-grid,
.split-panel,
.support-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.cta-box h2,
.section-heading h2 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 12ch;
}

.hero-copy p,
.page-hero p,
.panel-copy p,
.policy-card p,
.faq-item p,
.feature-card p,
.page-card p,
.stat-card p,
.info-card p,
.thankyou-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy p {
  max-width: 58ch;
  margin: 1.3rem 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 28px rgba(116, 156, 199, 0.14);
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-pills,
.hero-actions,
.footer-links,
.page-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-pills {
  margin-top: 1.8rem;
}

.hero-pills span {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 30px rgba(39, 164, 233, 0.27);
}

.btn-secondary,
.btn-light {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(112, 154, 194, 0.12);
}

.btn-light {
  color: var(--navy);
}

.btn-block {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-image-frame,
.glass-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px var(--shadow);
}

.hero-showcase,
.hero-visual-badge {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px var(--shadow);
}

.hero-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: min(340px, 100%);
  padding: 1rem 1.1rem;
  border-radius: 28px;
  justify-self: end;
}

.hero-visual-badge img {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  flex: 0 0 auto;
}

.hero-visual-badge p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.hero-showcase {
  position: relative;
  padding: 1rem;
  border-radius: 38px;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(54, 198, 209, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.hero-showcase-top,
.hero-showcase-stats {
  position: relative;
  z-index: 1;
}

.hero-showcase-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-showcase-top span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-image-frame {
  position: relative;
  border-radius: 30px;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(28, 134, 242, 0.12), rgba(54, 198, 209, 0.08));
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  background: white;
}

.hero-showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-showcase-stats article {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.hero-showcase-stats p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual-badge strong,
.feature-card h3,
.page-card h3,
.stat-card strong,
.info-card h2,
.policy-card h2,
.support-form h2,
.faq-item summary,
.thankyou-card h1 {
  color: var(--navy);
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2,
.cta-box h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.feature-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.page-card,
.stat-card,
.info-card,
.policy-card,
.support-form,
.thankyou-card,
.faq-item {
  border-radius: 28px;
  padding: 1.4rem;
}

.feature-card h3,
.page-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.alt-section {
  position: relative;
}

.split-panel {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.check-list,
.plain-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.panel-card-stack {
  display: grid;
  gap: 1rem;
}

.stat-card a,
.policy-card a,
.faq-item a {
  color: var(--blue);
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(135deg, rgba(28, 134, 242, 0.14), rgba(54, 198, 209, 0.12));
}

.page-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 44px rgba(73, 126, 177, 0.2);
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #1385f2, #31c8d4);
  box-shadow: 0 24px 44px rgba(39, 164, 233, 0.28);
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: white;
}

.cta-box .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.inner-page .page-hero {
  padding-bottom: 2rem;
}

.support-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.support-info {
  display: grid;
  gap: 1rem;
}

.support-form {
  display: grid;
  gap: 1rem;
}

.support-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(147, 184, 214, 0.4);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: 2px solid rgba(28, 134, 242, 0.18);
  border-color: rgba(28, 134, 242, 0.4);
}

.policy-card + .policy-card,
.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.thankyou-card {
  max-width: 720px;
  text-align: center;
}

.thankyou-logo {
  width: 90px;
  height: 90px;
  border-radius: 28px;
  margin: 0 auto 1rem;
  box-shadow: 0 18px 30px rgba(39, 164, 233, 0.2);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(165, 193, 218, 0.34);
}

.footer-links {
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .hero-grid,
  .split-panel,
  .support-layout,
  .feature-grid,
  .page-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-grid {
    display: grid;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual-badge {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 36px rgba(112, 154, 194, 0.16);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .brand span {
    display: none;
  }

  .hero-section,
  .section,
  .page-hero {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-showcase-stats {
    grid-template-columns: 1fr;
  }

  .hero-showcase,
  .hero-visual-badge {
    border-radius: 26px;
  }
}
