/* ========================================
   ROOT
======================================== */

:root {

  --navy: #03315B;
  --green: #20B878;
  --green-dark: #159766;

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

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

  --white: #FFFFFF;

}


* {

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

}


html {

  scroll-behavior: smooth;

}


body {

  font-family: Arial, sans-serif;

  color: var(--navy);

  background: #FFFFFF;

  line-height: 1.6;

}


a {

  text-decoration: none;

}



/* ========================================
   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 {

  background: white;

  border-bottom: 1px solid #edf1f3;

  position: sticky;

  top: 0;

  z-index: 1000;

}


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

}


.nav-links a {

  color: var(--navy);

  font-weight: 600;

  font-size: 15px;

  position: relative;

}


.nav-links a:hover,
.nav-links a.active {

  color: var(--green);

}


.nav-links a.active::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 100%;

  height: 3px;

  background: var(--green);

  border-radius: 5px;

}


.header-actions {

  display: flex;

  align-items: center;

  gap: 18px;

}


.quote-btn {

  padding: 13px 20px;

  background: var(--green);

  color: white;

  border-radius: 12px;

  font-weight: 700;

}


.menu-btn {

  display: none;

  border: none;

  background: transparent;

  color: var(--navy);

  font-size: 30px;

  cursor: pointer;

}



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

.about-hero {

  min-height: 620px;

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

  background:

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

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

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 50px;

}


.about-hero-content {

  max-width: 680px;

}


.hero-badge,
.section-label {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: var(--light-green);

  color: #198D61;

  padding: 9px 18px;

  border-radius: 30px;

  font-weight: 700;

}


.about-hero h1 {

  margin: 24px 0 20px;

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

  line-height: 1.08;

  color: var(--navy);

}


.about-hero h1 span {

  display: block;

  color: var(--green);

}


.about-hero-content > p {

  max-width: 630px;

  color: var(--text);

  font-size: 18px;

}


.hero-buttons {

  margin-top: 32px;

  display: flex;

  gap: 15px;

  flex-wrap: wrap;

}


.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 #E0E8ED;

}



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

.hero-visual {

  display: flex;

  justify-content: center;

}


.visual-circle {

  width: 420px;

  height: 420px;

  max-width: 100%;

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

  border-radius: 50%;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

}


.shield-box {

  width: 190px;

  height: 190px;

  border-radius: 45px;

  background: linear-gradient(
    135deg,
    #20B878,
    #159766
  );

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 90px;

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

  transform: rotate(4deg);

}


.floating-card {

  position: absolute;

  background: white;

  padding: 15px 20px;

  border-radius: 14px;

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

  font-weight: 700;

  color: var(--navy);

  display: flex;

  align-items: center;

  gap: 9px;

}


.floating-card i {

  color: var(--green);

}


.card-one {

  left: -15px;

  top: 80px;

}


.card-two {

  right: -10px;

  bottom: 75px;

}



/* ========================================
   WHO WE ARE
======================================== */

.who-section {

  padding: 110px 20px;

}


.who-wrapper {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;

  align-items: center;

}


.who-visual {

  min-height: 480px;

  background: var(--light-blue);

  border-radius: 35px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

}


.big-shield {

  width: 230px;

  height: 230px;

  border-radius: 50%;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 105px;

}


.experience-card {

  position: absolute;

  right: -30px;

  bottom: 45px;

  background: white;

  border-radius: 18px;

  padding: 18px 22px;

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

  display: flex;

  align-items: center;

  gap: 14px;

}


.experience-icon {

  width: 48px;

  height: 48px;

  border-radius: 14px;

  background: var(--green);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

}


.experience-card strong,
.experience-card small {

  display: block;

}


.experience-card small {

  color: var(--text);

}


.who-content h2 {

  margin: 20px 0;

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

  line-height: 1.15;

}


.who-content h2 span {

  display: block;

  color: var(--green);

}


.who-content p {

  color: var(--text);

  margin-bottom: 15px;

  font-size: 16px;

}


.who-points {

  margin-top: 28px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

}


.who-points div {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--navy);

  font-weight: 700;

}


.who-points i {

  width: 25px;

  height: 25px;

  border-radius: 50%;

  background: var(--green);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 11px;

}



/* ========================================
   SECTION HEADINGS
======================================== */

