:root {
  --blue: #075B8A;
  --blue-dark: #043E61;
  --teal: #159E91;
  --mint: #A8EADB;

  --bg: #F7FBFA;
  --white: #ffffff;

  --text: #12343B;
  --muted: #60777A;

  --line: #DCEAE7;

  --radius: 22px;
  --max: 1180px;
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}


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

.site-header {
  width: 100%;
  height: 82px;

  padding: 0 4vw;

  display: flex;
  align-items: center;

  justify-content: space-between;

  background: rgba(247, 251, 250, 0.88);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(220, 234, 231, 0.8);

  position: sticky;
  top: 0;
  z-index: 100;
}


.logo {
  display: flex;
  align-items: center;

  width: 135px;
  height: 42px;

  flex-shrink: 0;
}

.logo img {
  display: block;

  width: 135px;
  height: 74px;

  object-fit: contain;
  object-position: left center;
}


nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--blue);

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--teal);
}


.nav-btn {
  background: var(--blue);
  color: white;

  padding: 13px 20px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.25s ease;
}

.nav-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}


.menu {
  display: none;

  border: 0;
  background: transparent;

  font-size: 28px;

  color: var(--blue);

  cursor: pointer;
}


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

.hero {
  min-height: calc(100vh - 82px);

  max-width: 1380px;

  margin: 0 auto;

  padding:
    100px
    7vw
    120px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(350px, 0.95fr);

  gap: 70px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -220px;
  top: 20px;

  background:
    radial-gradient(
      circle,
      rgba(168, 234, 219, 0.38),
      transparent 68%
    );

  pointer-events: none;
}


.eyebrow {
  color: var(--teal);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.16em;

  margin-bottom: 20px;
}


.hero h1 {
  margin: 0;

  color: var(--blue);

  font-size: clamp(52px, 6.3vw, 92px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.hero h1 span {
  color: var(--teal);
}


.hero-lead {
  max-width: 620px;

  margin: 32px 0 15px;

  color: var(--text);

  font-size: 23px;

  line-height: 1.4;

  font-weight: 650;
}


.hero-description {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.7;
}


.actions {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 34px;
}


.btn {
  display: inline-flex;

  align-items: center;
  gap: 12px;

  padding: 15px 23px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 750;

  transition: 0.25s ease;
}


.btn.primary {
  background: var(--blue);

  color: white;

  box-shadow:
    0 10px 30px rgba(7, 91, 138, 0.18);
}


.btn.primary:hover {
  background: var(--teal);

  transform: translateY(-3px);

  box-shadow:
    0 15px 35px rgba(21, 158, 145, 0.22);
}


.text-link {
  color: var(--blue);

  font-size: 14px;

  font-weight: 700;
}


.text-link span,
.btn span,
.arrow-link span {
  transition: 0.25s ease;
}


.text-link:hover span,
.btn:hover span,
.arrow-link:hover span {
  transform: translateX(5px);
}


.hero-status {
  margin-top: 30px;

  display: flex;

  align-items: center;

  gap: 9px;

  color: #789092;

  font-size: 12px;
}


.hero-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--teal);
}


.hero-status i {
  width: 1px;
  height: 14px;

  background: var(--line);

  margin: 0 4px;
}


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

.hero-visual {
  height: 500px;

  display: flex;

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

  position: relative;
}


.health-core {
  width: 250px;
  height: 250px;

  border-radius: 50%;

  position: relative;

  display: flex;

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

  background:
    radial-gradient(
      circle at 35% 30%,
      #ffffff,
      #DFF8F1 42%,
      #B9E9E0 70%,
      #86CFC5
    );

  box-shadow:
    0 30px 80px rgba(7, 91, 138, 0.18),
    inset 0 0 40px rgba(255,255,255,0.8);

  z-index: 3;
}


.core-dot {
  position: absolute;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow:
    0 0 0 10px rgba(21,158,145,0.12),
    0 0 35px rgba(21,158,145,0.6);
}


.core-text {
  text-align: center;

  display: flex;
  flex-direction: column;

  gap: 7px;

  transform: translateY(48px);
}


.core-text strong {
  color: var(--blue);

  font-size: 27px;

  letter-spacing: 0.04em;
}


.core-text small {
  color: #477579;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.15em;

  line-height: 1.5;
}


.pulse-ring {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(21,158,145,0.22);

  z-index: 1;
}


.ring-one {
  width: 320px;
  height: 320px;
}


.ring-two {
  width: 430px;
  height: 430px;

  border-color: rgba(7,91,138,0.12);
}


.ring-three {
  width: 540px;
  height: 540px;

  border-color: rgba(21,158,145,0.08);
}


.signal {
  position: absolute;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 18px rgba(7,91,138,0.35);
}


.signal-1 {
  top: 24%;
  left: 22%;
}


.signal-2 {
  right: 18%;
  top: 35%;

  background: var(--teal);
}


.signal-3 {
  bottom: 22%;
  left: 29%;
}


/* =========================
   INTRO
========================= */

.intro {
  max-width: var(--max);

  margin: 0 auto;

  padding: 125px 28px;

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

  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 90px;

  align-items: center;
}


.intro-content {
  max-width: 680px;
}


.intro h2 {
  margin: 0;

  color: var(--blue);

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

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.intro h2 span {
  color: var(--teal);
}


.intro-description {
  max-width: 500px;
}


.intro-description p {
  margin: 0;

  color: var(--muted);

  font-size: 19px;

  line-height: 1.7;
}


.arrow-link {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-top: 28px;

  color: var(--blue);

  font-size: 14px;

  font-weight: 750;
}


/* =========================
   FLOW
========================= */

.flow {
  max-width: var(--max);

  margin: 0 auto;

  padding: 110px 28px 130px;
}


.section-head {
  max-width: 720px;

  margin-bottom: 55px;
}


.section-head h2 {
  margin: 0;

  color: var(--blue);

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.section-head h2 span {
  color: var(--teal);
}


.section-head p {
  margin-top: 20px;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.6;
}


.grid4 {
  display: grid;

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

  gap: 18px;
}


.flow-card {
  min-height: 310px;

  padding: 28px;

  background: white;

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

  border-radius: var(--radius);

  position: relative;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.flow-card::before {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  right: -65px;
  top: -65px;

  border-radius: 50%;

  background: rgba(168,234,219,0.25);
}


.flow-card:hover {
  transform: translateY(-8px);

  border-color: rgba(21,158,145,0.35);

  box-shadow:
    0 25px 50px rgba(7,91,138,0.10);
}


.card-number {
  color: #9BB4B6;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


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

  margin: 55px 0 30px;

  display: flex;

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

  border-radius: 14px;

  background: #E8F8F4;

  color: var(--teal);

  font-size: 23px;

  font-weight: 700;
}


.flow-card h3 {
  margin: 0 0 9px;

  color: var(--blue);

  font-size: 19px;

  letter-spacing: 0.05em;
}


.flow-card p {
  margin: 0;

  color: var(--muted);

  font-size: 15px;
}


.card-line {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--teal)
    );
}


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

.dark {
  min-height: 570px;

  padding: 120px max(28px, calc((100vw - 1180px)/2 + 28px));

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 52%,
      #087C86 100%
    );

  color: white;
}


.dark-glow {
  position: absolute;

  width: 550px;
  height: 550px;

  right: -160px;
  top: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.22),
      transparent 68%
    );
}


.dark .eyebrow {
  color: var(--mint);

  position: relative;
}


.dark h2 {
  max-width: 850px;

  margin: 0 0 22px;

  position: relative;

  font-size: clamp(48px, 6vw, 76px);

  line-height: 1;

  letter-spacing: -0.06em;
}


.dark h2 span {
  color: var(--mint);
}


.dark p {
  max-width: 620px;

  margin-bottom: 35px;

  color: rgba(255,255,255,0.78);

  font-size: 18px;

  line-height: 1.6;

  position: relative;
}


.btn.light {
  position: relative;

  background: white;

  color: var(--blue);
}


.btn.light:hover {
  background: var(--mint);

  color: var(--blue-dark);

  transform: translateY(-3px);
}


/* =========================
   PARTNER LOGOS
========================= */

.partner-logos {
  background: white;

  padding: 115px 0;

  overflow: hidden;

  border-bottom: 1px solid var(--line);
}


.partner-container {
  max-width: var(--max);

  margin: auto;

  padding: 0 28px;
}


.partner-logos h2 {
  margin: 0 0 20px;

  color: var(--blue);

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.partner-logos h2 span {
  color: var(--teal);
}


.partner-subtitle {
  max-width: 650px;

  margin-bottom: 60px;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.6;
}


.logo-slider {
  width: 100%;

  overflow: hidden;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 8%,
      black 92%,
      transparent
    );
}


.logo-track {
  display: flex;

  align-items: center;

  gap: 22px;

  width: max-content;

  animation:
    aicaLogoScroll 30s linear infinite;
}


.partner-logo {
  width: 205px;
  height: 115px;

  padding: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #F4FAF9
    );

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

  border-radius: 18px;

  display: flex;

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

  flex-shrink: 0;

  box-shadow:
    0 8px 30px rgba(7,91,138,0.04);
}


.partner-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}


.logo-slider:hover .logo-track {
  animation-play-state: paused;
}


@keyframes aicaLogoScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

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

