:root {
  --bg: #f5f8fb;
  --bg-soft: #edf3f8;

  --surface: #ffffff;
  --surface-soft: #f8fafc;

  --ink: #0d1728;
  --ink-soft: #334155;

  --muted: #64748b;
  --muted-light: #94a3b8;

  --navy: #081321;
  --navy-soft: #101f32;

  --blue: #2b6797;
  --blue-dark: #215176;
  --blue-soft: #edf5fb;

  --line: #dce4ec;
  --line-dark: #cbd6e1;

  --success: #13845d;

  --white: #ffffff;

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --radius-sm: 12px;

  --shadow-small:
    0 8px 25px rgba(15, 23, 42, 0.06);

  --shadow-medium:
    0 20px 50px rgba(15, 23, 42, 0.09);

  --shadow-large:
    0 35px 90px rgba(15, 23, 42, 0.15);

  --max-width: 1240px;
}


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

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;

  background: var(--bg);
  color: var(--ink);

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

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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


/* =========================================================
   CORE LAYOUT
   ========================================================= */

.container {
  width:
    min(
      var(--max-width),
      calc(100% - 48px)
    );

  margin: 0 auto;
}

.section {
  padding: 118px 0;
}

.section-soft {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(43, 103, 151, 0.07),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #f9fbfd 0%,
      #edf3f8 100%
    );
}

.section-dark {
  background:
    radial-gradient(
      circle at 18% 5%,
      rgba(71, 127, 183, 0.18),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #0b1828 0%,
      #07111e 100%
    );

  color: var(--white);
}


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

h1,
h2,
h3,
h4 {
  margin: 0;

  color: var(--ink);

  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  font-size:
    clamp(
      3rem,
      5vw,
      5rem
    );

  font-weight: 800;
}

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

  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 750;
}

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

.eyebrow {
  margin-bottom: 18px;

  color: var(--blue);

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

  letter-spacing: 0.19em;

  text-transform: uppercase;
}

.eyebrow-light {
  color: #88b8e3;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;

  min-height: 48px;

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

  padding: 13px 21px;

  border: 1px solid transparent;
  border-radius: 13px;

  font-size: 0.92rem;
  font-weight: 750;

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-large {
  min-height: 52px;
  padding: 14px 24px;
}

.btn-primary {
  background:
    linear-gradient(
      180deg,
      #3374aa 0%,
      #2b6797 100%
    );

  border-color: var(--blue);

  color: var(--white);

  box-shadow:
    0 14px 30px
    rgba(43, 103, 151, 0.22);
}

.btn-primary:hover {
  background:
    linear-gradient(
      180deg,
      #2b6797 0%,
      #225174 100%
    );

  box-shadow:
    0 18px 38px
    rgba(43, 103, 151, 0.28);
}

.btn-secondary {
  border-color: var(--line-dark);

  background: var(--white);

  color: var(--ink);

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

.btn-secondary:hover {
  border-color:
    rgba(43, 103, 151, 0.3);

  background: #fbfdff;
}

.btn-dark-secondary {
  border-color:
    rgba(255, 255, 255, 0.2);

  background:
    rgba(255, 255, 255, 0.08);

  color: var(--white);
}

.btn-dark-secondary:hover {
  background:
    rgba(255, 255, 255, 0.13);
}

.text-link {
  display: inline-flex;

  margin-top: 25px;

  color: var(--blue-dark);

  font-weight: 750;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  border-bottom:
    1px solid
    rgba(148, 163, 184, 0.2);

  background:
    rgba(255, 255, 255, 0.92);

  backdrop-filter:
    blur(18px)
    saturate(150%);
}

.navbar {
  display: flex;

  min-height: 78px;

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

  gap: 28px;
}

.brand {
  display: flex;

  align-items: center;

  gap: 12px;
}

.brand-mark {
  display: grid;

  width: 42px;
  height: 42px;

  flex-shrink: 0;

  place-items: center;

  border-radius: 11px;

  background:
    linear-gradient(
      145deg,
      #15263c,
      #081321
    );

  color: #72a9e0;

  box-shadow:
    0 10px 25px
    rgba(15, 23, 42, 0.13);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--ink);

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

  letter-spacing: 0.16em;

  line-height: 1;
}

.brand-sub {
  margin-top: 6px;

  color: var(--muted);

  font-size: 0.6rem;
  font-weight: 700;

  letter-spacing: 0.14em;

  line-height: 1;

  text-transform: uppercase;
}

.nav-desktop {
  display: flex;

  align-items: center;

  gap: 4px;
}

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

  border-radius: 11px;

  color: #526172;

  font-size: 0.91rem;
  font-weight: 680;
}

