: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,
input,
select,
textarea {
  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 {
  color: white;

  display: flex;
  align-items: center;

  gap: 9px;

  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: 20px;
}


.nav-links > a,
.dropdown-title {
  color: var(--navy);

  font-size: 13px;
  font-weight: 700;
}


.nav-links > a:hover,
.dropdown-title:hover,
.nav-links > .active-link {
  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 {
  color: var(--green);
  background: var(--light-green);
}


/* HERO */

.claim-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;
}


.visual-circle {
  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-claim-icon {
  width: 190px;
  height: 190px;

  border-radius: 48px;

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

  color: white;

  font-size: 78px;

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

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

  transform: rotate(4deg);
}


.floating-card {
  position: absolute;

  min-width: 210px;

  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;
}


.floating-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;
}


.floating-card strong,
.floating-card small {
  display: block;
}


.floating-card strong {
  font-size: 14px;
}


.floating-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;
}


/* SECTION HEADING */

.section-heading {
  max-width: 760px;

  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;
}


/* CLAIM TYPES */

.claim-types-section {
  padding: 105px 20px;
}


.claim-grid {
  max-width: 1150px;

  margin: auto;

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

  gap: 22px;
}


.claim-card {
  position: relative;

  padding: 32px 28px;

  background: white;

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

  overflow: hidden;

  transition: 0.3s;
}


.claim-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(32,184,120,0.4);

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


.claim-icon {
  width: 65px;
  height: 65px;

  margin-bottom: 22px;

  border-radius: 18px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 26px;
}


.claim-number {
  position: absolute;

  top: 18px;
  right: 20px;

  color: #E4EDF1;

  font-size: 31px;
  font-weight: 900;
}


.claim-tag {
  position: absolute;

  top: 0;
  right: 20px;

  padding: 5px 11px;

  background: var(--navy);
  color: white;

  border-radius: 0 0 9px 9px;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.8px;
}


.support-card .claim-tag {
  background: var(--green);
}


.claim-card h3 {
  margin-bottom: 10px;

  font-size: 20px;
}


.claim-card > p {
  min-height: 120px;

  color: var(--text);

  font-size: 14px;
}


.claim-card ul {
  list-style: none;

  margin: 20px 0;
}


.claim-card li {
  margin-bottom: 9px;

  color: var(--text);

  font-size: 13px;
}


.claim-card li i {
  color: var(--green);

  margin-right: 7px;
}


.claim-card > a {
  color: var(--green);

  font-weight: 800;
}


.claim-card > a i {
  margin-left: 6px;
}


/* PROCESS */

.process-section {
  padding: 110px 20px;

  background: #F7FAFC;
}


.process-grid {
  max-width: 1150px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}


.process-card {
  width: 230px;
  min-height: 280px;

  padding: 28px 22px;

  background: white;

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

  position: relative;
}


.process-card > span {
  position: absolute;

  top: 18px;
  right: 18px;

  color: #E3EBF0;

  font-size: 28px;
  font-weight: 900;
}


.process-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 20px;

  border-radius: 16px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 23px;
}


.process-card h3 {
  margin-bottom: 8px;

  font-size: 18px;
}


.process-card p {
  color: var(--text);

  font-size: 13px;
}


.process-arrow {
  padding: 0 13px;

  color: var(--green);
}


/* IMPORTANT SECTION */

.important-section {
  padding: 110px 20px;

  background: var(--navy);
}


.important-wrapper {
  max-width: 1150px;

  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 75px;
}


.dark-label {
  background: rgba(32,184,120,0.15);

  color: #55D5A1;
}


.important-content h2 {
  margin: 20px 0;

  color: white;

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

  line-height: 1.13;
}


.important-content h2 span {
  display: block;

  color: var(--green);
}


.important-content > p {
  color: #C1CFD8;
}


.important-list {
  margin: 28px 0;

  display: flex;
  flex-direction: column;

  gap: 18px;
}


.important-list > div {
  display: flex;
  align-items: flex-start;

  gap: 12px;
}


.important-list > div > i {
  color: var(--green);

  margin-top: 5px;
}


.important-list span {
  color: #C1CFD8;

  font-size: 14px;
}


.important-list strong {
  display: block;

  color: white;

  font-size: 16px;
}


.important-btn {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 15px 21px;

  background: var(--green);
  color: white;

  border-radius: 12px;

  font-weight: 800;
}


.important-visual {
  min-height: 470px;

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

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

  border-radius: 32px;

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

  position: relative;
}