@media (max-width: 900px) {

  nav {
    display: none;
  }

  .nav-btn {
    margin-left: auto;
    margin-right: 15px;
  }

  .menu {
    display: block;
  }


  .hero {
    min-height: auto;

    padding:
      75px
      24px
      80px;

    grid-template-columns: 1fr;

    gap: 50px;
  }


  .hero h1 {
    font-size: clamp(50px, 13vw, 75px);
  }


  .hero-visual {
    height: 390px;
  }


  .health-core {
    width: 190px;
    height: 190px;
  }


  .ring-one {
    width: 250px;
    height: 250px;
  }


  .ring-two {
    width: 330px;
    height: 330px;
  }


  .ring-three {
    width: 410px;
    height: 410px;
  }


  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }


  .intro {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      85px 24px;
  }


  .flow {
    padding:
      85px 24px
      100px;
  }


  .partner-container {
    padding: 0 24px;
  }


}


@media (max-width: 600px) {

  .site-header {
    height: 72px;

    padding: 0 18px;
  }


  .logo,
  .logo img {
    width: 115px;
    height: 36px;
  }


  .nav-btn {
    padding: 10px 14px;

    font-size: 12px;
  }


  .hero {
    padding-top: 60px;
  }


  .hero-lead {
    font-size: 19px;
  }


  .hero-description {
    font-size: 15px;
  }


  .actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }


  .hero-visual {
    height: 320px;
  }


  .health-core {
    width: 155px;
    height: 155px;
  }


  .core-text {
    transform: translateY(37px);
  }


  .core-text strong {
    font-size: 22px;
  }


  .ring-one {
    width: 210px;
    height: 210px;
  }


  .ring-two {
    width: 275px;
    height: 275px;
  }


  .ring-three {
    width: 340px;
    height: 340px;
  }


  .intro h2,
  .section-head h2,
  .partner-logos h2 {
    font-size: 42px;
  }


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


  .flow-card {
    min-height: 250px;
  }


  .card-icon {
    margin-top: 35px;
  }


  .dark {
    min-height: 480px;

    padding:
      85px 24px;
  }


  .dark h2 {
    font-size: 48px;
  }


  .partner-logos {
    padding: 80px 0;
  }


  .partner-logo {
    width: 155px;
    height: 90px;

    padding: 17px;
  }


  .logo-track {
    gap: 15px;

    animation-duration: 23s;
  }


}

/* =====================================================
   AICA HEALTH — PREMIUM FOOTER
===================================================== */

.site-footer {
  width: 100%;
  margin: 0;
  padding: 75px 0 0;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -270px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168, 234, 219, 0.22),
      transparent 70%
    );

  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -220px;
  bottom: -240px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(21, 158, 145, 0.18),
      transparent 70%
    );

  pointer-events: none;
}

/* Main footer layout */

.footer-container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding-bottom: 65px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.15fr;
  gap: 55px;

  position: relative;
  z-index: 2;
}

/* Brand */

.site-footer .footer-brand {
  max-width: 340px;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;

  width: 145px !important;
  height: 52px !important;

  margin: 0 0 22px;
  padding: 0;

  background: transparent;
  border: 0;
  overflow: hidden;

  text-decoration: none;
}

.site-footer .footer-logo img {
  display: block !important;

  width: 145px !important;
  height: 52px !important;

  max-width: 145px !important;
  max-height: 52px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;
  object-position: left center !important;
}

.site-footer .footer-brand p {
  max-width: 305px;

  margin: 0 0 27px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.7;
}

/* Footer CTA */

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 11px 17px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;

  color: #FFFFFF;

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

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-cta:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.footer-cta span,
.footer-contact span {
  transition: transform 0.25s ease;
}

.footer-cta:hover span,
.footer-contact:hover span {
  transform: translateX(4px);
}

/* Footer columns */

.site-footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.site-footer .footer-column h4 {
  margin: 2px 0 12px;

  color: var(--mint);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  font-weight: 500;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-column a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Connect */

.site-footer .footer-connect p {
  max-width: 195px;

  margin: 0 0 8px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.65;
}

.site-footer .footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--mint) !important;

  font-size: 14px;
  font-weight: 700 !important;
}

/* Bottom bar */

.site-footer .footer-bottom {
  width: min(var(--max), calc(100% - 56px));

  min-height: 70px;

  margin: 0 auto;
  padding: 22px 0;

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

  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  position: relative;
  z-index: 2;

  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;
}

.site-footer .footer-bottom > span:nth-child(2) {
  text-align: center;
}

.site-footer .footer-bottom a {
  justify-self: end;

  color: var(--mint);

  font-weight: 700;
  text-decoration: none;

  transition: color 0.2s ease;
}

.site-footer .footer-bottom a:hover {
  color: #FFFFFF;
}

/* Footer responsive */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }

  .footer-connect {
    grid-column: 2 / 4;
  }
}

@media (max-width: 800px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-container {
    width: min(100% - 48px, 650px);
    grid-template-columns: 1fr 1fr;
    gap: 42px 35px;
    padding-bottom: 45px;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-connect {
    grid-column: auto;
  }

  .site-footer .footer-bottom {
    width: min(100% - 48px, 650px);
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 20px 0;
  }

  .site-footer .footer-bottom > span:nth-child(2) {
    text-align: left;
  }

  .site-footer .footer-bottom a {
    justify-self: start;
  }
}

@media (max-width: 500px) {
  .footer-container {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer .footer-brand,
  .footer-connect {
    grid-column: auto;
  }

  .site-footer .footer-logo,
  .site-footer .footer-logo img {
    width: 130px !important;
    height: 44px !important;
    max-width: 130px !important;
    max-height: 44px !important;
  }

  .site-footer .footer-bottom {
    width: calc(100% - 40px);
  }
}

/* =====================================================
   AICA ABOUT PAGE — CORRECTED LAYOUT
===================================================== */


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

.about-hero {
  width: min(1180px, calc(100% - 56px));

  min-height: auto;

  margin: 0 auto;

  padding: 100px 0 90px;

  display: grid;

  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);

  gap: 80px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


/* Soft background glow */

.about-hero::before {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  right: -160px;
  top: 0;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168, 234, 219, 0.38),
      transparent 68%
    );

  pointer-events: none;
}


/* Main content */

.about-hero-content {
  position: relative;

  z-index: 2;

  max-width: 800px;
}


.about-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6.3vw, 86px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.about-hero h1 span {
  color: #159E91;
}


.about-hero-content > p {
  max-width: 720px;

  margin: 30px 0 0;

  color: #60777A;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   RIGHT SIDE STATS
===================================================== */

.about-hero-side {
  width: 100%;

  max-width: 310px;

  margin-left: auto;

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;
}


.about-stat {
  min-height: 72px;

  padding: 18px 0;

  border-top: 1px solid #DCEAE7;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.about-stat:last-child {
  border-bottom: 1px solid #DCEAE7;
}


.about-stat strong {
  color: #159E91;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.about-stat span {
  color: #075B8A;

  font-size: 13px;

  font-weight: 750;

  text-align: right;
}


/* =====================================================
   WHY AICA
===================================================== */

.about-why {
  width: 100%;

  margin: 0;

  padding: 100px max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 90px;

  align-items: start;
}


.about-why-heading {
  max-width: 590px;
}


.about-why-heading h2 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(40px, 4.7vw, 62px);

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.about-why-heading h2 span {
  color: #159E91;
}


.about-why-content {
  max-width: 560px;

  padding-top: 10px;
}


.about-why-content p {
  margin: 0 0 22px;

  color: #60777A;

  font-size: 16px;

  line-height: 1.7;
}


.about-why-content .large-copy {
  margin-bottom: 28px;

  color: #12343B;

  font-size: 22px;

  line-height: 1.45;

  font-weight: 650;
}


/* =====================================================
   PRINCIPLE SECTION
===================================================== */

.about-principle {
  min-height: auto;

  padding: 105px max(28px, calc((100vw - 1180px) / 2 + 28px));

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;
}


.principle-glow {
  position: absolute;

  width: 550px;
  height: 550px;

  right: -180px;
  top: -220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168, 234, 219, 0.22),
      transparent 68%
    );

  pointer-events: none;
}


.principle-inner {
  width: min(1180px, 100%);

  margin: 0 auto;

  position: relative;

  z-index: 2;
}


.about-principle .eyebrow {
  color: #A8EADB;

  margin-bottom: 24px;
}


.about-principle h2 {
  max-width: 800px;

  margin: 0;

  color: #FFFFFF;

  font-size: clamp(48px, 6vw, 76px);

  line-height: 0.98;

  letter-spacing: -0.06em;

  font-weight: 850;
}


.about-principle h2 span {
  color: #A8EADB;
}


.about-principle p {
  max-width: 570px;

  margin: 30px 0 0;

  color: rgba(255,255,255,0.72);

  font-size: 16px;

  line-height: 1.7;
}


/* =====================================================
   AICA APPROACH
===================================================== */

.about-approach {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 100px 0 110px;
}


.about-approach .section-head {
  max-width: 730px;

  margin-bottom: 50px;
}


