html,
body {
  height: 100%;
}

/* ─── CSS Variables ───────────────────────────────── */
:root {
  --navy: #00143f;
  --teal: #63c2b7;
  --teal-lt: #22b09b;
  --gold: #e8a838;
  --cream: #e8f3f2;
  --white: #ffffff;
  --gray-200: #eae7e1;
  --gray-500: #7a7570;
  --gray-700: #3d3935;
  --red: #c0392b;

  --font-display: "Atkinson Hyperlegible", sans-serif !important;

  --font-body: "Atkinson Hyperlegible", sans-serif !important;

  --shadow-soft: 0 4px 24px rgba(13, 43, 69, 0.1);
  --shadow-card: 0 2px 12px rgba(13, 43, 69, 0.08);
  --radius: 12px;
}

/* ─── Reset ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--teal);
}

/* ─── Nav ─────────────────────────────────────────── */
nav {
    background: #0d173f;
    padding: 8px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
  height: 76px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--white);
}

/* ─── Hero ────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 15px 32px 15px;
  text-align: center;
  position: relative;

  height: calc(100% - 68px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 110%,
    rgba(26, 140, 122, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(26, 140, 122, 0.25);
  border: 1px solid rgba(26, 140, 122, 0.5);
  color: var(--teal-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  /*      font-size: clamp(2.4rem, 6vw, 3.5rem);*/
  font-size: 5.2vh;
  line-height: 1.15;
  max-width: 780px;
  margin:0 auto 2.5vh;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub, .hero-sub2 {
    font-size: 2.5vh;
    margin: 0 auto 2.5vh;
    line-height: 3.5vh;
}

.hero-sub {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
}
.hero-sub2 {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    max-width: 1080px;
}

.hero-cta-btn_mobile {
	margin-top:20px;
}

.hero-cta-btn{cursor:pointer;}

.hero-cta-btn,
.hero-cta-btn_mobile {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(26, 140, 122, 0.4);
}
.hero-cta-btn:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  color: var(--white);
}

/* ─── Wave divider ────────────────────────────────── */
.wave {
  display: block;
  width: 100%;
  margin-top: -2px;
  line-height: 0;
}
.wave svg {
  display: block;
  width: 100%;
}

/* ─── Section wrappers ────────────────────────────── */
section {
  padding: 80px 24px;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.75;
}