.nav-item:hover,
.nav-item.active {
  background:
    rgba(43, 103, 151, 0.07);

  color: var(--blue-dark);
}

.nav-actions {
  display: flex;

  align-items: center;

  gap: 13px;
}

.nav-login,
.nav-demo {
  color: #526172;

  font-size: 0.9rem;
  font-weight: 680;
}

.nav-login:hover,
.nav-demo:hover {
  color: var(--blue-dark);
}

.nav-trial {
  min-height: 42px;

  padding: 10px 16px;
}

.mobile-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  border: 1px solid var(--line-dark);
  border-radius: 11px;

  background: var(--white);
}

.mobile-toggle span {
  display: block;

  height: 2px;

  margin: 4px 0;

  border-radius: 20px;

  background: var(--ink);

  transition: 0.2s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform:
    translateY(6px)
    rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform:
    translateY(-6px)
    rotate(-45deg);
}

.mobile-nav {
  display: none;

  padding-bottom: 16px;
}

.mobile-nav.open {
  display: grid;

  gap: 8px;
}

.mobile-link {
  padding: 13px 15px;

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

  border-radius: 12px;

  background: var(--white);

  color: var(--ink-soft);

  font-weight: 700;
}

.mobile-primary {
  border-color: var(--blue);

  background: var(--blue);

  color: var(--white);
}


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