.about-approach .section-head h2 {
  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.about-approach .section-head h2 span {
  color: #159E91;
}


.about-approach .section-head p {
  max-width: 650px;

  margin-top: 20px;

  color: #60777A;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   APPROACH CARDS
===================================================== */

.about-pillars {
  display: grid;

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

  gap: 18px;
}


.about-pillars article {
  min-height: 290px;

  padding: 28px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 22px;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.about-pillars article::before {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  right: -70px;
  top: -70px;

  border-radius: 50%;

  background: rgba(168,234,219,0.25);
}


.about-pillars article:hover {
  transform: translateY(-6px);

  border-color: rgba(21,158,145,0.35);

  box-shadow:
    0 20px 45px rgba(7,91,138,0.10);
}


.pillar-number {
  color: #9BB4B6;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


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

  margin: 38px 0 25px;

  display: flex;

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

  border-radius: 14px;

  background: #E8F8F4;

  color: #159E91;

  font-size: 22px;

  font-weight: 700;
}


.about-pillars h3 {
  margin: 0 0 10px;

  color: #075B8A;

  font-size: 19px;

  line-height: 1.25;
}


.about-pillars p {
  margin: 0;

  color: #60777A;

  font-size: 14px;

  line-height: 1.65;
}


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

.about-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto 90px;

  padding: 55px 60px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #E8F8F4,
      #F4FBFA
    );

  border: 1px solid #DCEAE7;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}


.about-cta h2 {
  max-width: 650px;

  margin: 0;

  color: #075B8A;

  font-size: clamp(38px, 4.2vw, 55px);

  line-height: 1;

  letter-spacing: -0.055em;
}


.about-cta h2 span {
  color: #159E91;
}


.about-cta-btn {
  flex-shrink: 0;

  background: #075B8A;

  color: #FFFFFF;
}


.about-cta-btn:hover {
  background: #159E91;

  color: #FFFFFF;

  transform: translateY(-3px);
}


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

@media (max-width: 900px) {

  .about-hero {
    width: calc(100% - 48px);

    padding: 75px 0 70px;

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .about-hero-side {
    max-width: 500px;

    margin-left: 0;
  }


  .about-why {
    padding: 80px 24px;

    grid-template-columns: 1fr;

    gap: 35px;
  }


  .about-why-content {
    padding-top: 0;
  }


  .about-pillars {
    grid-template-columns: 1fr;
  }


  .about-cta {
    width: calc(100% - 48px);

    padding: 45px 35px;

    flex-direction: column;

    align-items: flex-start;
  }

}


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

@media (max-width: 600px) {

  .about-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;

    gap: 40px;
  }


  .about-hero h1 {
    font-size: 49px;
  }


  .about-hero-content > p {
    margin-top: 22px;

    font-size: 15px;
  }


  .about-stat {
    min-height: 62px;

    padding: 15px 0;
  }


  .about-why {
    padding: 65px 20px;
  }


  .about-why-heading h2 {
    font-size: 40px;
  }


  .about-why-content .large-copy {
    font-size: 20px;
  }


  .about-principle {
    padding:
      75px 24px
      80px;
  }


  .about-principle h2 {
    font-size: 46px;
  }


  .about-approach {
    width: calc(100% - 40px);

    padding: 70px 0 80px;
  }


  .about-approach .section-head h2 {
    font-size: 40px;
  }


  .about-pillars article {
    min-height: 260px;
  }


  .about-cta {
    width: calc(100% - 40px);

    margin-bottom: 65px;

    padding: 38px 24px;

    border-radius: 20px;
  }


  .about-cta h2 {
    font-size: 38px;
  }

}

/* =====================================================
   ABOUT HERO — RIGHT SIDE FIX
===================================================== */

.about-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 95px 0 85px;

  display: grid;

  grid-template-columns: minmax(0, 1fr) 330px;

  column-gap: 70px;

  align-items: center;

  position: relative;

  overflow: visible;
}


/* LEFT CONTENT */

.about-hero-content {
  width: 100%;

  max-width: 780px;

  position: relative;

  z-index: 2;
}


.about-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6.2vw, 84px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.about-hero h1 span {
  color: #159E91;
}


.about-hero-content > p {
  width: 100%;

  max-width: 720px;

  margin: 28px 0 0;

  color: #60777A;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   RIGHT PANEL
===================================================== */

.about-hero-side {
  width: 100%;

  max-width: 330px;

  margin: 0;

  padding: 0;

  display: flex;

  flex-direction: column;

  position: relative;

  z-index: 5;

  background:
    linear-gradient(
      180deg,
      rgba(232, 248, 244, 0.55),
      rgba(247, 251, 250, 0.25)
    );

  border-left: 1px solid rgba(21, 158, 145, 0.12);

  border-right: 1px solid rgba(21, 158, 145, 0.08);
}


/* Each row */

.about-stat {
  width: 100%;

  min-height: 82px;

  padding: 0 24px;

  display: grid;

  grid-template-columns: 45px minmax(0, 1fr);

  align-items: center;

  column-gap: 15px;

  border-top: 1px solid #DCEAE7;

  background: rgba(255,255,255,0.22);
}


.about-stat:last-child {
  border-bottom: 1px solid #DCEAE7;
}


/* Number */

.about-stat .stat-number {
  color: #159E91;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-align: left;
}


/* Text */

.about-stat .stat-text {
  color: #075B8A;

  font-size: 14px;

  font-weight: 750;

  line-height: 1.35;

  text-align: left;

  white-space: normal;

  overflow-wrap: break-word;
}


/* Hover */

.about-stat {
  transition:
    background 0.25s ease,
    padding-left 0.25s ease;
}


.about-stat:hover {
  background: rgba(232, 248, 244, 0.75);

  padding-left: 29px;
}


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

@media (max-width: 900px) {

  .about-hero {
    width: calc(100% - 48px);

    padding: 75px 0 70px;

    grid-template-columns: 1fr;

    row-gap: 45px;
  }


  .about-hero-side {
    max-width: 500px;

    margin: 0;

    border-left: 0;

    border-right: 0;
  }


  .about-stat {
    min-height: 70px;
  }

}


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

@media (max-width: 600px) {

  .about-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;

    row-gap: 35px;
  }


  .about-hero h1 {
    font-size: 48px;
  }


  .about-hero-content > p {
    font-size: 15px;

    line-height: 1.65;
  }


  .about-hero-side {
    max-width: 100%;
  }


  .about-stat {
    min-height: 64px;

    padding: 0 18px;

    grid-template-columns: 40px minmax(0, 1fr);
  }


  .about-stat .stat-text {
    font-size: 13px;
  }

}

/* =====================================================
   AICA TECHNOLOGY PAGE
===================================================== */


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

.technology-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 90px 0 85px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(360px, 0.8fr);

  gap: 70px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.technology-hero-content {
  position: relative;

  z-index: 2;
}


.technology-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6vw, 82px);

  line-height: 0.99;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.technology-hero h1 span {
  color: #159E91;
}


.technology-hero-content > p {
  max-width: 690px;

  margin: 30px 0 0;

  color: #60777A;

  font-size: 18px;

  line-height: 1.7;
}


/* =====================================================
   TECHNOLOGY VISUAL
===================================================== */

.technology-visual {
  height: 430px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}


.tech-core {
  width: 190px;
  height: 190px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #FFFFFF,
      #DFF8F1 45%,
      #A8EADB 100%
    );

  box-shadow:
    0 30px 70px rgba(7,91,138,0.16),
    inset 0 0 35px rgba(255,255,255,0.9);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  position: relative;

  z-index: 4;
}


.tech-core-dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #159E91;

  box-shadow:
    0 0 0 8px rgba(21,158,145,0.12),
    0 0 25px rgba(21,158,145,0.45);

  margin-bottom: 13px;
}


.tech-core strong {
  color: #075B8A;

  font-size: 25px;

  letter-spacing: 0.04em;
}


.tech-core small {
  margin-top: 7px;

  color: #477579;

  font-size: 7px;

  font-weight: 800;

  line-height: 1.5;

  letter-spacing: 0.14em;

  text-align: center;
}


/* Orbits */

.tech-orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(21,158,145,0.20);
}


.orbit-1 {
  width: 250px;
  height: 250px;
}


.orbit-2 {
  width: 340px;
  height: 340px;

  border-color: rgba(7,91,138,0.13);
}


.orbit-3 {
  width: 430px;
  height: 430px;

  border-color: rgba(21,158,145,0.08);
}


/* Nodes */

.tech-node {
  position: absolute;

  padding: 9px 13px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 999px;

  color: #075B8A;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.08em;

  box-shadow:
    0 8px 25px rgba(7,91,138,0.07);

  z-index: 5;
}


.node-1 {
  top: 18%;

  left: 12%;
}


.node-2 {
  right: 6%;

  top: 43%;
}


.node-3 {
  bottom: 16%;

  left: 17%;
}


/* =====================================================
   TECHNOLOGY INTRO
===================================================== */

.technology-intro {
  width: 100%;

  padding:
    95px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns: 1fr 0.85fr;

  gap: 90px;

  align-items: center;
}


.technology-intro h2 {
  max-width: 650px;

  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.technology-intro h2 span {
  color: #159E91;
}


.technology-intro > p {
  max-width: 560px;

  margin: 0;

  color: #60777A;

  font-size: 17px;

  line-height: 1.75;
}


/* =====================================================
   TECHNOLOGY STACK
===================================================== */

.technology-stack {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 100px 0 110px;

  display: grid;

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

  gap: 18px;
}


.technology-card {
  min-height: 370px;

  padding: 30px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 22px;

  position: relative;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.technology-card::before {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  right: -95px;
  top: -95px;

  border-radius: 50%;

  background: rgba(168,234,219,0.25);
}


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

  border-color: rgba(21,158,145,0.35);

  box-shadow:
    0 25px 55px rgba(7,91,138,0.10);
}


.technology-card-top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}


