/* ========================================
   ROOT & RESET
======================================== */

:root {

  --navy: #03315B;
  --navy-dark: #021F39;

  --green: #20B878;
  --green-dark: #159766;

  --light-green: #EAF9F3;
  --light-blue: #F5FAFD;

  --text: #5F6B76;
  --border: #DFE8ED;

  --white: #FFFFFF;

}


* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


html {

  scroll-behavior: smooth;

}


body {

  font-family: Arial, sans-serif;

  color: var(--navy);

  background: white;

  line-height: 1.6;

}


a {

  text-decoration: none;

}


button {

  font-family: inherit;

}



/* ========================================
   TOPBAR
======================================== */

.topbar {

  min-height: 60px;

  padding: 0 5%;

  background: var(--navy);

  display: flex;
  align-items: center;
  justify-content: space-between;

}


.topbar-item {

  display: flex;
  align-items: center;

  gap: 9px;

  color: white;

  font-size: 14px;

}


.topbar-item i {

  color: var(--green);

  font-size: 17px;

}



/* ========================================
   HEADER
======================================== */

.main-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  background: white;

  border-bottom: 1px solid #EDF1F3;

}


.navbar {

  max-width: 1200px;

  min-height: 92px;

  margin: auto;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

}


.logo {

  display: flex;
  align-items: center;

}


.logo img {

  width: 190px;

  max-height: 60px;

  object-fit: contain;

}


.nav-links {

  display: flex;

  align-items: center;

  gap: 24px;

}


.nav-links > a,
.dropdown-title {

  color: var(--navy);

  font-size: 14px;

  font-weight: 700;

}


.nav-links > a:hover,
.dropdown-title:hover {

  color: var(--green);

}


.header-actions {

  display: flex;

  align-items: center;

  gap: 17px;

}


.quote-btn {

  padding: 13px 18px;

  background: var(--green);

  color: white;

  border-radius: 12px;

  font-size: 14px;

  font-weight: 800;

}


.menu-btn {

  display: none;

  border: none;

  background: transparent;

  color: var(--navy);

  font-size: 30px;

  cursor: pointer;

}



/* ========================================
   DROPDOWN
======================================== */

.nav-dropdown {

  position: relative;

}


.dropdown-title {

  border: none;

  background: transparent;

  cursor: pointer;

  display: flex;

  align-items: center;

  gap: 6px;

}


.dropdown-title i {

  font-size: 10px;

}


.dropdown-menu {

  position: absolute;

  top: 35px;

  left: 0;

  width: 220px;

  padding: 10px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 14px;

  box-shadow:
    0 15px 40px
    rgba(3, 49, 91, 0.12);

  display: none;

}


.nav-dropdown:hover .dropdown-menu {

  display: block;

}


.dropdown-menu a {

  display: block;

  padding: 11px 13px;

  border-radius: 8px;

  color: var(--navy);

  font-size: 13px;

  font-weight: 700;

}


.dropdown-menu a:hover,
.dropdown-menu a.active {

  color: var(--green);

  background: var(--light-green);

}



/* ========================================
   HERO
======================================== */

.health-hero {

  min-height: 650px;

  padding: 80px max(5%, 20px);

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  align-items: center;

  gap: 60px;

  background:

    radial-gradient(
      circle at 80% 45%,
      rgba(32, 184, 120, 0.16),
      transparent 30%
    ),

    linear-gradient(
      135deg,
      #F5FAFD,
      #FFFFFF
    );

}


.hero-content {

  max-width: 700px;

}


.hero-badge,
.section-label {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 18px;

  background: var(--light-green);

  color: #198D61;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 800;

}


.hero-content h1 {

  margin: 24px 0 20px;

  font-size: clamp(42px, 5vw, 65px);

  line-height: 1.08;

}


.hero-content h1 span {

  display: block;

  color: var(--green);

}


.hero-content > p {

  max-width: 650px;

  color: var(--text);

  font-size: 18px;

}


.hero-actions {

  margin-top: 32px;

  display: flex;

  gap: 15px;

}


