@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --blue: #0A84E8;
  --blue-dark: #075AA0;
  --orange: #FF8A2B;
  --ink: #10243A;
  --muted: #66788A;
  --soft: #F4F8FC;
  --line: #DCE7F1;
  --white: #FFFFFF;
  --dark: #071521;
  --radius: 20px;
  --shadow: 0 16px 45px rgba(16, 36, 58, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

span {
  color: inherit;
}

h1 span,
h2 span {
  color: var(--blue);
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 22px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand,
.footer-brand {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.menu-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  user-select: none;
}

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

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 105px 0 60px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(10, 132, 232, 0.13),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #f7fbff 0%,
      #ffffff 56%,
      #f7fbff 100%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 45px;
  align-items: center;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 650px;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.pseudo-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.9rem;
  user-select: none;
}

.pseudo-button.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 22px rgba(255, 138, 43, 0.22);
}

.pseudo-button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pseudo-button.light {
  background: white;
  color: var(--blue-dark);
}

.pseudo-button.large {
  margin-top: 28px;
  min-width: 210px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--muted);
}

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

/* =========================
   TRUST VISUAL
========================= */

.trust-visual {
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(10, 132, 232, 0.09);
  filter: blur(10px);
}

.trust-orbit {
  position: absolute;
  border: 1px solid rgba(10, 132, 232, 0.22);
  border-radius: 50%;
}

.orbit-one {
  width: 380px;
  height: 380px;
}

.orbit-two {
  width: 260px;
  height: 260px;
  border-color: rgba(255, 138, 43, 0.35);
}

.trust-core {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--blue),
    var(--blue-dark)
  );
  color: white;

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

  box-shadow: 0 22px 55px rgba(10, 132, 232, 0.25);

  position: relative;
  z-index: 4;
}

.core-small {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.core-title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.trust-node {
  position: absolute;
  z-index: 5;

  padding: 8px 13px;

  border: 1px solid rgba(10, 132, 232, 0.18);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);

  border-radius: 50px;

  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;

  box-shadow: 0 10px 28px rgba(16, 36, 58, 0.07);
}

.node-one {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.node-two {
  right: 5px;
  top: 48%;
}

.node-three {
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
}

.node-four {
  left: 5px;
  top: 48%;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 72px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: start;
}

.section-copy {
  font-size: 1rem;
}

.section-copy p + p {
  margin-top: 14px;
}

.why {
  background: white;
}

.capabilities {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered p {
  max-width: 600px;
  margin: 12px auto 0;
}

/* =========================
   FEATURE CARDS
========================= */

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  position: relative;
  padding: 26px;
  min-height: 245px;

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

  border-radius: var(--radius);

  box-shadow: 0 8px 28px rgba(16, 36, 58, 0.035);
}

.feature-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: white;

  transform: translateY(-7px);

  box-shadow: 0 20px 45px rgba(10, 132, 232, 0.2);
}

.feature-card.featured p,
.feature-card.featured .card-number {
  color: rgba(255, 255, 255, 0.75);
}

.card-number {
  position: absolute;
  top: 23px;
  right: 25px;

  color: #A9B8C7;

  font-size: 0.68rem;
  font-weight: 700;
}

.icon-circle {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #EAF5FF;
  color: var(--blue);

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

  font-size: 1.3rem;
  font-weight: 800;

  margin-bottom: 20px;
}

.featured .icon-circle {
  background: rgba(255, 255, 255, 0.17);
  color: white;
}

.feature-card p {
  margin-top: 10px;
  max-width: 320px;
  font-size: 0.92rem;
}

/* =========================
   HOW IT WORKS
========================= */

.how {
  background: white;
}

.process {
  position: relative;

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

  gap: 20px;
}

.process-line {
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;

  border-top: 1px dashed #B9CAD8;
}

.process-step {
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);

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

  font-size: 0.7rem;
  font-weight: 800;

  margin-bottom: 17px;
}

.process-step p {
  margin-top: 8px;
  font-size: 0.86rem;
  max-width: 220px;
}

/* =========================
   AUDIENCE SECTIONS
========================= */

.audience {
  overflow: hidden;
}

.audience.individual {
  background: #F7FAFD;
}

.audience.sme {
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.audience-grid.reverse .audience-copy {
  order: 1;
}

.audience-grid.reverse .audience-visual {
  order: 2;
}

.audience-copy p {
  margin-top: 13px;
  max-width: 550px;
  font-size: 1rem;
}

.check-list {
  list-style: none;
  margin-top: 22px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 9px 0;
  color: var(--ink);
}

.check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--blue);
  font-weight: 800;
}

.audience-visual {
  min-height: 350px;

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

/* =========================
   INDIVIDUAL VISUAL
========================= */

.portrait-placeholder {
  width: 285px;
  height: 305px;

  border-radius: 145px 145px 32px 32px;

  background:
    radial-gradient(
      circle at 50% 33%,
      rgba(10, 132, 232, 0.9) 0 42px,
      transparent 43px
    ),
    linear-gradient(
      145deg,
      #DCEEFF,
      #F6FAFE
    );

  position: relative;

  box-shadow: var(--shadow);
}

.portrait-ring {
  position: absolute;

  width: 215px;
  height: 215px;

  border: 1px solid rgba(10, 132, 232, 0.25);
  border-radius: 50%;

  top: 40px;
  left: 35px;
}

.portrait-label,
.business-label {
  position: absolute;

  bottom: 22px;
  left: 50%;

  transform: translateX(-50%);

  padding: 7px 13px;

  border-radius: 50px;

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

  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;

  box-shadow: 0 7px 22px rgba(16, 36, 58, 0.07);
}

/* =========================
   BUSINESS VISUAL
========================= */

.business-visual {
  width: 380px;
  height: 300px;

  position: relative;

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      #EAF5FF,
      #F9FCFF
    );

  overflow: hidden;

  box-shadow: var(--shadow);
}