.technology-card-top > span:first-child {
  color: #9BB4B6;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


.technology-card-label {
  color: #159E91;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.technology-icon {
  width: 52px;
  height: 52px;

  margin: 55px 0 27px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #E8F8F4;

  border-radius: 15px;

  color: #159E91;

  font-size: 24px;

  font-weight: 700;
}


.technology-card h2 {
  max-width: 280px;

  margin: 0 0 14px;

  color: #075B8A;

  font-size: 25px;

  line-height: 1.05;

  letter-spacing: -0.035em;
}


.technology-card h2 span {
  color: #159E91;
}


.technology-card p {
  max-width: 330px;

  margin: 0;

  color: #60777A;

  font-size: 14px;

  line-height: 1.7;
}


.technology-card-line {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #075B8A,
      #159E91
    );
}


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

.technology-process {
  width: 100%;

  padding:
    100px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #F7FBFA;

  border-top: 1px solid #DCEAE7;
}


.technology-process-heading {
  max-width: 700px;

  margin-bottom: 55px;
}


.technology-process-heading h2 {
  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.technology-process-heading h2 span {
  color: #159E91;
}


/* Process flow */

.process-flow {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

  gap: 20px;

  align-items: center;
}


.process-step {
  padding: 25px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 18px;
}


.process-step > span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


.process-step h3 {
  margin: 18px 0 7px;

  color: #075B8A;

  font-size: 18px;
}


.process-step p {
  margin: 0;

  color: #60777A;

  font-size: 13px;
}


.process-arrow {
  color: #159E91;

  font-size: 24px;

  font-weight: 300;
}


/* =====================================================
   DEVELOPMENT
===================================================== */

.technology-development {
  min-height: 480px;

  padding:
    100px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;
}


.development-glow {
  position: absolute;

  width: 600px;
  height: 600px;

  right: -200px;
  top: -250px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.22),
      transparent 68%
    );
}


.development-content {
  width: min(1180px, 100%);

  margin: 0 auto;

  position: relative;

  z-index: 2;
}


.technology-development .eyebrow {
  color: #A8EADB;
}


.technology-development h2 {
  max-width: 850px;

  margin: 0;

  color: #FFFFFF;

  font-size: clamp(48px, 6vw, 75px);

  line-height: 0.98;

  letter-spacing: -0.06em;
}


.technology-development h2 span {
  color: #A8EADB;
}


.technology-development p {
  max-width: 600px;

  margin: 28px 0 30px;

  color: rgba(255,255,255,0.72);

  font-size: 17px;

  line-height: 1.7;
}


.development-btn {
  background: #FFFFFF;

  color: #075B8A;
}


.development-btn:hover {
  background: #A8EADB;

  color: #043E61;

  transform: translateY(-3px);
}


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

@media (max-width: 900px) {

  .technology-hero {
    width: calc(100% - 48px);

    grid-template-columns: 1fr;

    padding: 75px 0;

    gap: 40px;
  }


  .technology-visual {
    height: 380px;
  }


  .technology-intro {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 80px 24px;
  }


  .technology-stack {
    width: calc(100% - 48px);

    grid-template-columns: 1fr;

    padding: 80px 0;
  }


  .technology-process {
    padding: 80px 24px;
  }


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

    gap: 12px;
  }


  .process-arrow {
    text-align: center;

    transform: rotate(90deg);
  }


  .technology-development {
    padding: 85px 24px;
  }

}


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

@media (max-width: 600px) {

  .technology-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;
  }


  .technology-hero h1 {
    font-size: 48px;
  }


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


  .technology-visual {
    height: 310px;
  }


  .tech-core {
    width: 145px;
    height: 145px;
  }


  .tech-core strong {
    font-size: 21px;
  }


  .orbit-1 {
    width: 200px;
    height: 200px;
  }


  .orbit-2 {
    width: 255px;
    height: 255px;
  }


  .orbit-3 {
    width: 315px;
    height: 315px;
  }


  .tech-node {
    font-size: 7px;

    padding: 7px 9px;
  }


  .node-1 {
    left: 3%;
  }


  .node-2 {
    right: 0;
  }


  .technology-intro {
    padding: 65px 20px;
  }


  .technology-intro h2 {
    font-size: 40px;
  }


  .technology-stack {
    width: calc(100% - 40px);

    padding: 70px 0 80px;
  }


  .technology-card {
    min-height: 300px;

    padding: 25px;
  }


  .technology-icon {
    margin-top: 35px;
  }


  .technology-process {
    padding: 70px 20px;
  }


  .technology-process-heading h2 {
    font-size: 40px;
  }


  .technology-development {
    padding: 75px 24px 85px;
  }


  .technology-development h2 {
    font-size: 46px;
  }

}

/* =====================================================
   AICA USE CASES PAGE
===================================================== */


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

.usecases-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 90px 0 85px;

  display: grid;

  grid-template-columns: minmax(0, 1.3fr) 330px;

  gap: 80px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.usecases-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -190px;
  top: -100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.40),
      transparent 68%
    );

  pointer-events: none;
}


.usecases-hero-content {
  position: relative;

  z-index: 2;

  max-width: 800px;
}


.usecases-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6.3vw, 84px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.usecases-hero h1 span {
  color: #159E91;
}


.usecases-hero-content > p {
  max-width: 690px;

  margin: 30px 0 0;

  color: #60777A;

  font-size: 18px;

  line-height: 1.7;
}


/* Hero visual */

.usecases-hero-badge {
  position: relative;

  z-index: 2;

  min-height: 290px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(
      145deg,
      rgba(232,248,244,0.85),
      rgba(247,251,250,0.40)
    );

  border: 1px solid #DCEAE7;

  border-radius: 28px;
}


.badge-circle {
  width: 145px;
  height: 145px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #075B8A,
      #159E91
    );

  color: #FFFFFF;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 25px 55px rgba(7,91,138,0.18);
}


.badge-circle span {
  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.18em;
}


.badge-circle strong {
  margin-top: 5px;

  font-size: 26px;

  letter-spacing: -0.03em;
}


.usecases-hero-badge p {
  margin: 22px 0 0;

  color: #075B8A;

  font-size: 13px;

  font-weight: 700;
}


/* =====================================================
   INTRO
===================================================== */

.usecases-intro {
  width: 100%;

  padding:
    95px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns: 1fr 0.85fr;

  gap: 90px;

  align-items: center;
}


.usecases-intro h2 {
  max-width: 650px;

  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.usecases-intro h2 span {
  color: #159E91;
}


.usecases-intro > p {
  max-width: 560px;

  margin: 0;

  color: #60777A;

  font-size: 17px;

  line-height: 1.75;
}


/* =====================================================
   USE CASE CARDS
===================================================== */

.usecases-grid {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 100px 0 115px;

  display: grid;

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

  gap: 18px;
}


.usecase-card {
  min-height: 365px;

  padding: 30px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 22px;

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.usecase-card::before {
  content: "";

  position: absolute;

  width: 210px;
  height: 210px;

  right: -105px;
  top: -105px;

  border-radius: 50%;

  background: rgba(168,234,219,0.23);
}


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

  border-color: rgba(21,158,145,0.35);

  box-shadow:
    0 25px 55px rgba(7,91,138,0.10);
}


/* Featured card */

.usecase-featured {
  background:
    linear-gradient(
      145deg,
      #F1FBF8,
      #FFFFFF
    );
}


.usecase-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;

  z-index: 2;
}


.usecase-number {
  color: #159E91;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.usecase-label {
  color: #9BB4B6;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.usecase-icon {
  width: 52px;
  height: 52px;

  margin: 45px 0 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #E8F8F4;

  border-radius: 15px;

  color: #159E91;

  font-size: 23px;

  font-weight: 700;

  position: relative;

  z-index: 2;
}


.usecase-card h2 {
  max-width: 500px;

  margin: 0 0 13px;

  color: #075B8A;

  font-size: 28px;

  line-height: 1.08;

  letter-spacing: -0.035em;

  position: relative;

  z-index: 2;
}


.usecase-card h2 span {
  color: #159E91;
}


.usecase-card p {
  max-width: 490px;

  margin: 0;

  color: #60777A;

  font-size: 14px;

  line-height: 1.7;

  position: relative;

  z-index: 2;
}


.usecase-link {
  margin-top: auto;

  padding-top: 25px;

  color: #075B8A;

  font-size: 12px;

  font-weight: 800;

  position: relative;

  z-index: 2;
}


.usecase-link span {
  display: inline-block;

  margin-left: 6px;

  color: #159E91;

  transition: transform 0.2s ease;
}


.usecase-card:hover .usecase-link span {
  transform: translateX(5px);
}


/* =====================================================
   JOURNEY
===================================================== */

.usecases-journey {
  width: 100%;

  padding:
    105px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background:
    #F7FBFA;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;
}


.usecases-journey-heading {
  max-width: 720px;

  margin-bottom: 60px;
}


.usecases-journey-heading h2 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(43px, 5vw, 64px);

  line-height: 1;

  letter-spacing: -0.055em;
}


.usecases-journey-heading h2 span {
  color: #159E91;
}


/* Journey flow */

.journey-steps {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

  gap: 18px;

  align-items: center;
}


.journey-step {
  min-height: 145px;

  padding: 24px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 18px;
}


