:root {
  --brand: #0aa9ee;
  --brand-bright: #19c2ff;
  --brand-dark: #087fbd;
  --navy: #111a32;
  --navy-soft: #1b2744;
  --ink: #202942;
  --muted: #667085;
  --line: #dfe6ee;
  --soft: #f3f8fc;
  --soft-blue: #eaf7fd;
  --white: #ffffff;
  --success: #2ba66f;
  --shadow: 0 22px 60px rgba(17, 26, 50, 0.12);
  --shadow-soft: 0 14px 36px rgba(17, 26, 50, 0.08);
  --radius: 20px;
  --radius-small: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 230, 238, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 205px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #44506a;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--brand-dark);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  box-shadow: 0 12px 26px rgba(10, 169, 238, 0.22);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10, 169, 238, 0.28);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-secondary {
  color: var(--navy);
  border-color: #cbd8e4;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(17, 26, 50, 0.08);
}

.button-full {
  width: 100%;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 100px;
  background:
    linear-gradient(115deg, rgba(234, 247, 253, 0.95), rgba(255, 255, 255, 0.92) 52%, rgba(242, 249, 253, 0.94)),
    radial-gradient(circle at 80% 15%, rgba(25, 194, 255, 0.15), transparent 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 169, 238, 0.35), transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 440px;
  height: 440px;
  right: -180px;
  top: -170px;
  border: 70px solid rgba(10, 169, 238, 0.08);
}

.hero-orb-two {
  width: 250px;
  height: 250px;
  left: -160px;
  bottom: -140px;
  background: rgba(17, 26, 50, 0.035);
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--navy);
  font-size: clamp(2.75rem, 5vw, 4.65rem);
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: #536078;
  font-size: 1.15rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-notes {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #536078;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(10, 169, 238, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.visual-card {
  width: 100%;
  border: 1px solid rgba(210, 222, 233, 0.9);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.visual-card-main {
  padding: 28px;
  transform: rotate(1.2deg);
}

.visual-card-header,
.visual-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.visual-card-header strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.mini-label,
.visual-summary span,
.floating-card small {
  display: block;
  color: #7b879a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--success);
  background: rgba(43, 166, 111, 0.11);
  font-size: 0.72rem;
  font-weight: 800;
}

.cashflow-bars {
  margin: 34px 0 28px;
  display: grid;
  gap: 23px;
}

.bar-row {
  display: grid;
  gap: 9px;
}

.bar-row span {
  color: #536078;
  font-size: 0.82rem;
  font-weight: 600;
}

.bar-track {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f6;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
}

.bar-revenue {
  width: 88%;
  background: linear-gradient(90deg, #c3d0dc, #93a5b8);
}

.bar-payments {
  width: 56%;
  background: linear-gradient(90deg, #33405d, #59657e);
}

.bar-relief {
  width: 72%;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-bright));
  box-shadow: 0 0 18px rgba(10, 169, 238, 0.25);
}

.bar-row.emphasized span {
  color: var(--brand-dark);
  font-weight: 800;
}

.visual-summary {
  padding-top: 23px;
  border-top: 1px solid #e5ebf0;
}

.visual-summary > div {
  width: 50%;
}

.visual-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 0.98rem;
}

.floating-card {
  position: absolute;
  min-width: 220px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(218, 229, 238, 0.95);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.87rem;
}

.floating-card-top {
  top: 22px;
  right: -42px;
}

.floating-card-bottom {
  bottom: 14px;
  left: -46px;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-bright));
  font-weight: 900;
}

.floating-icon.shield {
  color: var(--success);
  background: rgba(43, 166, 111, 0.1);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  color: #657187;
  font-size: 0.83rem;
  font-weight: 700;
}

.trust-grid span,
.trust-grid strong {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  border-right: 0;
  color: var(--brand-dark);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 84px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 135px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.problem-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 26, 50, 0.045);
}