.hero,
.pricing-hero {
  position: relative;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(43, 103, 151, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(82, 156, 211, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f7fb 100%
    );
}

.hero {
  padding: 125px 0 112px;
}

.hero-layout {
  display: grid;

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

  gap: 70px;

  align-items: center;
}

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

.hero-text {
  max-width: 590px;

  margin-top: 28px;

  color: var(--ink-soft);

  font-size: 1.15rem;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.hero-support {
  display: flex;

  flex-wrap: wrap;

  gap: 10px 22px;

  margin-top: 24px;

  color: var(--muted);

  font-size: 0.82rem;
  font-weight: 600;
}

.hero-support span {
  position: relative;

  padding-left: 13px;
}

.hero-support span::before {
  position: absolute;

  top: 0.65em;

  left: 0;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #71879c;

  content: "";
}

.hero-product {
  position: relative;

  padding-bottom: 34px;
}


/* =========================================================
   BROWSER PRODUCT FRAMES
   ========================================================= */

.browser-frame {
  overflow: hidden;

  border:
    1px solid
    rgba(148, 163, 184, 0.3);

  border-radius: 20px;

  background: var(--white);

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

.browser-frame-hero {
  transform: scale(1.04);

  transform-origin: center;
}

.browser-frame-feature {
  box-shadow: var(--shadow-medium);
}

.browser-bar {
  display: flex;

  min-height: 42px;

  align-items: center;

  gap: 18px;

  padding: 0 16px;

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

  background: #f8fafc;
}

.browser-dots {
  display: flex;

  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #c5ced8;
}

.browser-title {
  color: var(--muted);

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

.browser-frame img {
  width: 100%;

  height: auto;
}

.hero-proof {
  position: absolute;

  right: 24px;

  bottom: 0;

  display: flex;

  max-width: 340px;

  gap: 12px;

  padding: 16px 18px;

  border:
    1px solid
    rgba(148, 163, 184, 0.28);

  border-radius: 17px;

  background: var(--white);

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

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 0.88rem;
}

.hero-proof span {
  margin-top: 3px;

  color: var(--muted);

  font-size: 0.76rem;
}

.proof-indicator {
  width: 9px;
  height: 9px;

  flex-shrink: 0;

  margin-top: 5px;

  border-radius: 50%;

  background: var(--success);

  box-shadow:
    0 0 0 5px
    rgba(19, 132, 93, 0.1);
}


/* =========================================================
   CAPABILITY STRIP
   ========================================================= */

.capability-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  background: var(--white);
}

.capability-grid {
  display: grid;

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

  min-height: 76px;

  align-items: center;
}

.capability-grid span {
  display: flex;

  min-height: 76px;

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

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

  color: #566577;

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

.capability-grid span:last-child {
  border-right: 0;
}


/* =========================================================
   CENTERED HEADINGS
   ========================================================= */

.section-heading-centered {
  max-width: 860px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-heading-centered p {
  max-width: 700px;

  margin: 20px auto 0;

  font-size: 1.03rem;
}

.compact-heading {
  margin-bottom: 50px;
}


/* =========================================================
   OUTCOMES
   ========================================================= */

.outcome-grid {
  display: grid;

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

  gap: 20px;
}

.outcome-card {
  min-height: 210px;

  padding: 28px;

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

  border-radius: 23px;

  background: var(--white);

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

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

.outcome-card:hover {
  transform: translateY(-4px);

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

.card-number {
  display: block;

  margin-bottom: 34px;

  color: var(--blue);

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

  letter-spacing: 0.1em;
}

.outcome-card h3 {
  margin-bottom: 10px;
}

.outcome-card p {
  font-size: 0.92rem;
}

.product-showcase-large {
  margin-top: 64px;
}


/* =========================================================
   SPLIT PRODUCT FEATURES
   ========================================================= */

.split-feature {
  display: grid;

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

  gap: 72px;

  align-items: center;
}

.split-feature-reverse {
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(0, 0.82fr);
}

.split-feature-copy {
  max-width: 540px;
}

.split-feature-copy > p {
  margin-top: 22px;

  font-size: 1.03rem;
}

.feature-points {
  display: grid;

  gap: 0;

  margin-top: 32px;

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

.feature-points > div {
  padding: 20px 0;

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

.feature-points strong,
.feature-points span {
  display: block;
}

.feature-points strong {
  color: var(--ink);

  font-size: 0.94rem;
}

.feature-points span {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.88rem;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.workflow-grid {
  display: grid;

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

  gap: 16px;
}

.workflow-card {
  min-height: 235px;

  padding: 27px 24px;

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

  border-radius: 21px;

  background: var(--white);

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

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

.workflow-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(43, 103, 151, 0.25);

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

.workflow-number {
  display: block;

  margin-bottom: 39px;

  color: var(--blue);

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

  letter-spacing: 0.12em;
}

.workflow-card h3 {
  margin-bottom: 12px;

  font-size: 1.18rem;
}

.workflow-card p {
  font-size: 0.89rem;
}


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

.mobile-section {
  display: grid;

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

  gap: 80px;

  align-items: center;
}

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

.mobile-section-copy > p {
  max-width: 530px;

  margin-top: 22px;

  color: #a8b6c7;

  font-size: 1.02rem;
}

.dark-feature-list {
  display: grid;

  margin-top: 34px;

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

.dark-feature-list > div {
  padding: 18px 0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);
}

.dark-feature-list strong,
.dark-feature-list span {
  display: block;
}

.dark-feature-list strong {
  color: var(--white);

  font-size: 0.92rem;
}

.dark-feature-list span {
  margin-top: 4px;

  color: #94a8ba;

  font-size: 0.86rem;
}

.phone-showcase {
  display: flex;

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

  gap: 28px;
}

.phone {
  position: relative;

  width: 285px;

  overflow: hidden;

  padding: 8px;

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

  border-radius: 34px;

  background: #020912;

  box-shadow:
    0 35px 75px
    rgba(0, 0, 0, 0.35);
}

.phone img {
  width: 100%;

  border-radius: 27px;
}

.phone-speaker {
  position: absolute;

  z-index: 2;

  top: 7px;
  left: 50%;

  width: 35%;
  height: 15px;

  transform: translateX(-50%);

  border-radius:
    0 0 12px 12px;

  background: #020912;
}

.phone-offset {
  margin-top: 38px;
}


/* =========================================================
   PLATFORM
   ========================================================= */

.platform-grid {
  display: grid;

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

  gap: 20px;
}

.platform-card {
  min-height: 230px;

  padding: 29px;

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

  border-radius: 23px;

  background: var(--white);

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

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

.platform-card:hover {
  transform: translateY(-4px);

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

.platform-card > span {
  display: block;

  margin-bottom: 38px;

  color: var(--blue);

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

.platform-card h3 {
  margin-bottom: 11px;
}

.platform-card p {
  font-size: 0.91rem;
}


/* =========================================================
   HOME PRICING
   ========================================================= */

.pricing-section {
  display: grid;

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

  gap: 78px;

  align-items: start;
}

.pricing-copy {
  max-width: 500px;
}

.pricing-copy > p {
  margin-top: 22px;

  font-size: 1.02rem;
}

.home-pricing-card,
.main-pricing-card {
  border: 1px solid var(--line);

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfdff 100%
    );

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

.home-pricing-card {
  padding: 36px;
}

.pricing-badge {
  display: inline-flex;

  margin-bottom: 22px;

  padding: 7px 11px;

  border:
    1px solid
    rgba(43, 103, 151, 0.17);

  border-radius: 999px;

  background: var(--blue-soft);

  color: var(--blue-dark);

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

  letter-spacing: 0.09em;
}

.pricing-card-title h3 {
  font-size: 1.75rem;
}

.pricing-card-title p {
  margin-top: 7px;
}

.price {
  display: flex;

  align-items: flex-end;

  gap: 4px;

  margin-top: 28px;
}

.currency {
  margin-bottom: 10px;

  font-size: 1.25rem;
  font-weight: 800;
}

.price strong {
  color: var(--ink);

  font-size: 4rem;

  line-height: 0.88;

  letter-spacing: -0.075em;
}

.period {
  margin-bottom: 7px;

  color: var(--muted);

  font-size: 0.86rem;
  font-weight: 650;
}

.pricing-divider {
  height: 1px;

  margin: 28px 0;

  background: var(--line);
}

.pricing-features {
  display: grid;

  gap: 11px;

  list-style: none;
}

.pricing-features li {
  position: relative;

  padding-left: 25px;

  color: var(--ink-soft);

  font-size: 0.91rem;
}

.pricing-features li::before {
  position: absolute;

  left: 0;

  color: var(--blue);

  content: "✓";

  font-weight: 900;
}

.pricing-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 31px;
}


/* =========================================================
   PRICING PAGE
   ========================================================= */

.pricing-hero {
  padding: 122px 0 110px;
}

.pricing-hero-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(520px, 1.12fr);

  gap: 74px;

  align-items: center;
}

.pricing-hero-copy p {
  max-width: 600px;

  margin-top: 27px;

  color: var(--ink-soft);

  font-size: 1.08rem;
}

.main-pricing-card {
  padding: 36px;
}

.main-pricing-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 35px;
}

.main-pricing-top h2 {
  font-size: 2.2rem;
}

.main-pricing-top p {
  margin-top: 8px;
}

.price-large {
  flex-shrink: 0;

  margin-top: 2px;
}

.pricing-feature-columns {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 38px;
}

.main-pricing-bottom {
  display: flex;

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

  gap: 28px;

  margin:
    32px -36px -36px;

  padding: 24px 36px;

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

  background: #f8fafc;
}

.main-pricing-bottom p {
  max-width: 460px;

  font-size: 0.84rem;
}

.larger-rollout {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 80px;

  align-items: center;
}

.larger-rollout-copy p {
  max-width: 600px;

  font-size: 1.02rem;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-layout {
  display: grid;

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

  gap: 74px;

  align-items: start;
}

.contact-copy {
  max-width: 520px;
}

.contact-copy > p {
  margin-top: 22px;

  font-size: 1.02rem;
}

.contact-benefits {
  display: grid;

  margin-top: 34px;

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

.contact-benefits article {
  padding: 21px 0;

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

.contact-benefits strong,
.contact-benefits span {
  display: block;
}

.contact-benefits strong {
  color: var(--ink);

  font-size: 0.94rem;
}

.contact-benefits span {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.88rem;
}

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

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

  border-radius: 28px;

  background: var(--white);

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

.contact-form {
  display: grid;

  gap: 19px;
}

.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;
}

.form-group {
  display: grid;

  gap: 8px;
}

.form-group label {
  color: var(--ink-soft);

  font-size: 0.82rem;
  font-weight: 720;
}

.optional {
  margin-left: 4px;

  color: var(--muted-light);

  font-weight: 500;
}

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

  padding: 14px 15px;

  border:
    1px solid
    #cfd9e3;

  border-radius: 13px;

  outline: none;

  background: #f8fafc;

  color: var(--ink);

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #b8c7d4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:
    rgba(43, 103, 151, 0.7);

  background: var(--white);

  box-shadow:
    0 0 0 4px
    rgba(43, 103, 151, 0.1);
}

.form-group textarea {
  min-height: 135px;

  resize: vertical;
}

.form-footer {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 3px;
}

.form-footer span {
  color: var(--muted);

  font-size: 0.8rem;
}

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

  color: var(--muted);

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

.form-message.success {
  color: #0b7c55;
}

.form-message.error {
  color: #c63c3c;
}

.form-message.loading {
  color: var(--blue);
}


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

.cta-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(61, 118, 172, 0.2),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #0c1a2c,
      #07111e
    );
}

.cta-card {
  display: flex;

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

  gap: 50px;
}

.cta-card h2 {
  max-width: 760px;

  color: var(--white);
}

.cta-card p {
  margin-top: 16px;

  color: #a7b5c5;
}

.cta-buttons {
  display: flex;

  flex-shrink: 0;

  flex-wrap: wrap;

  gap: 10px;
}


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

.site-footer {
  padding: 74px 0 30px;

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

  background: var(--white);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    0.75fr
    0.75fr
    0.75fr;

  gap: 45px;
}

.footer-brand p {
  max-width: 390px;

  margin-top: 20px;

  font-size: 0.88rem;
}

.footer-column h4 {
  margin-bottom: 15px;

  color: var(--ink);

  font-size: 0.84rem;

  letter-spacing: 0;
}

.footer-links {
  display: grid;

  gap: 10px;
}

.footer-links a {
  color: var(--muted);

  font-size: 0.87rem;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 46px;

  padding-top: 21px;

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

  color: var(--muted);

  font-size: 0.79rem;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(16px);

  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}


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

@media (max-width: 1100px) {

  .hero-layout,
  .split-feature,
  .split-feature-reverse,
  .mobile-section,
  .pricing-section,
  .pricing-hero-layout,
  .larger-rollout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split-feature-copy,
  .contact-copy {
    max-width: 760px;
  }

  .browser-frame-hero {
    transform: none;
  }

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

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

  .phone-showcase {
    justify-content: flex-start;
  }

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


/* =========================================================
   SMALL TABLET / MOBILE NAV
   ========================================================= */

@media (max-width: 900px) {

  .nav-desktop,
  .nav-login,
  .nav-demo,
  .nav-trial {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

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

  .capability-grid span:nth-child(3n) {
    border-right: 0;
  }

  .capability-grid span {
    border-bottom:
      1px solid
      var(--line);
  }

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

  .pricing-feature-columns {
    grid-template-columns: 1fr;
  }

  .main-pricing-top,
  .main-pricing-bottom {
    align-items: flex-start;

    flex-direction: column;
  }
}


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

@media (max-width: 720px) {

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

  .section {
    padding: 84px 0;
  }

  .hero,
  .pricing-hero {
    padding: 88px 0 76px;
  }

  h1 {
    font-size:
      clamp(
        2.6rem,
        12vw,
        3.8rem
      );
  }

  h2 {
    font-size:
      clamp(
        2rem,
        8vw,
        2.7rem
      );
  }

  .hero-actions,
  .pricing-actions,
  .cta-buttons {
    width: 100%;
  }

  .hero-actions .btn,
  .pricing-actions .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .hero-support {
    display: grid;

    gap: 7px;
  }

  .hero-proof {
    position: static;

    max-width: none;

    margin-top: 14px;
  }

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

  .capability-grid span {
    min-height: 52px;

    border-right: 0;
  }

  .outcome-grid,
  .workflow-grid,
  .platform-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .outcome-card,
  .platform-card {
    min-height: 0;
  }

  .card-number,
  .workflow-number,
  .platform-card > span {
    margin-bottom: 22px;
  }

  .phone-showcase {
    align-items: center;

    flex-direction: column;
  }

  .phone {
    width:
      min(
        290px,
        88%
      );
  }

  .phone-offset {
    margin-top: 0;
  }

  .home-pricing-card,
  .main-pricing-card,
  .contact-form-card {
    padding: 25px;

    border-radius: 22px;
  }

  .main-pricing-bottom {
    margin:
      28px -25px -25px;

    padding: 22px 25px;
  }

  .form-footer {
    align-items: flex-start;

    flex-direction: column;
  }

  .cta-card {
    align-items: flex-start;

    flex-direction: column;
  }

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

  .footer-brand {
    grid-column:
      span 2;
  }

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

  .brand-sub {
    display: none;
  }
}


/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 520px) {

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

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

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


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.001ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.001ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}






/* =========================================================
   AVILO NAVBAR — CLEAN MINIMAL OVERRIDE
   ========================================================= */

   .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e8edf3;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .navbar {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
  }
  
  /* Brand */
  
  .navbar .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: max-content;
  }
  
  .navbar .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #0f1e33;
    color: #69a7d8;
    box-shadow: none;
  }
  
  .navbar .brand-mark svg {
    width: 27px;
    height: 27px;
  }
  
  .navbar .brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .navbar .brand-name {
    color: #101b2d;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1;
  }
  
  .navbar .brand-sub {
    color: #6b778b;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  /* Main nav */
  
  .nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 10px;
    color: #526074;
    font-size: 0.94rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 160ms ease,
      background-color 160ms ease;
  }
  
  .nav-item:hover {
    color: #173f63;
    background: #f5f8fb;
  }
  
  .nav-item.active {
    color: #1e5d8c;
    background: transparent;
  }
  
  .nav-item.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: #2f78ad;
  }
  
  /* Right actions */
  
  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: max-content;
  }
  
  .nav-login {
    color: #526074;
    font-size: 0.94rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
  }
  
  .nav-login:hover {
    color: #173f63;
  }
  
  .nav-trial {
    min-height: 46px;
    padding: 0 21px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(36, 101, 149, 0.14);
  }
  
  /* Remove any old standalone demo-action styling */
  .nav-demo {
    display: none;
  }
  
  /* Mobile hamburger stays hidden on desktop */
  
  .mobile-toggle {
    display: none;
  }
  
  @media (max-width: 1080px) {
    .navbar {
      gap: 24px;
    }
  
    .nav-desktop {
      gap: 2px;
    }
  
    .nav-item {
      padding-inline: 10px;
    }
  
    .navbar .brand-sub {
      display: none;
    }
  }
  
  @media (max-width: 860px) {
    .navbar {
      min-height: 76px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }
  
    .nav-desktop,
    .nav-actions > .nav-login,
    .nav-actions > .nav-trial {
      display: none;
    }
  
    .mobile-toggle {
      display: inline-flex;
      width: 42px;
      height: 42px;
      padding: 10px;
      border: 1px solid #dfe5ec;
      border-radius: 11px;
      background: #ffffff;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
    }
  
    .mobile-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: #25354a;
    }
  }




  .pricing-trial-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 650;
  }


/* =========================================================
   ENQUIRY SUCCESS STATE
   ========================================================= */

   .contact-form[hidden] {
    display: none !important;
  }
  
  .enquiry-success-card {
    display: none;
  
    padding: 34px;
  
    border:
      1px solid
      rgba(19, 132, 93, 0.18);
  
    border-radius: 22px;
  
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fcfa 100%
      );
  }
  
  .enquiry-success-card:not([hidden]) {
    display: flex;
  
    align-items: flex-start;
  
    gap: 18px;
  }
  
  .enquiry-success-icon {
    display: grid;
  
    width: 42px;
    height: 42px;
  
    flex-shrink: 0;
  
    place-items: center;
  
    border-radius: 50%;
  
    background:
      rgba(19, 132, 93, 0.1);
  
    color: var(--success);
  
    font-size: 1rem;
    font-weight: 900;
  }
  
  .enquiry-success-content {
    min-width: 0;
  }
  
  .enquiry-success-card .eyebrow {
    margin-bottom: 7px;
  
    color: var(--success);
  
    font-size: 0.65rem;
  }
  
  .enquiry-success-card h3 {
    max-width: 470px;
  
    font-size: 1.35rem;
  
    line-height: 1.15;
  }
  
  .enquiry-success-card p {
    max-width: 480px;
  
    margin-top: 10px;
  
    color: var(--muted);
  
    font-size: 0.86rem;
  }
  
  @media (max-width: 720px) {
    .enquiry-success-card {
      padding: 26px;
    }
  }
  