:root {
  --brand-blue: #1268c4;
  --brand-blue-dark: #0b4f9f;
  --brand-blue-deep: #073b78;
  --brand-sky: #eaf7ff;
  --brand-gold: #f6b21a;
  --brand-gold-light: #ffe38b;
  --brand-orange: #ff7a1a;
  --brand-green: #19a85b;
  --text-main: #123052;
  --text-muted: #55667c;
  --line: #d9e9f7;
  --bg-main: #fffdf7;
  --bg-soft: #fff7df;
  --bg-soft-blue: #f0f9ff;
  --radius-lg: 26px;
  --shadow-soft: 0 14px 32px rgba(18, 104, 196, 0.10);
  --shadow-strong: 0 20px 48px rgba(18, 104, 196, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 226, 139, 0.36), transparent 34rem),
    radial-gradient(circle at top right, rgba(18, 104, 196, 0.18), transparent 32rem),
    var(--bg-main);
  line-height: 1.65;
  font-size: 16px;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--brand-blue-dark);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

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

.topbar {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue), var(--brand-orange));
  color: #ffffff;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(18, 104, 196, 0.18);
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #f7fbff, #eef7ff, #fff8e7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,104,196,0.10);
  box-shadow: 0 3px 12px rgba(18,104,196,0.06);
  z-index: 50;
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: auto;
  flex: 0 0 auto;
}

.brand img {
  filter: drop-shadow(0 8px 14px rgba(18, 104, 196, 0.18));
}

.brand strong {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--brand-blue-dark);
  font-weight: 950;
}

.brand strong span {
  color: var(--brand-orange);
}

.brand small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: var(--brand-blue-dark);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus {
  background: linear-gradient(135deg, #fff7df, #eaf7ff);
  box-shadow: 0 8px 18px rgba(18, 104, 196, 0.10);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--brand-blue-dark);
  margin-left: 12px;
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 226, 139, 0.72), transparent 19rem),
    radial-gradient(circle at 84% 24%, rgba(44, 170, 255, 0.24), transparent 23rem),
    linear-gradient(135deg, #fffdf8 0%, #fff4cf 43%, #eaf7ff 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero {
  padding: 68px 0;
}

.min-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.hero-grid,
.split,
.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 950;
  color: var(--brand-orange);
  font-size: 0.79rem;
  margin: 0 0 10px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  color: var(--brand-blue-dark);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  max-width: 900px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.18rem;
}

h1 strong {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.page-hero p,
.section-head p,
.lead {
  font-size: 1.13rem;
  color: var(--text-muted);
  max-width: 760px;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.vertical-buttons {
  flex-direction: column;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  color: #122642;
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.24);
}

.btn-outline {
  background: #ffffff;
  color: var(--brand-blue-dark);
  border-color: #bfdcf3;
  box-shadow: 0 10px 22px rgba(18, 104, 196, 0.08);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--brand-blue-dark);
  box-shadow: 0 8px 18px rgba(18, 104, 196, 0.07);
}

.hero-panel,
.form-card,
.panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #fff7df 58%, #eaf7ff);
}

.center-panel {
  text-align: center;
  max-width: 760px;
}

.section {
  padding: 72px 0;
}

.muted {
  background: linear-gradient(135deg, var(--bg-soft-blue), #fff7df);
}

.section-head {
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.two-card-stack {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold), var(--brand-orange));
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--brand-orange);
  font-weight: 950;
}

.card p {
  color: var(--text-muted);
  margin: 0 0 12px;
}

.text-link {
  font-weight: 950;
  color: var(--brand-blue-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-gold);
}

.check-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 9px 0;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 22px rgba(18, 104, 196, 0.06);
}

.faq-list summary {
  font-weight: 950;
  color: var(--brand-blue-dark);
  cursor: pointer;
}

.faq-list p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-section {
  background: linear-gradient(180deg, #ffffff, #fff7df);
}

.form-card iframe,
iframe {
  width: 100%;
  max-width: 100%;
  height: 620px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
}

.fallback {
  margin-top: 12px;
}

.micro {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal .container,
.legal-container {
  max-width: 880px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 26px;
}

.legal p,
.legal li {
  color: var(--text-muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue) 54%, var(--brand-orange));
  color: #ffffff;
  padding: 54px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band .eyebrow {
  color: var(--brand-gold-light);
}

.cta-band p {
  color: #f2f8ff;
}

.cta-band .btn-primary {
  background: #ffffff;
  color: var(--brand-blue-dark);
}

.cta-band .btn-outline {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
}

.site-footer {
  background: linear-gradient(135deg, #0b4f9f, #1268c4);
  color: #f2f8ff;
  padding: 52px 0 20px;
}

.site-footer a {
  display: block;
  color: #f2f8ff;
  text-decoration: none;
  margin: 5px 0;
}

.site-footer a:hover {
  color: var(--brand-gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #eaf7ff;
}

.footer-bottom a {
  display: inline;
}

@media (max-width: 1024px) {
  .cards,
  .two-card-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .topbar-inner {
    display: block;
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .cards,
  .two-card-stack {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-card iframe {
    height: 700px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .header-inner {
    padding: 0;
  }
}

/* Logo sizing */

.main-logo{
  width:220px !important;
  max-width:100%;
  height:auto !important;
  display:block;
}

@media (min-width:768px) and (max-width:1024px){
  .main-logo{
    width:220px !important;
  }
}

@media (max-width:620px){
  .main-logo{
    width:160px !important;
    height:auto !important;
  }
}

/* Footer */

.site-footer .container:last-child{
  color:#ffffff;
}

.site-footer .container:last-child a{
  color:#ffe38b;
  text-decoration:none;
  font-weight:700;
}

.site-footer .container:last-child a:hover{
  color:#ffffff;
}

  }