.problem-card h3 {
  margin: 38px 0 12px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.card-number {
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.accent-card {
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  box-shadow: 0 18px 38px rgba(17, 26, 50, 0.18);
}

.accent-card h3,
.accent-card .card-number {
  color: var(--white);
}

.accent-card p {
  color: #c8d3e2;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(25, 194, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #10182e, #172440);
}

.section-dark::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  left: -300px;
  bottom: -320px;
  border: 80px solid rgba(10, 169, 238, 0.05);
  border-radius: 50%;
}

.light-heading h2 {
  color: var(--white);
}

.light-heading p {
  color: #b7c4d5;
}

.section-dark .eyebrow {
  color: #58d2ff;
}

.process-grid {
  position: relative;
  z-index: 2;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

.process-card h3 {
  margin: 24px 0 12px;
  color: var(--white);
  font-size: 1.08rem;
}

.process-card p {
  margin: 0;
  color: #aebccd;
  font-size: 0.92rem;
}

.process-step {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 210, 255, 0.3);
  border-radius: 13px;
  color: #58d2ff;
  background: rgba(10, 169, 238, 0.1);
  font-size: 1.35rem;
  font-weight: 800;
}

.flow-example {
  position: relative;
  z-index: 2;
  margin-top: 55px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.flow-example-copy h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.55rem;
}

.flow-example-copy p {
  margin: 0;
  color: #aebccd;
  font-size: 0.9rem;
}

.flow-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.flow-item {
  flex: 1;
  min-width: 0;
  padding: 19px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.flow-item small {
  color: #91a2b9;
}

.flow-item strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.86rem;
}

.flow-item-highlight {
  border-color: rgba(88, 210, 255, 0.4);
  background: rgba(10, 169, 238, 0.14);
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: #58d2ff;
  font-size: 1.25rem;
}

.benefits-section {
  background: var(--white);
}

.benefits-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefits-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.benefit-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 13px;
  color: var(--brand-dark);
  background: var(--soft-blue);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefits-grid h3 {
  margin-bottom: 10px;
}

.benefits-grid p {
  margin: 0;
  color: var(--muted);
}

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

.fit-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 90px;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

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

.fit-card {
  padding: 38px;
  border: 1px solid rgba(207, 220, 230, 0.9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.fit-card h3 {
  margin-bottom: 25px;
  font-size: 1.45rem;
}

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 17px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #526078;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--brand-dark);
  background: var(--soft-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.fit-note {
  margin-top: 27px;
  padding: 15px 17px;
  border-left: 3px solid var(--brand);
  color: #6a7589;
  background: var(--soft);
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 85px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 22px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--soft-blue);
  font-size: 1.05rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -5px 0 24px;
  padding-right: 45px;
  color: var(--muted);
}

.contact-section {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(25, 194, 255, 0.16), transparent 30%),
    linear-gradient(140deg, #111a32, #182744);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 85px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: #bac6d6;
}

.contact-section .eyebrow {
  color: #58d2ff;
}

.contact-points {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  color: #d6dfeb;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.contact-points i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #58d2ff;
  background: rgba(88, 210, 255, 0.11);
  font-style: normal;
  font-size: 0.75rem;
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  margin-bottom: 16px;
  display: grid;
  gap: 8px;
  color: #3d4960;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e1e9;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10, 169, 238, 0.1);
}

.form-disclaimer {
  margin: 12px 0 0;
  color: #7b8798;
  text-align: center;
  font-size: 0.72rem;
}

.site-footer {
  padding: 66px 0 28px;
  color: #9facc0;
  background: #0c1326;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 45px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  width: 185px;
  margin-bottom: 18px;
  filter: brightness(1.2);
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.87rem;
}

.footer-links a {
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: #58d2ff;
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 680px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .fit-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 65px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .sticky-heading {
    position: static;
  }

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

  .flow-example {
    grid-template-columns: 1fr;
  }

  .fit-grid,
  .faq-layout,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header .button-small {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    padding: 72px 0 70px;
  }

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

  .hero-notes {
    display: grid;
  }

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

  .visual-card-main {
    padding: 20px;
  }

  .floating-card {
    min-width: 190px;
    transform: scale(0.88);
  }

  .floating-card-top {
    right: -20px;
  }

  .floating-card-bottom {
    left: -22px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 0;
  }

  .trust-grid span,
  .trust-grid strong {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-right: 0;
  }

  .section {
    padding: 80px 0;
  }

  .problem-grid,
  .process-grid,
  .benefits-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .flow-diagram {
    flex-direction: column;
  }

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

  .fit-card,
  .contact-form,
  .flow-example {
    padding: 25px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    gap: 50px;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .floating-card {
    display: none;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}