.journey-step > span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


.journey-step h3 {
  margin: 22px 0 6px;

  color: #075B8A;

  font-size: 20px;
}


.journey-step p {
  margin: 0;

  color: #60777A;

  font-size: 13px;
}


.journey-line {
  width: 35px;

  height: 1px;

  background: #BFDCD7;
}


.journey-line::after {
  content: "→";

  display: block;

  margin-top: -10px;

  color: #159E91;

  font-size: 17px;
}


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

.usecases-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 90px auto;

  padding: 60px;

  border: 1px solid #DCEAE7;

  border-radius: 25px;

  background:
    linear-gradient(
      135deg,
      #E8F8F4,
      #F5FBFA
    );

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}


.usecases-cta h2 {
  max-width: 680px;

  margin: 0;

  color: #075B8A;

  font-size: clamp(40px, 4.5vw, 58px);

  line-height: 1;

  letter-spacing: -0.055em;
}


.usecases-cta h2 span {
  color: #159E91;
}


.usecases-cta-btn {
  flex-shrink: 0;

  background: #075B8A;

  color: #FFFFFF;
}


.usecases-cta-btn:hover {
  background: #159E91;

  color: #FFFFFF;

  transform: translateY(-3px);
}


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

@media (max-width: 900px) {

  .usecases-hero {
    width: calc(100% - 48px);

    padding: 75px 0;

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .usecases-hero-badge {
    max-width: 500px;

    min-height: 240px;
  }


  .usecases-intro {
    padding: 80px 24px;

    grid-template-columns: 1fr;

    gap: 35px;
  }


  .usecases-grid {
    width: calc(100% - 48px);

    grid-template-columns: 1fr;

    padding: 80px 0 90px;
  }


  .usecases-journey {
    padding: 80px 24px;
  }


  .journey-steps {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .journey-line {
    width: 1px;

    height: 28px;

    margin: 0 auto;

    background: #BFDCD7;
  }


  .journey-line::after {
    content: "↓";

    margin-top: 5px;

    margin-left: -5px;
  }


  .usecases-cta {
    width: calc(100% - 48px);

    margin: 70px auto;

    padding: 45px 35px;

    flex-direction: column;

    align-items: flex-start;
  }

}


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

@media (max-width: 600px) {

  .usecases-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;
  }


  .usecases-hero h1 {
    font-size: 48px;
  }


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


  .usecases-hero-badge {
    min-height: 220px;

    border-radius: 22px;
  }


  .badge-circle {
    width: 125px;
    height: 125px;
  }


  .usecases-intro {
    padding: 65px 20px;
  }


  .usecases-intro h2 {
    font-size: 40px;
  }


  .usecases-grid {
    width: calc(100% - 40px);

    padding: 65px 0 75px;
  }


  .usecase-card {
    min-height: 320px;

    padding: 25px;
  }


  .usecase-card h2 {
    font-size: 25px;
  }


  .usecases-journey {
    padding: 70px 20px;
  }


  .usecases-journey-heading h2 {
    font-size: 40px;
  }


  .usecases-cta {
    width: calc(100% - 40px);

    margin: 60px auto;

    padding: 38px 24px;

    border-radius: 20px;
  }


  .usecases-cta h2 {
    font-size: 38px;
  }

}

/* =====================================================
   AICA — FOR PARTNERS PAGE
===================================================== */


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

.partners-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 90px 0 85px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(350px, 0.85fr);

  gap: 75px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.partners-hero-content {
  position: relative;

  z-index: 2;
}


.partners-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6vw, 82px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.partners-hero h1 span {
  color: #159E91;
}


.partners-hero-content > p {
  max-width: 710px;

  margin: 30px 0;

  color: #60777A;

  font-size: 18px;

  line-height: 1.7;
}


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

.partners-hero-visual {
  height: 410px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}


.partner-center {
  width: 175px;
  height: 175px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #075B8A,
      #159E91
    );

  color: #FFFFFF;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  position: relative;

  z-index: 5;

  box-shadow:
    0 25px 60px rgba(7,91,138,0.20);
}


.partner-center span {
  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.2em;
}


.partner-center strong {
  margin-top: 7px;

  font-size: 26px;

  letter-spacing: -0.04em;
}


.partner-center small {
  margin-top: 5px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.17em;

  opacity: 0.75;
}


/* Orbits */

.partner-orbit {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(21,158,145,0.18);
}


.partner-orbit-1 {
  width: 230px;
  height: 230px;
}


.partner-orbit-2 {
  width: 315px;
  height: 315px;

  border-color: rgba(7,91,138,0.13);
}


.partner-orbit-3 {
  width: 400px;
  height: 400px;

  border-color: rgba(21,158,145,0.08);
}


/* Nodes */

.partner-node {
  position: absolute;

  padding: 9px 13px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 999px;

  color: #075B8A;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.1em;

  box-shadow:
    0 8px 25px rgba(7,91,138,0.08);

  z-index: 6;
}


.partner-node-1 {
  top: 12%;

  left: 7%;
}


.partner-node-2 {
  top: 38%;

  right: 0;
}


.partner-node-3 {
  bottom: 12%;

  left: 8%;
}


.partner-node-4 {
  bottom: 18%;

  right: 7%;
}


/* =====================================================
   PARTNER INTRO
===================================================== */

.partners-intro {
  width: 100%;

  padding:
    95px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns: 1fr 0.85fr;

  gap: 90px;

  align-items: center;
}


.partners-intro h2 {
  max-width: 650px;

  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.partners-intro h2 span {
  color: #159E91;
}


.partners-intro > p {
  max-width: 560px;

  margin: 0;

  color: #60777A;

  font-size: 17px;

  line-height: 1.75;
}


/* =====================================================
   PARTNER CARDS
===================================================== */

.partners-grid {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 100px 0 110px;

  display: grid;

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

  gap: 18px;
}


.partner-card {
  min-height: 355px;

  padding: 30px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 22px;

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.partner-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -110px;
  right: -110px;

  border-radius: 50%;

  background: rgba(168,234,219,0.22);
}


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

  border-color: rgba(21,158,145,0.35);

  box-shadow:
    0 25px 55px rgba(7,91,138,0.10);
}


.partner-card-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  position: relative;

  z-index: 2;
}


.partner-card-top > span:first-child {
  color: #159E91;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.partner-card-label {
  color: #9BB4B6;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.12em;
}


.partner-card-icon {
  width: 52px;
  height: 52px;

  margin: 42px 0 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 15px;

  background: #E8F8F4;

  color: #159E91;

  font-size: 22px;

  font-weight: 700;

  position: relative;

  z-index: 2;
}


.partner-card h2 {
  max-width: 500px;

  margin: 0 0 13px;

  color: #075B8A;

  font-size: 28px;

  line-height: 1.08;

  letter-spacing: -0.035em;

  position: relative;

  z-index: 2;
}


.partner-card h2 span {
  color: #159E91;
}


.partner-card p {
  max-width: 500px;

  margin: 0;

  color: #60777A;

  font-size: 14px;

  line-height: 1.7;

  position: relative;

  z-index: 2;
}


.partner-card-link {
  margin-top: auto;

  padding-top: 25px;

  color: #075B8A;

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  position: relative;

  z-index: 2;
}


.partner-card-link span {
  color: #159E91;

  margin-left: 6px;

  transition: transform 0.2s ease;

  display: inline-block;
}


.partner-card:hover .partner-card-link span {
  transform: translateX(5px);
}


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

.partner-process {
  width: 100%;

  padding:
    100px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #F7FBFA;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;
}


.partner-process-heading {
  max-width: 720px;

  margin-bottom: 55px;
}


.partner-process-heading h2 {
  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.partner-process-heading h2 span {
  color: #159E91;
}


.partner-process-grid {
  display: grid;

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

  gap: 18px;
}


.partner-process-step {
  padding: 30px;

  min-height: 210px;

  background: #FFFFFF;

  border: 1px solid #DCEAE7;

  border-radius: 20px;
}


.partner-process-step > span {
  color: #159E91;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.partner-process-step h3 {
  margin: 25px 0 10px;

  color: #075B8A;

  font-size: 22px;
}


.partner-process-step p {
  margin: 0;

  color: #60777A;

  font-size: 14px;

  line-height: 1.7;
}


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

.partners-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 90px auto;

  padding: 65px;

  border-radius: 25px;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 45px;

  position: relative;

  overflow: hidden;
}


.partners-cta::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -180px;
  top: -200px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.20),
      transparent 68%
    );
}


.partners-cta > div {
  position: relative;

  z-index: 2;
}


.partners-cta .eyebrow {
  color: #A8EADB;
}


.partners-cta h2 {
  max-width: 780px;

  margin: 0;

  color: #FFFFFF;

  font-size: clamp(44px, 5vw, 64px);

  line-height: 1;

  letter-spacing: -0.055em;
}


.partners-cta h2 span {
  color: #A8EADB;
}


.partners-cta p {
  max-width: 590px;

  margin: 22px 0 0;

  color: rgba(255,255,255,0.72);

  font-size: 16px;

  line-height: 1.7;
}


.partners-cta-btn {
  flex-shrink: 0;

  background: #FFFFFF;

  color: #075B8A;

  position: relative;

  z-index: 2;
}


.partners-cta-btn:hover {
  background: #A8EADB;

  color: #043E61;

  transform: translateY(-3px);
}


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