.primary-btn,
.secondary-btn {

  min-height: 56px;

  padding: 0 24px;

  border-radius: 13px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-weight: 800;

}


.primary-btn {

  background: var(--green);

  color: white;

}


.secondary-btn {

  background: white;

  color: var(--navy);

  border: 2px solid var(--border);

}


.hero-points {

  margin-top: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 22px;

}


.hero-points div {

  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--text);

  font-size: 14px;

  font-weight: 600;

}


.hero-points i {

  color: var(--green);

}



/* ========================================
   HERO VISUAL
======================================== */

.hero-visual {

  display: flex;

  justify-content: center;

}


.health-visual-box {

  width: 430px;

  height: 430px;

  max-width: 100%;

  border-radius: 50%;

  background:
    rgba(32, 184, 120, 0.10);

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

}


.main-health-icon {

  width: 185px;

  height: 185px;

  border-radius: 48px;

  background:

    linear-gradient(
      135deg,
      var(--green),
      var(--green-dark)
    );

  color: white;

  font-size: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 25px 60px
    rgba(32, 184, 120, 0.28);

  transform: rotate(4deg);

}


.visual-card {

  position: absolute;

  min-width: 205px;

  padding: 14px 16px;

  background: white;

  border-radius: 15px;

  box-shadow:
    0 15px 40px
    rgba(3, 49, 91, 0.13);

  display: flex;

  align-items: center;

  gap: 11px;

}


.visual-card > span {

  width: 40px;

  height: 40px;

  min-width: 40px;

  border-radius: 12px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

}


.visual-card strong,
.visual-card small {

  display: block;

}


.visual-card strong {

  font-size: 14px;

}


.visual-card small {

  color: var(--text);

  font-size: 11px;

}


.card-one {

  top: 40px;

  left: -30px;

}


.card-two {

  right: -35px;

  top: 170px;

}


.card-three {

  left: 5px;

  bottom: 25px;

}



/* ========================================
   COMMON SECTION HEADING
======================================== */

.section-heading {

  max-width: 740px;

  margin: 0 auto 55px;

  text-align: center;

}


.section-heading h2 {

  margin: 18px 0 13px;

  font-size: clamp(34px, 4vw, 49px);

  line-height: 1.15;

}


.section-heading h2 span {

  color: var(--green);

}


.section-heading p {

  color: var(--text);

  font-size: 17px;

}



/* ========================================
   WHY HEALTH
======================================== */

.why-health-section {

  padding: 105px 20px;

}


.why-health-grid {

  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;

}


.info-card {

  padding: 35px 28px;

  text-align: center;

  border: 1px solid var(--border);

  border-radius: 22px;

  transition: 0.3s;

}


.info-card:hover {

  transform: translateY(-7px);

  box-shadow:
    0 20px 50px
    rgba(3, 49, 91, 0.09);

}


