:root {
  --ink: #111c1a;
  --muted: #66726f;
  --line: #dce6e2;
  --paper: #f7faf8;
  --soft: #edf6f1;
  --teal: #0f8177;
  --teal-dark: #0b4542;
  --coral: #d46f57;
  --gold: #b28a37;
  --blue: #23647a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 42, 38, 0.14);
  --shadow-soft: 0 14px 36px rgba(18, 42, 38, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 246, 241, 0.72), rgba(247, 250, 248, 0) 360px),
    var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 231, 227, 0.72);
  background: rgba(247, 250, 248, 0.86);
  backdrop-filter: blur(20px);
}

.site-header.compact {
  position: relative;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100svh - 168px), 560px);
  display: grid;
  align-items: end;
  padding: 112px clamp(20px, 6vw, 88px) 48px;
  overflow: hidden;
  isolation: isolate;
  background: #15312d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 20, 0.9), rgba(8, 33, 31, 0.58) 54%, rgba(8, 33, 31, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(4, 15, 14, 0.18));
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=2200&q=80");
  background-position: center;
  background-size: cover;
  z-index: -2;
  transform: scale(1.015);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0ba73;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(18, 42, 38, 0.04);
}

.trust-band div {
  padding: 26px clamp(20px, 4vw, 56px);
  background: var(--white);
}

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

.trust-band strong {
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy h2 {
  max-width: 720px;
}

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

.service-grid article,
.process-grid article,
.support-grid article {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 42, 38, 0.03);
}

.service-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-grid article:hover {
  border-color: rgba(15, 129, 119, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.service-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 12px;
  background: var(--soft);
}

.service-grid p,
.process-grid p,
.support-grid p,
.legal-content p {
  color: var(--muted);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(135deg, #eaf4f0, #f9fbf9 56%, #f2eee5);
}

.app-preview {
  display: grid;
  min-height: 560px;
  place-items: center;
  background-image: linear-gradient(rgba(9, 39, 37, 0.62), rgba(9, 39, 37, 0.62)), url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.phone-shell {
  width: min(278px, 76vw);
  padding: 12px;
  border-radius: 36px;
  background: #111b19;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.phone-top {
  width: 88px;
  height: 6px;
  margin: 4px auto 12px;
  border-radius: 99px;
  background: #3e4846;
}

.phone-screen {
  min-height: 460px;
  padding: 22px;
  border-radius: 24px;
  background: #f8fbf9;
}

.screen-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 12px 0 18px;
  font-size: 2rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.timeline-item {
  height: 70px;
  margin-top: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(15, 129, 119, 0.2), rgba(212, 111, 87, 0.16));
}

.timeline-item.short {
  width: 72%;
  height: 52px;
  margin-top: 10px;
}

.phone-screen button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  font-weight: 800;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(11, 69, 66, 0.98), rgba(17, 28, 26, 0.98)),
    var(--teal-dark);
  color: var(--white);
}

.contact-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-style: normal;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.contact-card a {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 24px;
  padding: 38px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

.legal-page,
.support-page {
  background: var(--paper);
}

.legal-hero {
  padding: 82px clamp(20px, 6vw, 88px) 42px;
  background:
    linear-gradient(135deg, #e8f3ef, #fbfcfa 66%, #f3eee3);
}

.legal-hero h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 88px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 52px clamp(20px, 6vw, 88px) 88px;
}

.support-grid address {
  color: var(--muted);
  font-style: normal;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 560px;
    padding-top: 110px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(13, 28, 25, 0.78), rgba(13, 28, 25, 0.42) 46%, rgba(13, 28, 25, 0.88));
  }

  .trust-band,
  .split,
  .app-section,
  .process-grid,
  .contact-section,
  .site-footer,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .app-preview {
    min-height: 520px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 540px;
  }

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

  h1 {
    font-size: 3.1rem;
  }
}