.business-building {
  position: absolute;

  width: 200px;
  height: 170px;

  bottom: 45px;
  left: 90px;

  background:
    linear-gradient(
      90deg,
      #0A84E8 0 18%,
      #FFFFFF 18% 30%,
      #0A84E8 30% 48%,
      #FFFFFF 48% 60%,
      #0A84E8 60% 78%,
      #FFFFFF 78%
    );

  border-radius: 8px 8px 0 0;
}

.business-base {
  position: absolute;

  bottom: 45px;
  left: 40px;

  width: 300px;
  height: 11px;

  background: var(--ink);
  border-radius: 20px;
}

/* =========================
   INSTITUTIONS
========================= */

.institutions {
  background: var(--dark);
  color: white;
}

.institution-content {
  text-align: center;
  max-width: 900px;
}

.institution-content h2 {
  color: white;
}

.institution-content h2 span {
  color: #55B0FF;
}

.institution-content p {
  max-width: 680px;

  margin: 16px auto 0;

  color: #AFC1D1;

  font-size: 1rem;
}

.institution-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 8px;

  margin-top: 25px;
}

.institution-tags div {
  padding: 8px 14px;

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

  border-radius: 50px;

  color: #DCE9F3;

  font-size: 0.75rem;
}

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

.journey {
  background: #F7FAFD;
}

.journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.journey-item {
  min-width: 140px;

  padding: 18px 14px;

  background: white;

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

  border-radius: 15px;

  text-align: center;

  box-shadow: 0 8px 22px rgba(16, 36, 58, 0.035);
}

.journey-item strong {
  display: block;

  font-size: 0.65rem;
  letter-spacing: 0.07em;
}

.journey-item small {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 0.68rem;
}

.journey-item.accent {
  border-color: rgba(10, 132, 232, 0.4);

  background: var(--blue);

  color: white;
}

.journey-item.accent small {
  color: rgba(255, 255, 255, 0.75);
}

.journey-arrow {
  color: var(--blue);

  font-size: 1.2rem;
  font-weight: 700;
}

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

.final-cta {
  padding: 78px 0;

  text-align: center;

  color: white;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(85, 176, 255, 0.25),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #075AA0,
      #071521
    );
}

.final-cta .eyebrow {
  color: #72C0FF;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
}

.final-cta h2 span {
  color: #62B8FF;
}

.final-cta p {
  color: #C1D2E0;
  margin: 14px 0 22px;
}

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

.site-footer {
  background: #04101A;
  color: white;
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 35px;
}

.footer-brand {
  color: white;
  font-size: 1.55rem;
}

.site-footer p {
  margin-top: 7px;
  color: #8DA2B3;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-tagline {
  display: inline-block;
  margin-top: 10px;
  color: #55B0FF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #AABBC8;
  font-size: 0.88rem;
}

.footer-legal a {
  color: #AABBC8;
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

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

  padding-top: 20px;

  color: #8DA2B3;

  font-size: 0.82rem;
  line-height: 1.5;
}

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

@media (max-width: 900px) {

  .hero {
    min-height: auto;
    padding: 120px 0 55px;
  }

  .hero-grid,
  .two-column,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

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

  .trust-visual {
    height: 400px;
  }

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

  .feature-card.featured {
    transform: none;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .process-line {
    display: none;
  }

  .audience-grid.reverse .audience-copy,
  .audience-grid.reverse .audience-visual {
    order: initial;
  }

  .audience-copy {
    text-align: center;
  }

  .audience-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }
}

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

@media (max-width: 600px) {

  .container {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand {
    font-size: 1.5rem;
  }

  .menu-icon {
    font-size: 1.4rem;
  }

  .hero {
    padding: 100px 0 35px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .hero-text {
    font-size: 0.98rem;
    margin-top: 17px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 23px;
  }

  .hero-actions .pseudo-button {
    width: 100%;
  }

  .hero-note {
    margin-top: 22px;
  }

  .trust-visual {
    height: 300px;
    transform: scale(0.72);
    margin: -25px 0 -35px;
  }

  .section {
    padding: 55px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-copy {
    font-size: 0.96rem;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
  }

  .process-step .step-number {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .process-step p {
    margin-top: 3px;
  }

  .audience-visual {
    min-height: 300px;
  }

  .portrait-placeholder {
    width: 245px;
    height: 285px;
  }

  .portrait-ring {
    width: 200px;
    height: 200px;
    left: 22px;
  }

  .business-visual {
    width: 100%;
    max-width: 340px;
    height: 280px;
  }

  .business-building {
    left: calc(50% - 100px);
  }

  .business-base {
    left: calc(50% - 145px);
    width: 290px;
  }

  .institution-content p {
    font-size: 0.95rem;
  }

  .journey-flow {
    flex-direction: column;
    margin-top: 25px;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .journey-item {
    width: min(100%, 250px);
  }

  .final-cta {
    padding: 65px 0;
  }

  .final-cta h2 {
    font-size: 2.45rem;
  }

  /* FOOTER - MOBILE */

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 28px;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .site-footer p {
    font-size: 0.9rem;
  }

  .footer-tagline {
    font-size: 0.72rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
  }
}