.info-icon {

  width: 70px;

  height: 70px;

  margin: 0 auto 22px;

  border-radius: 20px;

  background: var(--light-green);

  color: var(--green);

  font-size: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.info-card h3 {

  margin-bottom: 10px;

  font-size: 20px;

}


.info-card p {

  color: var(--text);

  font-size: 15px;

}



/* ========================================
   COVERAGE
======================================== */

.coverage-section {

  padding: 110px 20px;

  background: #F7FAFC;

}


.coverage-wrapper {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  align-items: center;

  gap: 75px;

}


.coverage-content h2 {

  margin: 20px 0;

  font-size: clamp(36px, 4vw, 51px);

  line-height: 1.13;

}


.coverage-content h2 span {

  display: block;

  color: var(--green);

}


.coverage-content > p {

  color: var(--text);

}


.coverage-list {

  margin-top: 30px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;

}


.coverage-item {

  padding: 20px;

  background: white;

  border-radius: 16px;

  display: flex;

  align-items: flex-start;

  gap: 13px;

}


.coverage-item > span {

  width: 42px;

  height: 42px;

  min-width: 42px;

  border-radius: 12px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

}


.coverage-item h3 {

  font-size: 15px;

  margin-bottom: 4px;

}


.coverage-item p {

  color: var(--text);

  font-size: 12px;

}


.coverage-visual {

  min-height: 480px;

  border-radius: 35px;

  background:

    linear-gradient(
      145deg,
      #EAF9F3,
      #F5FAFD
    );

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

}


.coverage-shield {

  width: 190px;

  height: 190px;

  border-radius: 50px;

  background: var(--green);

  color: white;

  font-size: 82px;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 25px 60px
    rgba(32, 184, 120, 0.25);

}


.protection-label {

  position: absolute;

  bottom: 45px;

  padding: 15px 20px;

  background: var(--navy);

  color: white;

  border-radius: 14px;

  font-weight: 800;

}


.protection-label i {

  color: var(--green);

  margin-right: 7px;

}



/* ========================================
   PLAN TYPES
======================================== */

.plans-section {

  padding: 110px 20px;

}


.plans-grid {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;

}


.plan-card {

  position: relative;

  padding: 35px 28px;

  border: 1px solid var(--border);

  border-radius: 24px;

  background: white;

}


.plan-card.featured {

  border: 2px solid var(--green);

  box-shadow:
    0 20px 50px
    rgba(32, 184, 120, 0.12);

}


.popular-tag {

  position: absolute;

  top: 0;

  right: 20px;

  padding: 6px 12px;

  background: var(--green);

  color: white;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 0.8px;

  border-radius: 0 0 10px 10px;

}


.plan-icon {

  width: 65px;

  height: 65px;

  margin-bottom: 22px;

  border-radius: 18px;

  background: var(--light-green);

  color: var(--green);

  font-size: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

}


.plan-card h3 {

  min-height: 58px;

  font-size: 21px;

  line-height: 1.3;

}


.plan-card > p {

  margin: 12px 0 22px;

  min-height: 72px;

  color: var(--text);

  font-size: 14px;

}


.plan-card ul {

  list-style: none;

  margin-bottom: 25px;

}


.plan-card li {

  margin-bottom: 12px;

  color: var(--text);

  font-size: 14px;

}


.plan-card li i {

  color: var(--green);

  margin-right: 8px;

}


.plan-card > a {

  color: var(--green);

  font-weight: 800;

}


.plan-card > a i {

  margin-left: 6px;

}



/* ========================================
   WHO SECTION
======================================== */

.who-section {

  padding: 105px 20px;

  background: var(--navy);

}


.who-wrapper {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  align-items: center;

  gap: 70px;

}


.dark-label {

  background:
    rgba(32, 184, 120, 0.15);

  color: #55D5A1;

}


.who-content h2 {

  margin: 20px 0;

  color: white;

  font-size: clamp(36px, 4vw, 50px);

  line-height: 1.15;

}


.who-content h2 span {

  display: block;

  color: var(--green);

}


.who-content p {

  color: #C1CFD8;

}


.who-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;

}


.who-card {

  padding: 22px;

  border:
    1px solid
    rgba(255, 255, 255, 0.10);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.07);

  display: flex;

  align-items: center;

  gap: 15px;

}


.who-card > span {

  width: 52px;

  height: 52px;

  min-width: 52px;

  border-radius: 15px;

  background:
    rgba(32, 184, 120, 0.17);

  color: #55D5A1;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

}


.who-card h3 {

  color: white;

  font-size: 16px;

}


.who-card p {

  margin-top: 3px;

  color: #B9C7D1;

  font-size: 12px;

}



/* ========================================
   HOW TO CHOOSE
======================================== */

.choose-plan-section {

  padding: 110px 20px;

}


.check-grid {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;

}


.check-card {

  position: relative;

  padding: 30px 24px;

  border: 1px solid var(--border);

  border-radius: 20px;

  overflow: hidden;

}


.check-number {

  position: absolute;

  top: 15px;

  right: 18px;

  color: #E5EDF1;

  font-size: 28px;

  font-weight: 900;

}


.check-card > i {

  width: 55px;

  height: 55px;

  margin-bottom: 20px;

  border-radius: 15px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

}


.check-card h3 {

  margin-bottom: 8px;

  font-size: 18px;

}


.check-card p {

  color: var(--text);

  font-size: 13px;

}