@media (max-width: 900px) {

  .partners-hero {
    width: calc(100% - 48px);

    padding: 75px 0;

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .partners-hero-visual {
    height: 350px;
  }


  .partners-intro {
    padding: 80px 24px;

    grid-template-columns: 1fr;

    gap: 35px;
  }


  .partners-grid {
    width: calc(100% - 48px);

    grid-template-columns: 1fr;

    padding: 80px 0 90px;
  }


  .partner-process {
    padding: 80px 24px;
  }


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


  .partners-cta {
    width: calc(100% - 48px);

    margin: 70px auto;

    padding: 50px 35px;

    flex-direction: column;

    align-items: flex-start;
  }

}


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

@media (max-width: 600px) {

  .partners-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;
  }


  .partners-hero h1 {
    font-size: 48px;
  }


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


  .partners-hero-visual {
    height: 290px;
  }


  .partner-center {
    width: 135px;
    height: 135px;
  }


  .partner-center strong {
    font-size: 21px;
  }


  .partner-orbit-1 {
    width: 190px;
    height: 190px;
  }


  .partner-orbit-2 {
    width: 245px;
    height: 245px;
  }


  .partner-orbit-3 {
    width: 295px;
    height: 295px;
  }


  .partner-node {
    font-size: 7px;

    padding: 7px 9px;
  }


  .partners-intro {
    padding: 65px 20px;
  }


  .partners-intro h2 {
    font-size: 40px;
  }


  .partners-grid {
    width: calc(100% - 40px);

    padding: 65px 0 75px;
  }


  .partner-card {
    min-height: 320px;

    padding: 25px;
  }


  .partner-card h2 {
    font-size: 25px;
  }


  .partner-process {
    padding: 70px 20px;
  }


  .partner-process-heading h2 {
    font-size: 40px;
  }


  .partners-cta {
    width: calc(100% - 40px);

    margin: 60px auto;

    padding: 40px 24px;

    border-radius: 20px;
  }


  .partners-cta h2 {
    font-size: 39px;
  }

}

/* =====================================================
   AICA CONTACT PAGE
===================================================== */


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

.contact-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 90px 0 85px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    320px;

  gap: 80px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.contact-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -220px;
  top: -150px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.40),
      transparent 68%
    );

  pointer-events: none;
}


.contact-hero-content {
  position: relative;

  z-index: 2;
}


.contact-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6vw, 82px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.contact-hero h1 span {
  color: #159E91;
}


.contact-hero-content > p {
  max-width: 720px;

  margin: 30px 0 0;

  color: #60777A;

  font-size: 18px;

  line-height: 1.7;
}


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

.contact-hero-side {
  position: relative;

  z-index: 3;

  border-left: 1px solid #DCEAE7;

  background:
    linear-gradient(
      180deg,
      rgba(232,248,244,0.55),
      rgba(255,255,255,0.25)
    );
}


.contact-side-item {
  min-height: 82px;

  padding: 0 22px;

  display: grid;

  grid-template-columns: 42px minmax(0,1fr);

  gap: 15px;

  align-items: center;

  border-top: 1px solid #DCEAE7;
}


.contact-side-item:last-child {
  border-bottom: 1px solid #DCEAE7;
}


.contact-side-item span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.contact-side-item strong {
  color: #075B8A;

  font-size: 14px;

  font-weight: 750;
}


/* =====================================================
   MAIN CONTACT SECTION
===================================================== */

.contact-section {
  width: 100%;

  padding:
    105px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(500px, 1fr);

  gap: 100px;

  align-items: start;
}


/* =====================================================
   LEFT INFORMATION
===================================================== */

.contact-information {
  padding-top: 10px;
}


.contact-information h2 {
  max-width: 500px;

  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.contact-information h2 span {
  color: #159E91;
}


.contact-description {
  max-width: 500px;

  margin: 25px 0 45px;

  color: #60777A;

  font-size: 16px;

  line-height: 1.75;
}


/* Information items */

.contact-info-list {
  display: flex;

  flex-direction: column;

  border-top: 1px solid #DCEAE7;
}


.contact-info-item {
  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 15px;

  padding: 21px 0;

  border-bottom: 1px solid #DCEAE7;
}


.contact-info-number {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;

  padding-top: 3px;
}


.contact-info-item strong {
  display: block;

  color: #075B8A;

  font-size: 15px;
}


.contact-info-item p {
  margin: 5px 0 0;

  color: #718688;

  font-size: 13px;

  line-height: 1.5;
}


/* Note */

.contact-note {
  margin-top: 35px;

  display: flex;

  gap: 12px;

  align-items: flex-start;
}


.contact-note > span {
  width: 7px;
  height: 7px;

  margin-top: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #159E91;

  box-shadow:
    0 0 0 6px rgba(21,158,145,0.10);
}


.contact-note p {
  margin: 0;

  color: #60777A;

  font-size: 13px;

  line-height: 1.6;
}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {
  padding: 38px;

  background:
    linear-gradient(
      145deg,
      #F7FBFA,
      #FFFFFF
    );

  border: 1px solid #DCEAE7;

  border-radius: 24px;

  box-shadow:
    0 25px 60px rgba(7,91,138,0.07);
}


.contact-form-header {
  display: flex;

  flex-direction: column;

  gap: 7px;

  padding-bottom: 25px;

  margin-bottom: 27px;

  border-bottom: 1px solid #DCEAE7;
}


.contact-form-header span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;
}


.contact-form-header small {
  color: #60777A;

  font-size: 13px;
}


/* Form row */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}


.form-field {
  margin-bottom: 20px;
}


.form-field label {
  display: block;

  margin-bottom: 8px;

  color: #075B8A;

  font-size: 12px;

  font-weight: 750;
}


.form-field label span {
  color: #159E91;
}


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

  box-sizing: border-box;

  padding: 14px 15px;

  border: 1px solid #D5E4E1;

  border-radius: 11px;

  background: #FFFFFF;

  color: #173F4A;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.form-field input {
  height: 50px;
}


.form-field textarea {
  min-height: 150px;

  resize: vertical;

  line-height: 1.6;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #A1B2B4;
}


.form-field input:focus,
.form-field textarea:focus {
  border-color: #159E91;

  background: #FFFFFF;

  box-shadow:
    0 0 0 4px rgba(21,158,145,0.09);
}


/* Submit */

.contact-submit {
  width: 100%;

  min-height: 52px;

  margin-top: 5px;

  border: 0;

  border-radius: 999px;

  background: #075B8A;

  color: #FFFFFF;

  font-family: inherit;

  font-size: 13px;

  font-weight: 750;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.contact-submit span {
  font-size: 16px;

  transition: transform 0.2s ease;
}


.contact-submit:hover {
  background: #159E91;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(21,158,145,0.20);
}


.contact-submit:hover span {
  transform: translateX(4px);
}


.contact-form-message {
  min-height: 20px;

  margin: 15px 0 0;

  text-align: center;

  color: #159E91;

  font-size: 13px;
}


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

.contact-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 90px auto;

  padding: 60px;

  border-radius: 25px;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 45px;

  position: relative;

  overflow: hidden;
}


.contact-cta::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -190px;
  top: -210px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.20),
      transparent 68%
    );
}


.contact-cta-content {
  position: relative;

  z-index: 2;
}


.contact-cta .eyebrow {
  color: #A8EADB;
}


.contact-cta h2 {
  max-width: 700px;

  margin: 0;

  color: #FFFFFF;

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

  line-height: 1;

  letter-spacing: -0.055em;
}


.contact-cta h2 span {
  color: #A8EADB;
}


.contact-cta-btn {
  flex-shrink: 0;

  position: relative;

  z-index: 3;

  background: #FFFFFF;

  color: #075B8A;
}


.contact-cta-btn:hover {
  background: #A8EADB;

  color: #043E61;

  transform: translateY(-3px);
}


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

@media (max-width: 900px) {

  .contact-hero {
    width: calc(100% - 48px);

    padding: 75px 0;

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .contact-hero-side {
    max-width: 500px;

    width: 100%;

    border-left: 0;
  }


  .contact-section {
    padding: 80px 24px;

    grid-template-columns: 1fr;

    gap: 60px;
  }


  .contact-information {
    max-width: 700px;
  }


  .contact-form-card {
    max-width: 700px;

    width: 100%;

    box-sizing: border-box;
  }


  .contact-cta {
    width: calc(100% - 48px);

    margin: 70px auto;

    padding: 50px 35px;

    flex-direction: column;

    align-items: flex-start;
  }

}


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

@media (max-width: 600px) {

  .contact-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;
  }


  .contact-hero h1 {
    font-size: 48px;
  }


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


  .contact-side-item {
    min-height: 68px;

    padding: 0 17px;
  }


  .contact-section {
    padding: 65px 20px;
  }


  .contact-information h2 {
    font-size: 40px;
  }


  .contact-description {
    font-size: 15px;
  }


  .contact-form-card {
    padding: 24px;

    border-radius: 20px;
  }


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

    gap: 0;
  }


  .form-field input {
    height: 48px;
  }


  .form-field textarea {
    min-height: 135px;
  }


  .contact-cta {
    width: calc(100% - 40px);

    margin: 60px auto;

    padding: 40px 24px;

    border-radius: 20px;
  }


  .contact-cta h2 {
    font-size: 39px;
  }

}

/* =====================================================
   AICA WAITLIST PAGE
===================================================== */


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