.section-heading {

  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;

}


.section-heading h2 {

  margin: 18px 0 12px;

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

  line-height: 1.15;

}


.section-heading h2 span {

  color: var(--green);

}


.section-heading p {

  color: var(--text);

  font-size: 17px;

}



/* ========================================
   MISSION SECTION
======================================== */

.mission-section {

  padding: 100px 20px;

  background: #F7FAFC;

}


.mission-grid {

  max-width: 1150px;

  margin: auto;

  display: grid;

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

  gap: 24px;

}


.purpose-card {

  padding: 38px 30px;

  background: white;

  border: 1px solid #E5EDF1;

  border-radius: 24px;

  transition: 0.3s;

}


.purpose-card:hover {

  transform: translateY(-7px);

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

}


.purpose-card.featured {

  background: var(--navy);

  color: white;

}


.purpose-icon {

  width: 62px;

  height: 62px;

  border-radius: 18px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  margin-bottom: 24px;

}


.purpose-card h3 {

  font-size: 23px;

  margin-bottom: 12px;

}


.purpose-card p {

  color: var(--text);

}


.purpose-card.featured p {

  color: #C4D0D9;

}



/* ========================================
   WHY SECTION
======================================== */

.why-section {

  padding: 110px 20px;

  background: var(--navy);

}


.why-wrapper {

  max-width: 1150px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;

  align-items: center;

}


.light-label {

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

  color: #56D6A2;

}


.why-content h2 {

  color: white;

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

  line-height: 1.12;

  margin: 20px 0;

}


.why-content h2 span {

  display: block;

  color: var(--green);

}


.why-content p {

  color: #C3D0DA;

  font-size: 17px;

}


.why-button {

  margin-top: 28px;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 15px 22px;

  background: var(--green);

  color: white;

  border-radius: 12px;

  font-weight: 800;

}


.benefit-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

}


.benefit-card {

  padding: 28px;

  border-radius: 20px;

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

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

}


.benefit-icon {

  width: 50px;

  height: 50px;

  border-radius: 14px;

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

  color: #4DD49D;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 21px;

  margin-bottom: 18px;

}


.benefit-card h3 {

  color: white;

  margin-bottom: 8px;

}


.benefit-card p {

  color: #B9C7D1;

  font-size: 14px;

}



/* ========================================
   SOLUTIONS
======================================== */

.solutions-section {

  padding: 110px 20px;

}


.solutions-grid {

  max-width: 1150px;

  margin: auto;

  display: grid;

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

  gap: 20px;

}


.solution-card {

  padding: 30px 24px;

  border: 1px solid #E3EBEF;

  border-radius: 22px;

  text-align: center;

  transition: 0.3s;

}


.solution-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 18px 45px
    rgba(3, 49, 91, 0.09);

}


.solution-icon {

  width: 68px;

  height: 68px;

  margin: 0 auto 20px;

  border-radius: 20px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 27px;

}


.solution-card h3 {

  margin-bottom: 10px;

}


.solution-card p {

  color: var(--text);

  font-size: 14px;

}



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

.process-section {

  padding: 100px 20px;

  background: #F7FAFC;

}


.process-grid {

  max-width: 1150px;

  margin: auto;

  display: grid;

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

  gap: 20px;

}


.process-card {

  background: white;

  border-radius: 22px;

  padding: 30px 24px;

  border: 1px solid #E5EDF1;

  position: relative;

}


.step-number {

  position: absolute;

  top: 20px;

  right: 20px;

  color: #DCE7EC;

  font-size: 30px;

  font-weight: 900;

}


.process-icon {

  width: 58px;

  height: 58px;

  border-radius: 17px;

  background: var(--light-green);

  color: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 23px;

  margin-bottom: 20px;

}


.process-card h3 {

  margin-bottom: 8px;

}


.process-card p {

  color: var(--text);

  font-size: 14px;

}



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

.about-cta {

  padding: 80px 20px;

}


.cta-content {

  max-width: 1150px;

  margin: auto;

  padding: 42px;

  border-radius: 26px;

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

  display: flex;

  align-items: center;

  gap: 25px;

  color: white;

}


.cta-icon {

  width: 75px;

  height: 75px;

  min-width: 75px;

  border-radius: 20px;

  background: var(--green);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 33px;

}