/* ========================================
   SUPPORT PROCESS
======================================== */

.support-section {

  padding: 105px 20px;

  background: #F7FAFC;

}


.light-heading h2 {

  color: var(--navy);

}


.support-steps {

  max-width: 1150px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: center;

}


.support-step {

  width: 220px;

  text-align: center;

  position: relative;

}


.step-number {

  position: absolute;

  top: -5px;

  right: 30px;

  color: #DDE8EC;

  font-size: 25px;

  font-weight: 900;

}


.step-icon {

  width: 75px;

  height: 75px;

  margin: 0 auto 20px;

  border-radius: 22px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

}


.support-step h3 {

  margin-bottom: 8px;

}


.support-step p {

  color: var(--text);

  font-size: 13px;

}


.step-line {

  width: 70px;

  height: 2px;

  margin: 0 8px 65px;

  background:
    repeating-linear-gradient(
      90deg,
      var(--green) 0,
      var(--green) 6px,
      transparent 6px,
      transparent 12px
    );

}



/* ========================================
   FAQ
======================================== */

.faq-section {

  padding: 110px 20px;

}


.faq-container {

  max-width: 850px;

  margin: auto;

}


.faq-item {

  margin-bottom: 14px;

  border: 1px solid var(--border);

  border-radius: 15px;

  overflow: hidden;

}


.faq-question {

  width: 100%;

  padding: 20px 22px;

  border: none;

  background: white;

  color: var(--navy);

  cursor: pointer;

  font-size: 16px;

  font-weight: 800;

  text-align: left;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.faq-question i {

  color: var(--green);

}


.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;

}


.faq-answer p {

  padding: 0 22px 22px;

  color: var(--text);

  font-size: 14px;

}


.faq-item.active .faq-answer {

  max-height: 250px;

}


.faq-item.active .faq-question {

  color: var(--green);

}



/* ========================================
   CTA
======================================== */

.final-cta {

  padding: 85px 20px;

}


.cta-box {

  max-width: 1150px;

  margin: auto;

  padding: 42px;

  border-radius: 28px;

  background:

    linear-gradient(
      135deg,
      #03315B,
      #064878
    );

  color: white;

  display: flex;

  align-items: center;

  gap: 25px;

}


.cta-icon {

  width: 78px;

  height: 78px;

  min-width: 78px;

  border-radius: 22px;

  background: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 35px;

}


.cta-content {

  flex: 1;

}


.cta-content span {

  color: #56D7A2;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1px;

}


.cta-content h2 {

  margin: 4px 0;

  font-size: 27px;

  line-height: 1.25;

}


.cta-content p {

  color: #C3D0D9;

}


.cta-actions {

  display: flex;

  gap: 10px;

}


.cta-primary,
.cta-secondary {

  padding: 14px 19px;

  border-radius: 12px;

  font-weight: 800;

  white-space: nowrap;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

}


.cta-primary {

  background: var(--green);

  color: white;

}


.cta-secondary {

  background: white;

  color: var(--navy);

}



/* ========================================
   FOOTER
======================================== */

.footer {

  padding-top: 60px;

  background: var(--navy-dark);

  color: white;

}


.footer-container {

  max-width: 1150px;

  margin: auto;

  padding: 0 20px 50px;

  display: grid;

  grid-template-columns:
    1.8fr 1fr 1fr 1.4fr;

  gap: 40px;

}


.footer-logo img {

  width: 190px;

  height: auto;

  display: block;

}


.footer-brand p {

  max-width: 340px;

  margin: 20px 0;

  color: #B9C6D0;

}


.social-links {

  display: flex;

  gap: 12px;

}


.social-links a {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.1);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

}


.footer-links,
.footer-contact {

  display: flex;

  flex-direction: column;

  gap: 12px;

}


.footer h3 {

  margin-bottom: 8px;

}


.footer-links a,
.footer-contact a {

  color: #B9C6D0;

}


.footer-links a:hover,
.footer-contact a:hover {

  color: var(--green);

}


.footer-contact i {

  color: var(--green);

  margin-right: 8px;

}