/* ─── What is the checklist ───────────────────────── */
.what-section {
  background: var(--white);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.what-grid .section-body {
  max-width: 100%;
}
.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}
.stat-box {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border-bottom: 3px solid var(--teal);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* Icon grid ─ checklist categories */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.icon-card {
  background: var(--cream);
  border: 1px solid #81dfd6;
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.icon-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.icon-card svg {
  width: 38px;
  height: 38px;
}
.icon-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── Why it matters ──────────────────────────────── */
.why-section {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 140, 122, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── Form section ────────────────────────────────── */
.form-section {
  background: var(--white);
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-left .section-body {
  max-width: 100%;
}
.checklist-preview {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--white);
  margin-top: 32px;
}
.checklist-preview h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}
.checklist-item:last-child {
  border-bottom: none;
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle svg {
  width: 12px;
  height: 12px;
  color: white;
}

/* Form card */
.form-card {
    background: var(--cream);
    border: 2px solid #1a8c7a;
    border-radius: 20px 0 0 20px;
    box-shadow: -3px 0px 16px #3c3c3c80;
    position: fixed;
    z-index: 999;
    top: 50%;
    right: -403px;
    width: 403px;
    padding: 20px;
    transform: translate(0%, -50%);
	border-right:none;
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 13px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 6px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 140, 122, 0.12);
}

.form-group select {
  width: 100%;
  padding: 6px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder {
  color: #b0aca5;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(26, 140, 122, 0.3);
}
.submit-btn:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
}
.submit-btn:active {
  transform: translateY(0);
}

.form-fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 14px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(26, 140, 122, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ─── Footer ──────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 32px;
  font-size: 0.85rem;
}
footer a {
  color: var(--teal-lt);
  text-decoration: none;
}

/* ─── Animations ──────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero > * {
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow {
  animation-delay: 0.1s;
}
.hero h1 {
  animation-delay: 0.22s;
}
.hero-sub {
  animation-delay: 0.34s;
}
.hero-cta-btn {
  animation-delay: 0.46s; margin-top:2vh;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .what-grid,
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 14px 20px;
  }
  section {
    padding: 20px;
  }
  .form-card {
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form_heading {
  color: #1a8c7a !important;
  margin-bottom: 30px;
  font-size: 12px !important;
  font-weight: normal;
  padding: 11px 0px;
  border-radius: 0;
  /* background: var(--navy); */
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.sec {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

select option {
  color: #000;
}

select:valid {
  color: gray;
}

input[type="checkbox"] {
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.checkbox_section {
  position: relative;
}

.checkbox_section label {
  color: #333;
  font-size: 14px;
}

.source {
    font-size: 11px;
    margin-bottom: 7px;
    color: #707070;
}
.source .sr_color,
.hero-sub2 sup,
.hero-sub2 .sr_color
 {
  color: #7fc5ba;
}


.hero-sub2 .source .sr_color{color:#1a8c7a !important; }
.hero-sub2 .source {
    margin-bottom: 6px !important;
    line-height: 18px;
 
}



.hero-sub2 sup{font-size:1.6vh;}

.form-card.fixed {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  max-width: 400px;
  border-left: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  border-right: none;
  border-top: none;
  border-radius: 0;
  bottom: 0;

  box-shadow: -3px 0px 11px #737373;
}
.form-card.fixed .scroll {
  overflow: auto;
  height: 100%;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
}

.lock_scroll {
  overflow: hidden;
}

@media (max-width: 860px) {
  footer {
    padding-bottom: 80px;
  }

  #mobile_top_button {
  
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  .hero-cta-btn.fixed {
    position: fixed;
  }

  .nav-logo img {
    height: 46px;
  }

  .hero {
    height: auto;
  }

  .form-card.fixed {
    position: static;
    width: 100%;
    max-width: none;
    border: 1px solid #ccc;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: none;
  }

  .mobile_top_btn {
    display: block !important;
  }
}

@media (max-width: 767px) {
	
	.subline{display:block !important;}
	.subline .round{top:0;}
	
  .hero h1 {
    font-size: 24px;
  }

  .hero-sub,
  .hero-sub2 {
    font-size: 14px;
    margin: 0 auto;
    margin-bottom: 10px;
    line-height: 17px;
  }

  .source {
    font-size: 9px;
    line-height: 14px;
  }

  .hero-cta-btn {
    animation-delay: 0.46s;
    margin-top: 5px;
    scale: 0.7;
  }

  .form-card {
    padding: 0;
  }
}

.btn_handle img {
    height: 17px;
    margin-left: 8px;
}
.btn_handle {
    position: absolute;
    right: 401px;
    top: 50%;
    width: 255px;
    height: 50px;
    background: url(../images/landingpage-assets/icon_list.png) no-repeat #e8f3f2;
    /* padding: 8px 8px; */
    border-radius: 115px 0 0 115px;
    z-index: 9999;
    border: 2px solid #1a8c7a;
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: -3px 0px 6px #73737394;
    display: flex;
    color: #02101c;
    font-weight: bold;
    background-size: auto 100%;
    padding-left: 30px;
    background-position: 0px center;
    font-family: arial;
    font-size: 15px;
    border-right: none;
}
.block {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.left,
.right {
  flex: 1;
  min-width: 300px;
}

/* LEFT SECTION */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  align-items: stretch;
}

.card-content {
  background: #cee6fa;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card.gray .card-content {
  background: #d9d9d9;
}

.badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.red {
  background: #c00000;
}
.green {
  background: #00b050;
}

.side-label {
  width: 120px;
  background: #2438a8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
}

.card.gray .side-label {
  background: #777;
}

.source_bottom {
  margin-top: 15px;
  font-size: 12px;
}

/* RIGHT SECTION */
.right h2 span {
  color: #3aa7a3;
}

.section {
  margin-bottom: 20px;
}

.section h3 {
  margin-bottom: 8px;
}

.section ul {
  padding-left: 18px;
}

.section ul li {
  margin-bottom: 6px;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .side-label {
    width: 100%;
  }

  .circle {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

.badge p {
  flex: 1;
}

@media (min-width: 1400px) {
  .form-card.fixed .scroll {
    padding-top: 35px;
  }
 }

@media (min-width: 1024px) {
   
   .desktop_button{display:block !important;}
   #mobile_top_button{display:none !important;}
  }
  
  @media (max-width: 1023px) {
	  
	  .btn_handle{display:none !important;}
	  
	  .form-card{border-right:2px solid #1a8c7a;}
	  
	#get-checklist {
    display: block !important;
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 30px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}
   
   .desktop_button{display:none !important;}
   #mobile_top_button{display:block !important;}
  }

@media (max-width: 1024px) {
  .block .left,
  .block .right {
    flex: 100%;
  }

  .block .right {
    margin-top: 40px;
  }

  .block {
    display: block;
  }
}

.block h2 {
  margin-bottom: 15px;
}

.section ul {
  list-style-type: square;
}


.round {
    display: inline-block;
    padding: 0;
    /* background: #e8a838; */
    /* font-size: 1.8vh; */
    color: #e8a838  !important;
    /* margin-right: 10px; */
  
    line-height: 2.6vh;
    position: relative;
    top: 0.3vh;
    font-weight: 600;
    /* border-bottom: 2px dashed #e8a838; */
    margin-right: 4px;
}

.subline {
    display: flex;
    justify-content: center;
    align-items: center;
   
}


.hero_center {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.icon-card img{height:40px;}

.why-icon img{height:27px;}