:root {
  --navy: #092f44;
  --navy-deep: #062536;
  --teal: #00a3a5;
  --teal-dark: #00898d;
  --orange: #ef7d32;
  --cream: #f6f3ec;
  --white: #ffffff;
  --ink: #18313e;
  --muted: #60727b;
  --line: #dce5e7;
  --shadow: 0 24px 60px rgba(7, 42, 58, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
  width: 100%;
}

.section {
  padding: 112px 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(9, 47, 68, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  height: 43px;
  justify-content: center;
  letter-spacing: -0.5px;
  position: relative;
  width: 43px;
}

.brand-mark::after {
  border: 2px solid var(--orange);
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  inset: -4px;
  position: absolute;
  transform: rotate(35deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-top: 3px;
  text-transform: uppercase;
}

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

.main-nav a {
  color: #425963;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav .nav-contact {
  background: var(--navy);
  border-radius: 9px;
  color: var(--white);
  padding: 12px 20px;
}

.main-nav .nav-contact:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
}

.menu-toggle span {
  background: var(--navy);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: 0.2s ease;
  width: 24px;
}

.hero {
  background:
    linear-gradient(100deg, rgba(246, 243, 236, 0.98) 0%, rgba(246, 243, 236, 0.93) 56%, rgba(233, 241, 240, 0.9) 100%);
  min-height: 760px;
  overflow: hidden;
  padding: 154px 0 82px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(0, 137, 141, 0.13) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
  height: 250px;
  left: -50px;
  opacity: 0.7;
  position: absolute;
  top: 155px;
  width: 280px;
}

.hero-shape {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-shape-one {
  border: 70px solid rgba(0, 163, 165, 0.07);
  height: 460px;
  right: -170px;
  top: 60px;
  width: 460px;
}

.hero-shape-two {
  background: var(--orange);
  height: 16px;
  right: 44%;
  top: 130px;
  width: 16px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.08fr 0.92fr;
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  color: var(--teal-dark);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 1.3px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow i {
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  width: 8px;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}

h1 {
  color: var(--navy);
  font-size: clamp(45px, 5vw, 68px);
  letter-spacing: -3.7px;
  max-width: 690px;
}

h1 em,
h2 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-content > p {
  color: #526973;
  font-size: 18px;
  margin: 25px 0 31px;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 30px;
}

.button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 15px;
  justify-content: center;
  padding: 16px 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button-primary {
  background: var(--teal-dark);
  box-shadow: 0 12px 25px rgba(0, 137, 141, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: var(--navy);
  box-shadow: 0 15px 30px rgba(9, 47, 68, 0.2);
  transform: translateY(-2px);
}

.button svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.text-link {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.text-link span {
  color: var(--orange);
  font-size: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link.dark:hover span {
  transform: translateX(3px);
}

.trust-row {
  border-top: 1px solid rgba(9, 47, 68, 0.12);
  display: flex;
  gap: 35px;
  margin-top: 48px;
  padding-top: 25px;
}

.trust-row div {
  position: relative;
}

.trust-row div:not(:last-child)::after {
  background: rgba(9, 47, 68, 0.15);
  content: "";
  height: 27px;
  position: absolute;
  right: -18px;
  top: 4px;
  width: 1px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  min-height: 535px;
  position: relative;
}

.image-panel {
  background:
    linear-gradient(180deg, transparent 55%, rgba(5, 36, 51, 0.38)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1000&q=88")
      center/cover;
  border-radius: 190px 190px 24px 24px;
  box-shadow: var(--shadow);
  height: 520px;
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
}

.image-panel::after {
  border: 1px solid rgba(0, 137, 141, 0.35);
  border-radius: 185px 185px 22px 22px;
  content: "";
  inset: 14px -14px -14px 14px;
  position: absolute;
  z-index: -1;
}

.floating-card {
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  bottom: 40px;
  box-shadow: 0 18px 45px rgba(6, 37, 54, 0.18);
  display: flex;
  gap: 13px;
  left: 0;
  padding: 17px 20px;
  position: absolute;
}

.floating-icon {
  align-items: center;
  background: #e5f4f2;
  border-radius: 10px;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.floating-icon svg {
  fill: none;
  height: 25px;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 25px;
}

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

.floating-card small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.hero-badge {
  align-items: center;
  background: rgba(9, 47, 68, 0.94);
  border-radius: 9px;
  color: var(--white);
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  padding: 10px 13px;
  position: absolute;
  right: -20px;
  top: 95px;
}

.hero-badge span {
  color: var(--orange);
  font-size: 18px;
}

.section-label {
  color: var(--teal-dark);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-label.light {
  color: #6ad6d5;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 1.05fr 0.95fr;
}

.about h2,
.section-heading h2,
.partners h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 49px);
  letter-spacing: -2.5px;
}

.about-copy {
  border-left: 3px solid var(--orange);
  padding-left: 35px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 17px;
}

.about-copy strong {
  color: var(--ink);
}

.about-copy .text-link {
  margin-top: 6px;
}

.solutions {
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.solutions::after {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  height: 620px;
  position: absolute;
  right: -260px;
  top: -280px;
  width: 620px;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
  position: relative;
  z-index: 1;
}

.section-heading h2 {
  color: var(--white);
  max-width: 650px;
}

.section-heading h2 em {
  color: #6ad6d5;
}

.section-heading > p {
  color: #aabac1;
  font-size: 14px;
  max-width: 340px;
}

.cards-grid {
  display: grid;
  gap: 19px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.solution-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-height: 340px;
  padding: 34px;
  position: relative;
  transition:
    transform 0.25s ease,
    border 0.25s ease;
}

.solution-card:hover {
  border-color: rgba(106, 214, 213, 0.55);
  transform: translateY(-5px);
}

.solution-card.featured {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.card-number {
  color: rgba(255, 255, 255, 0.22);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  right: 28px;
  top: 28px;
}

.card-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 45px;
  width: 58px;
}

.featured .card-icon {
  background: rgba(255, 255, 255, 0.16);
}

.card-icon svg {
  fill: none;
  height: 29px;
  stroke: #6ad6d5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  width: 29px;
}

.featured .card-icon svg {
  stroke: var(--white);
}

.solution-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.solution-card p {
  color: #abbcc3;
  font-size: 14px;
  margin-bottom: 25px;
}

.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.card-tag {
  color: #6ad6d5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured .card-tag {
  color: var(--white);
}

.partners {
  background: var(--cream);
}

.partners-intro {
  margin-bottom: 48px;
  text-align: center;
}

.partners-intro h2 {
  margin: 0 auto;
  max-width: 650px;
}

.partner-list {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.partner-card {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(9, 47, 68, 0.07);
  border-radius: 17px;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.8fr 1px 1.2fr;
  padding: 38px;
}

.partner-name {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
}

.partner-name.zandomax::first-letter {
  color: var(--orange);
}

.partner-name.arsc {
  color: var(--teal-dark);
  font-size: 30px;
  letter-spacing: 2px;
}

.partner-name span {
  color: #7b8e96;
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.partner-divider {
  background: var(--line);
  height: 60px;
  width: 1px;
}

.partner-card p {
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  background: linear-gradient(to bottom, var(--cream) 50%, var(--white) 50%);
  padding: 0 0 95px;
}

.contact-card {
  align-items: center;
  background:
    radial-gradient(circle at 92% 15%, rgba(0, 163, 165, 0.25) 0, transparent 25%),
    var(--navy);
  border-radius: 27px;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  padding: 64px 70px;
  position: relative;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(31px, 3.5vw, 43px);
  letter-spacing: -2px;
}

.contact-copy p {
  color: #b7c6cb;
  font-size: 14px;
  margin-top: 18px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr auto;
  padding: 15px 18px;
  transition: background 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-icon {
  align-items: center;
  background: var(--teal-dark);
  border-radius: 10px;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.contact-icon svg {
  fill: none;
  height: 22px;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: #8ea8b3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--white);
  font-size: 14px;
}

.contact-item b {
  color: #6ad6d5;
  font-size: 19px;
}

footer {
  padding: 0 0 34px;
}

.footer-wrap {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 31px;
}

.footer-wrap > p,
.footer-wrap > a:last-child {
  color: #819198;
  font-size: 11px;
}

.footer-brand .brand-mark {
  height: 36px;
  width: 36px;
}

.footer-brand strong {
  font-size: 13px;
}

.whatsapp-float {
  align-items: center;
  background: #22b75c;
  border: 3px solid var(--white);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 10px 28px rgba(20, 90, 48, 0.3);
  display: flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform 0.2s ease;
  width: 56px;
  z-index: 30;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  fill: none;
  height: 28px;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 28px;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-card {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .trust-row {
    gap: 24px;
  }

  .hero-badge {
    right: -10px;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-divider {
    height: 1px;
    width: 100%;
  }

  .contact-card {
    padding: 55px 45px;
  }
}

@media (max-width: 760px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 20px 30px rgba(7, 42, 58, 0.08);
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 15px 20px 25px;
    pointer-events: none;
    position: absolute;
    top: 72px;
    transform: translateY(-10px);
    transition: 0.2s ease;
    width: 100%;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 5px;
  }

  .main-nav .nav-contact {
    border: 0;
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    padding: 122px 0 68px;
  }

  .hero-grid,
  .about-grid,
  .cards-grid,
  .partner-list,
  .contact-card {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
    letter-spacing: -2.7px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .image-panel {
    height: 445px;
    width: 94%;
  }

  .hero-badge {
    right: 0;
  }

  .about-grid {
    gap: 38px;
  }

  .about-copy {
    padding-left: 25px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

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

  .card-icon {
    margin-bottom: 30px;
  }

  .contact-card {
    gap: 35px;
    padding: 45px 28px;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 38px;
    letter-spacing: -2.3px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .trust-row {
    display: grid;
    gap: 13px;
    grid-template-columns: 1fr 1fr;
  }

  .trust-row div:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 390px;
  }

  .image-panel {
    border-radius: 140px 140px 20px 20px;
    height: 380px;
  }

  .floating-card {
    bottom: 18px;
    padding: 13px;
  }

  .hero-badge {
    display: none;
  }

  .partner-card {
    padding: 28px;
  }

  .contact-card {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-item {
    gap: 10px;
    padding: 13px;
  }

  .contact-item strong {
    font-size: 12px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