.footer-bottom {

  padding: 20px;

  text-align: center;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  color: #9DAFBD;

  font-size: 13px;

}



/* ========================================
   WHATSAPP
======================================== */

.floating-whatsapp {

  position: fixed;

  right: 22px;

  bottom: 22px;

  width: 58px;

  height: 58px;

  border-radius: 50%;

  background: #25D366;

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  box-shadow:
    0 8px 25px
    rgba(0, 0, 0, 0.20);

  z-index: 999;

}



/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {


  .nav-links {

    position: absolute;

    top: 92px;

    left: 0;
    right: 0;

    padding: 25px;

    background: white;

    display: none;

    flex-direction: column;

    align-items: stretch;

    box-shadow:
      0 15px 30px
      rgba(0, 0, 0, 0.08);

  }


  .nav-links.show {

    display: flex;

  }


  .menu-btn {

    display: block;

  }


  .nav-dropdown {

    width: 100%;

  }


  .dropdown-title {

    width: 100%;

    justify-content: space-between;

  }


  .dropdown-menu {

    position: static;

    width: 100%;

    margin-top: 10px;

    box-shadow: none;

  }


  .nav-dropdown:hover .dropdown-menu {

    display: none;

  }


  .nav-dropdown.open .dropdown-menu {

    display: block;

  }


  .health-hero {

    grid-template-columns: 1fr;

    text-align: center;

  }


  .hero-content {

    margin: auto;

  }


  .hero-actions,
  .hero-points {

    justify-content: center;

  }


  .hero-visual {

    display: none;

  }


  .coverage-wrapper {

    grid-template-columns: 1fr;

  }


  .coverage-visual {

    display: none;

  }


  .plans-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .who-wrapper {

    grid-template-columns: 1fr;

  }


  .check-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .support-steps {

    display: grid;

    grid-template-columns:
      1fr 1fr;

    gap: 30px;

  }


  .support-step {

    width: 100%;

  }


  .step-line {

    display: none;

  }


  .cta-box {

    flex-wrap: wrap;

  }


  .footer-container {

    grid-template-columns:
      1fr 1fr;

  }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {


  .topbar {

    min-height: 60px;

    padding: 0 5%;

  }


  .topbar-item {

    font-size: 12px;

  }


  .navbar {

    min-height: 112px;

    padding: 0 20px;

  }


  .logo img {

    width: 230px;

    max-width: 48vw;

  }


  .nav-links {

    top: 112px;

  }


  .quote-btn {

    padding: 12px 14px;

    font-size: 13px;

  }


  .header-actions {

    gap: 12px;

  }


  .health-hero {

    min-height: auto;

    padding: 65px 22px 75px;

  }


  .hero-content h1 {

    font-size: 42px;

  }


  .hero-content > p {

    font-size: 16px;

  }


  .hero-actions {

    flex-direction: column;

  }


  .primary-btn,
  .secondary-btn {

    width: 100%;

  }


  .hero-points {

    flex-direction: column;

    align-items: center;

    gap: 12px;

  }


  .why-health-section,
  .coverage-section,
  .plans-section,
  .who-section,
  .choose-plan-section,
  .support-section,
  .faq-section {

    padding: 75px 20px;

  }


  .why-health-grid {

    grid-template-columns: 1fr;

  }


  .coverage-list {

    grid-template-columns: 1fr;

  }


  .plans-grid {

    grid-template-columns: 1fr;

  }


  .plan-card h3,
  .plan-card > p {

    min-height: auto;

  }


  .who-grid {

    grid-template-columns: 1fr;

  }


  .check-grid {

    grid-template-columns: 1fr;

  }


  .support-steps {

    grid-template-columns: 1fr;

  }


  .final-cta {

    padding: 65px 20px;

  }


  .cta-box {

    padding: 30px 22px;

    flex-direction: column;

    align-items: flex-start;

  }


  .cta-actions {

    width: 100%;

    flex-direction: column;

  }


  .cta-primary,
  .cta-secondary {

    width: 100%;

  }


  .footer-container {

    grid-template-columns: 1fr;

  }


  .footer-logo img {

    width: 190px;

  }

}