.support-circle {
  width: 190px;
  height: 190px;

  border-radius: 50px;

  background: var(--green);
  color: white;

  font-size: 80px;

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

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


.support-badge {
  position: absolute;

  bottom: 45px;

  padding: 15px 20px;

  background: white;
  color: var(--navy);

  border-radius: 14px;

  font-weight: 800;
}


.support-badge i {
  color: var(--green);

  margin-right: 7px;
}


/* DOCUMENTS */

.documents-section {
  padding: 110px 20px;
}


.documents-grid {
  max-width: 1100px;

  margin: auto;

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

  gap: 22px;
}


.document-box {
  padding: 30px;

  background: white;

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

  box-shadow:
    0 12px 35px rgba(3,49,91,0.05);
}


.document-heading {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 23px;
}


.document-heading > i {
  width: 50px;
  height: 50px;

  border-radius: 14px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 21px;
}


.document-heading h3 {
  font-size: 19px;
}


.document-box ul {
  list-style: none;
}


.document-box li {
  padding: 11px 0;

  border-bottom: 1px solid #EDF1F3;

  color: var(--text);

  font-size: 13px;
}


.document-box li:last-child {
  border-bottom: none;
}


.document-box li i {
  width: 25px;

  color: var(--green);
}


.document-note {
  max-width: 900px;

  margin: 35px auto 0;

  padding: 18px 20px;

  background: var(--light-green);

  border-radius: 14px;

  display: flex;
  align-items: flex-start;

  gap: 12px;
}


.document-note i {
  color: var(--green);

  margin-top: 4px;
}


.document-note p {
  color: var(--text);

  font-size: 13px;
}


/* SUPPORT SECTION */

.support-section {
  padding: 110px 20px;

  background: #F7FAFC;
}


.support-grid {
  max-width: 1150px;

  margin: auto;

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

  gap: 20px;
}


.support-grid .support-card {
  padding: 28px 22px;

  background: white;

  border-radius: 20px;

  box-shadow:
    0 12px 35px rgba(3,49,91,0.06);
}


.support-grid .support-card > i {
  width: 58px;
  height: 58px;

  margin-bottom: 18px;

  border-radius: 16px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 23px;
}


.support-grid .support-card h3 {
  margin-bottom: 7px;

  font-size: 17px;
}


.support-grid .support-card p {
  color: var(--text);

  font-size: 13px;
}


/* HELP FORM */

.claim-help-section {
  padding: 110px 20px;
}


.help-wrapper {
  max-width: 1150px;

  margin: auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  align-items: center;

  gap: 70px;
}


.help-content h2 {
  margin: 20px 0;

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

  line-height: 1.13;
}


.help-content h2 span {
  display: block;

  color: var(--green);
}


.help-content > p {
  color: var(--text);
}


.urgent-contact {
  margin-top: 30px;

  padding: 18px;

  background: var(--light-green);

  border-radius: 16px;

  display: flex;
  align-items: center;

  gap: 13px;
}


.contact-icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background: var(--green);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
}


.urgent-contact small,
.urgent-contact a {
  display: block;
}


.urgent-contact small {
  color: var(--text);
}


.urgent-contact a {
  color: var(--navy);

  font-size: 18px;
  font-weight: 900;
}


.help-note {
  margin-top: 18px;

  padding: 15px;

  border-left: 4px solid var(--green);

  background: #F7FAFC;

  display: flex;

  gap: 10px;
}


.help-note i {
  color: var(--green);

  margin-top: 4px;
}


.help-note p {
  color: var(--text);

  font-size: 12px;
}


.claim-form-box {
  padding: 35px;

  background: white;

  border-radius: 24px;

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


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;
}


.form-group {
  margin-bottom: 17px;
}


.form-group label {
  display: block;

  margin-bottom: 7px;

  font-size: 13px;
  font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 15px;

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

  outline: none;

  color: var(--navy);

  background: white;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}


.submit-btn {
  width: 100%;

  padding: 16px;

  border: none;
  border-radius: 12px;

  background: var(--green);
  color: white;

  cursor: pointer;

  font-size: 15px;
  font-weight: 800;
}


/* FAQ */

.faq-section {
  padding: 110px 20px;

  background: #F7FAFC;
}


.faq-container {
  max-width: 850px;

  margin: auto;
}


.faq-item {
  margin-bottom: 14px;

  background: white;

  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;

  gap: 20px;
}


.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: 400px;
}


.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;
  }


  .claim-hero {
    grid-template-columns: 1fr;

    text-align: center;
  }


  .hero-content {
    margin: auto;
  }


  .hero-actions,
  .hero-points {
    justify-content: center;
  }


  .hero-visual {
    display: none;
  }


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


  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
  }


  .process-card {
    width: 100%;
  }


  .process-arrow {
    display: none;
  }


  .important-wrapper,
  .help-wrapper {
    grid-template-columns: 1fr;
  }


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


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


  .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;
  }


  .claim-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;
  }


  .claim-types-section,
  .process-section,
  .important-section,
  .documents-section,
  .support-section,
  .claim-help-section,
  .faq-section {
    padding: 75px 20px;
  }


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


  .claim-card > p {
    min-height: auto;
  }


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


  .process-card {
    min-height: auto;
  }


  .important-visual {
    display: none;
  }


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


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


  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .claim-form-box {
    padding: 25px 20px;
  }


  .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;
  }

}