.waitlist-hero {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 90px 0 85px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    360px;

  gap: 80px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.waitlist-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  top: -170px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.42),
      transparent 68%
    );

  pointer-events: none;
}


.waitlist-hero-content {
  position: relative;

  z-index: 2;
}


.waitlist-hero h1 {
  margin: 0;

  color: #075B8A;

  font-size: clamp(52px, 6vw, 82px);

  line-height: 0.98;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.waitlist-hero h1 span {
  color: #159E91;
}


.waitlist-hero-content > p {
  max-width: 700px;

  margin: 30px 0 0;

  color: #60777A;

  font-size: 18px;

  line-height: 1.7;
}


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

.waitlist-hero-side {
  position: relative;

  z-index: 3;

  border-left: 1px solid #DCEAE7;

  background:
    linear-gradient(
      180deg,
      rgba(232,248,244,0.65),
      rgba(255,255,255,0.25)
    );
}


.waitlist-side-item {
  min-height: 105px;

  padding: 0 22px;

  display: grid;

  grid-template-columns: 42px 1fr;

  gap: 15px;

  align-items: center;

  border-top: 1px solid #DCEAE7;
}


.waitlist-side-item:last-child {
  border-bottom: 1px solid #DCEAE7;
}


.waitlist-side-item > span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.waitlist-side-item strong {
  display: block;

  color: #075B8A;

  font-size: 14px;

  font-weight: 800;
}


.waitlist-side-item small {
  display: block;

  margin-top: 6px;

  color: #789092;

  font-size: 11px;

  line-height: 1.45;
}


/* =====================================================
   WAITLIST MAIN SECTION
===================================================== */

.waitlist-section {
  width: 100%;

  padding:
    105px
    max(28px, calc((100vw - 1180px) / 2 + 28px));

  background: #FFFFFF;

  border-top: 1px solid #DCEAE7;

  border-bottom: 1px solid #DCEAE7;

  display: grid;

  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(550px, 1fr);

  gap: 100px;

  align-items: start;
}


/* =====================================================
   LEFT INTRO
===================================================== */

.waitlist-intro {
  padding-top: 10px;
}


.waitlist-intro h2 {
  max-width: 450px;

  margin: 0;

  color: #075B8A;

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

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 820;
}


.waitlist-intro h2 span {
  color: #159E91;
}


.waitlist-intro > p {
  max-width: 460px;

  margin: 25px 0 40px;

  color: #60777A;

  font-size: 16px;

  line-height: 1.75;
}


/* =====================================================
   BENEFITS
===================================================== */

.waitlist-benefits {
  max-width: 480px;

  border-top: 1px solid #DCEAE7;
}


.waitlist-benefit {
  display: flex;

  align-items: center;

  gap: 13px;

  padding: 17px 0;

  border-bottom: 1px solid #DCEAE7;
}


.waitlist-benefit > span {
  width: 23px;
  height: 23px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #E8F8F4;

  color: #159E91;

  font-size: 11px;

  font-weight: 900;
}


.waitlist-benefit p {
  margin: 0;

  color: #075B8A;

  font-size: 13px;

  font-weight: 700;
}


/* =====================================================
   FORM CARD
===================================================== */

.waitlist-form-card {
  padding: 38px;

  background:
    linear-gradient(
      145deg,
      #F7FBFA,
      #FFFFFF
    );

  border: 1px solid #DCEAE7;

  border-radius: 24px;

  box-shadow:
    0 25px 60px rgba(7,91,138,0.07);
}


/* Header */

.waitlist-form-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  padding-bottom: 25px;

  margin-bottom: 28px;

  border-bottom: 1px solid #DCEAE7;
}


.waitlist-form-header > div:first-child > span {
  color: #159E91;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;
}


.waitlist-form-header h3 {
  margin: 8px 0 0;

  color: #075B8A;

  font-size: 25px;

  letter-spacing: -0.03em;
}


.form-required {
  padding-top: 3px;

  color: #91A4A6;

  font-size: 10px;

  white-space: nowrap;
}


/* =====================================================
   FORM FIELDS
===================================================== */

.waitlist-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}


.waitlist-field {
  margin-bottom: 20px;
}


.waitlist-field label {
  display: block;

  margin-bottom: 8px;

  color: #075B8A;

  font-size: 12px;

  font-weight: 750;
}


.waitlist-field label span {
  color: #159E91;
}


.waitlist-field input {
  width: 100%;

  height: 50px;

  box-sizing: border-box;

  padding: 0 15px;

  border: 1px solid #D5E4E1;

  border-radius: 11px;

  background: #FFFFFF;

  color: #173F4A;

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.waitlist-field input::placeholder {
  color: #A1B2B4;
}


.waitlist-field input:focus {
  border-color: #159E91;

  box-shadow:
    0 0 0 4px rgba(21,158,145,0.09);
}


/* =====================================================
   INTEREST OPTIONS
===================================================== */

.interest-fieldset {
  margin: 8px 0 25px;

  padding: 0;

  border: 0;
}


.interest-fieldset legend {
  margin-bottom: 13px;

  color: #075B8A;

  font-size: 12px;

  font-weight: 750;
}


.interest-fieldset legend span {
  color: #159E91;
}


.interest-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 9px;
}


.interest-option {
  cursor: pointer;

  display: block;
}


.interest-option input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}


.interest-box {
  min-height: 45px;

  padding: 0 12px;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  gap: 9px;

  border: 1px solid #D5E4E1;

  border-radius: 10px;

  background: #FFFFFF;

  color: #60777A;

  font-size: 11px;

  font-weight: 600;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}


.interest-check {
  width: 16px;
  height: 16px;

  flex-shrink: 0;

  border: 1px solid #B8CBCA;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: transparent;

  font-size: 9px;

  font-weight: 900;
}


.interest-option:hover .interest-box {
  border-color: #159E91;

  transform: translateY(-1px);
}


.interest-option input:checked + .interest-box {
  border-color: #159E91;

  background: #E8F8F4;

  color: #075B8A;
}


.interest-option input:checked + .interest-box .interest-check {
  border-color: #159E91;

  background: #159E91;

  color: #FFFFFF;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.waitlist-submit {
  width: 100%;

  min-height: 54px;

  border: 0;

  border-radius: 999px;

  background: #075B8A;

  color: #FFFFFF;

  font-family: inherit;

  font-size: 13px;

  font-weight: 800;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.waitlist-submit span {
  font-size: 17px;

  transition: transform 0.2s ease;
}


.waitlist-submit:hover {
  background: #159E91;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(21,158,145,0.20);
}


.waitlist-submit:hover span {
  transform: translateX(4px);
}


/* =====================================================
   FINE PRINT
===================================================== */

.waitlist-fine-print {
  margin: 17px 0 0;

  color: #91A4A6;

  font-size: 10px;

  line-height: 1.65;

  text-align: center;
}


.waitlist-fine-print a {
  color: #075B8A;

  text-decoration: none;

  font-weight: 700;
}


.waitlist-fine-print a:hover {
  color: #159E91;
}


.waitlist-form-message {
  min-height: 20px;

  margin: 13px 0 0;

  color: #159E91;

  font-size: 13px;

  text-align: center;
}


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

.waitlist-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 90px auto;

  padding: 65px;

  border-radius: 25px;

  background:
    linear-gradient(
      135deg,
      #043E61 0%,
      #075B8A 55%,
      #087C86 100%
    );

  color: #FFFFFF;

  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 80px;

  align-items: center;

  position: relative;

  overflow: hidden;
}


.waitlist-cta::after {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  right: -200px;
  top: -230px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168,234,219,0.20),
      transparent 68%
    );
}


.waitlist-cta > div,
.waitlist-cta > p {
  position: relative;

  z-index: 2;
}


.waitlist-cta .eyebrow {
  color: #A8EADB;
}


.waitlist-cta h2 {
  margin: 0;

  color: #FFFFFF;

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

  line-height: 0.98;

  letter-spacing: -0.055em;
}


.waitlist-cta h2 span {
  color: #A8EADB;
}


.waitlist-cta > p {
  max-width: 430px;

  margin: 0;

  color: rgba(255,255,255,0.72);

  font-size: 16px;

  line-height: 1.7;
}


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

@media (max-width: 950px) {

  .waitlist-hero {
    width: calc(100% - 48px);

    padding: 75px 0;

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .waitlist-hero-side {
    max-width: 550px;

    width: 100%;

    border-left: 0;
  }


  .waitlist-section {
    padding: 80px 24px;

    grid-template-columns: 1fr;

    gap: 60px;
  }


  .waitlist-intro {
    max-width: 700px;
  }


  .waitlist-form-card {
    max-width: 720px;

    width: 100%;

    box-sizing: border-box;
  }


  .waitlist-cta {
    width: calc(100% - 48px);

    margin: 70px auto;

    padding: 50px 35px;

    grid-template-columns: 1fr;

    gap: 30px;
  }

}


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

@media (max-width: 600px) {

  .waitlist-hero {
    width: calc(100% - 40px);

    padding: 60px 0 65px;
  }


  .waitlist-hero h1 {
    font-size: 48px;
  }


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


  .waitlist-side-item {
    min-height: 80px;

    padding: 0 17px;
  }


  .waitlist-section {
    padding: 65px 20px;
  }


  .waitlist-intro h2 {
    font-size: 40px;
  }


  .waitlist-intro > p {
    font-size: 15px;
  }


  .waitlist-form-card {
    padding: 24px;

    border-radius: 20px;
  }


  .waitlist-form-header {
    flex-direction: column;

    gap: 8px;
  }


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

    gap: 0;
  }


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


  .interest-box {
    min-height: 48px;
  }


  .waitlist-cta {
    width: calc(100% - 40px);

    margin: 60px auto;

    padding: 40px 24px;

    border-radius: 20px;
  }


  .waitlist-cta h2 {
    font-size: 39px;
  }


  .waitlist-cta > p {
    font-size: 14px;
  }

}