.cta-text {

  flex: 1;

}


.cta-text h2 {

  font-size: 30px;

}


.cta-text p {

  color: #C6D2DB;

}


.cta-buttons {

  display: flex;

  gap: 12px;

}


.cta-primary,
.cta-secondary {

  padding: 14px 20px;

  border-radius: 12px;

  font-weight: 800;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  white-space: nowrap;

}


.cta-primary {

  background: var(--green);

  color: white;

}


.cta-secondary {

  background: white;

  color: var(--navy);

}



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

.footer {

  background: #021F39;

  color: white;

  padding-top: 60px;

}


.footer-container {

  max-width: 1150px;

  margin: auto;

  padding: 0 20px 50px;

  display: grid;

  grid-template-columns:
    2fr 1fr 1.5fr;

  gap: 50px;

}


.footer-logo img {

  width: 190px;

  height: auto;

  display: block;

}


.footer-brand p {

  max-width: 360px;

  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;

}


.social-links a:hover {

  background: var(--green);

}


.footer-links,
.footer-contact {

  display: flex;

  flex-direction: column;

  gap: 12px;

}


.footer h3 {

  margin-bottom: 8px;

}


.footer-links a {

  color: #B9C6D0;

}


.footer-links a:hover {

  color: var(--green);

}


.footer-contact p {

  color: #B9C6D0;

}


.footer-contact i {

  color: var(--green);

  margin-right: 8px;

}


.footer-bottom {

  text-align: center;

  padding: 20px;

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

  color: #9DAFBD;

  font-size: 13px;

}



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

.floating-whatsapp {

  position: fixed;

  right: 22px;

  bottom: 22px;

  width: 58px;

  height: 58px;

  background: #25D366;

  color: white;

  border-radius: 50%;

  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: 950px) {


  .nav-links {

    position: absolute;

    top: 92px;

    left: 0;

    right: 0;

    background: white;

    padding: 25px;

    display: none;

    flex-direction: column;

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

  }


  .nav-links.show {

    display: flex;

  }


  .menu-btn {

    display: block;

  }


  .about-hero {

    grid-template-columns: 1fr;

    text-align: center;

  }


  .about-hero-content {

    margin: auto;

  }


  .hero-buttons {

    justify-content: center;

  }


  .hero-visual {

    display: none;

  }


  .who-wrapper {

    grid-template-columns: 1fr;

  }


  .why-wrapper {

    grid-template-columns: 1fr;

  }


  .mission-grid {

    grid-template-columns: 1fr;

  }


  .solutions-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .process-grid {

    grid-template-columns:
      1fr 1fr;

  }


  .cta-content {

    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;

  }


  .quote-btn {

    padding: 12px 14px;

    font-size: 13px;

  }


  .header-actions {

    gap: 12px;

  }


  .menu-btn {

    font-size: 30px;

  }


  .nav-links {

    top: 112px;

  }


  .about-hero {

    min-height: auto;

    padding:
      65px 22px
      75px;

  }


  .about-hero h1 {

    font-size: 42px;

  }


  .about-hero-content > p {

    font-size: 16px;

  }


  .hero-buttons {

    flex-direction: column;

  }


  .primary-btn,
  .secondary-btn {

    width: 100%;

  }


  .who-section {

    padding:
      75px 20px;

  }


  .who-visual {

    min-height: 320px;

  }


  .big-shield {

    width: 170px;

    height: 170px;

    font-size: 75px;

  }


  .experience-card {

    right: 15px;

    left: 15px;

    bottom: 20px;

  }


  .who-points {

    grid-template-columns: 1fr;

  }


  .mission-section,
  .solutions-section,
  .process-section,
  .why-section {

    padding:
      75px 20px;

  }


  .benefit-grid,
  .solutions-grid,
  .process-grid {

    grid-template-columns: 1fr;

  }


  .cta-content {

    padding: 30px 22px;

    flex-direction: column;

    align-items: flex-start;

  }


  .cta-buttons {

    width: 100%;

    flex-direction: column;

  }


  .cta-primary,
  .cta-secondary {

    width: 100%;

  }


  .footer-container {

    grid-template-columns: 1fr;

  }


  .footer-logo img {

    width: 190px;

  }

  }