/* =========================================================
   AICA PRIVACY PAGE
   ========================================================= */

.privacy-header {
  width: 100%;
  height: 82px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2 + 28px));

  display: flex;
  align-items: center;
  gap: 38px;

  background: rgba(247, 251, 250, 0.96);
  border-bottom: 1px solid #dce9e6;

  position: relative;
  z-index: 20;
}


/* LOGO */

.privacy-logo {
  width: 138px;
  height: 48px;

  display: flex;
  align-items: center;

  flex-shrink: 0;
  text-decoration: none;
}

.privacy-logo img {
  display: block;

  width: 138px;
  height: 48px;

  object-fit: contain;
  object-position: left center;
}


/* NAVIGATION */

.privacy-nav {
  flex: 1;

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

  gap: 28px;
}

.privacy-nav a {
  color: #075b8a;

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

  text-decoration: none;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.privacy-nav a:hover {
  color: #159e91;
  transform: translateY(-1px);
}


/* WAITLIST BUTTON */

.privacy-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 13px 19px;

  border-radius: 999px;

  background: #075b8a;
  color: #fff;

  font-size: 13px;
  font-weight: 750;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.privacy-nav-btn:hover {
  background: #159e91;
  transform: translateY(-2px);
}

.privacy-nav-btn span {
  font-size: 16px;
}


/* MOBILE MENU */

.privacy-menu {
  display: none;

  border: 0;
  background: transparent;

  color: #075b8a;

  font-size: 25px;
  cursor: pointer;
}


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

.privacy-hero {
  width: min(1180px, calc(100% - 56px));

  min-height: 455px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;

  gap: 80px;
  align-items: center;

  padding: 80px 0 90px;
}


.privacy-hero-inner {
  max-width: 760px;
}


.privacy-eyebrow {
  margin-bottom: 20px;

  color: #159e91;

  font-size: 11px;
  font-weight: 850;

  letter-spacing: 0.18em;
}


.privacy-hero h1 {
  margin: 0;

  color: #075b8a;

  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.92;

  letter-spacing: -0.065em;

  font-weight: 850;
}


.privacy-hero h1 span {
  color: #159e91;
}


.privacy-hero p {
  max-width: 650px;

  margin: 32px 0 0;

  color: #5d706f;

  font-size: 17px;
  line-height: 1.7;
}


/* RIGHT HERO VISUAL */

.privacy-hero-mark {
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: 35px;

  border-left: 1px solid #dce9e6;
}


.privacy-mark-circle {
  width: 112px;
  height: 112px;

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

  border: 1px solid #159e91;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(168, 234, 219, 0.35),
      rgba(168, 234, 219, 0.05) 65%,
      transparent 70%
    );

  color: #075b8a;
}


.privacy-mark-circle span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}


.privacy-mark-line {
  width: 1px;
  height: 42px;

  margin-left: 56px;

  background: #159e91;
}


.privacy-mark-text {
  color: #075b8a;

  font-size: 14px;
  font-weight: 750;

  line-height: 1.5;
}


/* =========================================================
   CONTENT
   ========================================================= */

.privacy-content {
  background: #fff;

  border-top: 1px solid #dce9e6;
  border-bottom: 1px solid #dce9e6;

  padding: 95px max(28px, calc((100vw - 1180px) / 2 + 28px));
}


.privacy-content-header {
  display: grid;

  grid-template-columns: 80px 1fr;

  gap: 30px;

  align-items: start;

  margin-bottom: 70px;
}


.privacy-content-header > span {
  padding-top: 7px;

  color: #159e91;

  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
}


.privacy-small-label {
  margin-bottom: 13px;

  color: #159e91;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.privacy-content-header h2 {
  max-width: 700px;

  margin: 0;

  color: #075b8a;

  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;

  letter-spacing: -0.05em;
}


.privacy-content-header h2 span {
  color: #159e91;
}


.privacy-content-grid {
  display: grid;

  grid-template-columns: 280px minmax(0, 1fr);

  gap: 85px;

  max-width: 1050px;
}


.privacy-sidebar {
  padding-top: 5px;
}


.privacy-sidebar p {
  margin: 0;

  color: #5d706f;

  font-size: 14px;
  line-height: 1.7;
}


.privacy-rule {
  width: 100%;
  height: 1px;

  margin: 28px 0 18px;

  background: #dce9e6;
}


.privacy-sidebar > span {
  color: #8b9b99;

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

  letter-spacing: 0.12em;
}


/* LEGAL ITEMS */

.privacy-legal {
  display: flex;
  flex-direction: column;

  gap: 0;
}


.privacy-block {
  display: grid;

  grid-template-columns: 50px 1fr;

  gap: 25px;

  padding: 0 0 45px;

  margin-bottom: 45px;

  border-bottom: 1px solid #dce9e6;
}


.privacy-number {
  padding-top: 5px;

  color: #159e91;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: 0.14em;
}


.privacy-block h3 {
  margin: 0 0 15px;

  color: #163f4d;

  font-size: 25px;
  line-height: 1.2;

  letter-spacing: -0.025em;
}


.privacy-block p {
  max-width: 680px;

  margin: 0;

  color: #5d706f;

  font-size: 15px;
  line-height: 1.8;
}


/* CONTACT LINK */

.privacy-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 22px;

  color: #075b8a;

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

  text-decoration: none;
}


.privacy-contact-link span {
  color: #159e91;

  font-size: 17px;
}


.privacy-contact-link:hover {
  color: #159e91;
}


/* NOTICE */

.privacy-notice {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding: 25px;

  border: 1px solid #bde5dc;
  border-radius: 14px;

  background: #f2fbf8;
}


.privacy-notice-icon {
  width: 30px;
  height: 30px;

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

  flex-shrink: 0;

  border-radius: 50%;

  background: #159e91;
  color: white;

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


.privacy-notice strong {
  display: block;

  margin-bottom: 7px;

  color: #075b8a;

  font-size: 14px;
}


.privacy-notice p {
  margin: 0;

  color: #5d706f;

  font-size: 13px;
  line-height: 1.65;
}


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

.privacy-cta {
  width: min(1180px, calc(100% - 56px));

  margin: 0 auto;

  padding: 105px 0;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}


.privacy-cta .privacy-eyebrow {
  margin-bottom: 16px;
}


.privacy-cta h2 {
  margin: 0;

  color: #075b8a;

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

  line-height: 0.98;

  letter-spacing: -0.055em;
}


.privacy-cta h2 span {
  color: #159e91;
}


.privacy-cta > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 22px;

  border-radius: 999px;

  background: #075b8a;
  color: #fff;

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

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.privacy-cta > a:hover {
  background: #159e91;
  transform: translateY(-2px);
}


.privacy-cta > a span {
  font-size: 17px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

  .privacy-header {
    gap: 20px;
  }

  .privacy-nav {
    gap: 16px;
  }

  .privacy-nav a {
    font-size: 11px;
  }

  .privacy-hero {
    grid-template-columns: 1fr 220px;
    gap: 45px;
  }

  .privacy-content-grid {
    gap: 50px;
  }

}


@media (max-width: 760px) {

  .privacy-header {
    height: 72px;

    padding: 0 20px;
  }

  .privacy-logo,
  .privacy-logo img {
    width: 125px;
    height: 43px;
  }

  .privacy-nav {
    display: none;
  }

  .privacy-nav-btn {
    margin-left: auto;

    padding: 10px 14px;

    font-size: 11px;
  }

  .privacy-menu {
    display: block;
  }


  .privacy-hero {
    width: calc(100% - 40px);

    display: block;

    padding: 65px 0 70px;
  }

  .privacy-hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .privacy-hero p {
    font-size: 15px;
  }

  .privacy-hero-mark {
    margin-top: 50px;

    padding: 25px 0 0;

    min-height: auto;

    border-left: 0;
    border-top: 1px solid #dce9e6;
  }


  .privacy-content {
    padding: 70px 20px;
  }

  .privacy-content-header {
    grid-template-columns: 45px 1fr;

    gap: 15px;

    margin-bottom: 50px;
  }

  .privacy-content-header h2 {
    font-size: 40px;
  }

  .privacy-content-grid {
    display: block;
  }

  .privacy-sidebar {
    margin-bottom: 50px;
  }

  .privacy-block {
    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding-bottom: 35px;
    margin-bottom: 35px;
  }


  .privacy-cta {
    width: calc(100% - 40px);

    display: block;

    padding: 75px 0;
  }

  .privacy-cta > a {
    margin-top: 35px;
  }

}


@media (max-width: 480px) {

  .privacy-nav-btn {
    display: none;
  }

  .privacy-hero {
    padding-top: 55px;
  }

  .privacy-hero h1 {
    font-size: 54px;
  }

  .privacy-content-header h2 {
    font-size: 35px;
  }

  .privacy-notice {
    padding: 18px;
  }

}