

:root {
  --font-manrope: "Segoe UI", Arial, sans-serif;
  --font-sora: "Segoe UI", Arial, sans-serif;
  --navy-950: #061a33;
  --navy-900: #0a2342;
  --navy-800: #12365d;
  --blue-600: #2365d8;
  --blue-100: #eaf2ff;
  --orange-600: #ed6d0b;
  --orange-500: #ff7a10;
  --orange-100: #fff1e5;
  --green-500: #18a374;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f7;
  --gray-200: #dbe3ee;
  --gray-500: #6b7b90;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(6, 26, 51, 0.08);
  --shadow-lg: 0 28px 80px rgba(6, 26, 51, 0.18);
  --container: 1180px;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-950);
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
a,
input,
select {
  font-family: var(--font-manrope), Arial, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(219, 227, 238, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 18px rgba(6, 26, 51, 0.04);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(154px, 20vw, 198px);
  height: auto;
  border-radius: 5px;
  object-fit: contain;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-900);
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 0.8rem;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.main-nav.is-open {
  display: grid;
}

.main-nav > a:not(.button) {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  color: #33465e;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav > a:not(.button):hover {
  background: var(--gray-50);
  color: var(--orange-600);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-small {
  min-height: 43px;
  margin-top: 0.35rem;
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(237, 109, 11, 0.22);
}

.button-small:hover,
.button-primary:hover {
  background: #d95e00;
  box-shadow: 0 14px 28px rgba(237, 109, 11, 0.28);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 7.4rem 0 4.5rem;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.92)),
    var(--gray-50);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -42%;
  width: 52%;
  height: 78%;
  border: 1px solid rgba(35, 101, 216, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: calc(-80px + var(--hero-shift)) 0 auto;
  width: 100%;
  height: 86%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(16, 56, 97, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 56, 97, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
  transition: transform 80ms linear;
}

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

.hero-orb-one {
  top: 9%;
  right: -7%;
  width: 360px;
  height: 360px;
  background: rgba(255, 122, 16, 0.1);
  transform: translateY(calc(var(--hero-shift) * -0.45));
}

.hero-orb-two {
  bottom: 3%;
  left: -11%;
  width: 320px;
  height: 320px;
  background: rgba(35, 101, 216, 0.08);
  transform: translateY(calc(var(--hero-shift) * -0.65));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3.3rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid #cfe0fa;
  border-radius: 999px;
  background: rgba(234, 242, 255, 0.8);
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.65rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sora), sans-serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 10vw, 4.75rem);
  font-weight: 760;
  line-height: 1.05;
}

h1 span {
  position: relative;
  color: var(--orange-600);
}

h1 span::after {
  position: absolute;
  right: 0;
  bottom: -0.06em;
  left: 0;
  height: 0.15em;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
  opacity: 0.2;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 590px;
  margin: 1.55rem 0 0;
  color: #53667e;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button-primary {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(237, 109, 11, 0.24);
}

.button-primary > span {
  font-size: 1.22rem;
}

.button-ghost {
  border-color: var(--gray-200);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
}

.button-ghost:hover {
  border-color: #b8c7db;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.play-icon {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.05rem;
  margin-top: 1.45rem;
  color: #66788d;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-proof i {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e8f8f2;
  color: var(--green-500);
  font-style: normal;
  font-size: 0.65rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.product-stage {
  position: relative;
  width: min(100%, 650px);
  margin: auto;
  padding: 2.4rem 0 2.6rem;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  top: 2%;
  right: 4%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(145deg, rgba(35, 101, 216, 0.11), rgba(255, 122, 16, 0.12));
  content: "";
  filter: blur(1px);
}

.laptop {
  position: relative;
  width: 92%;
  margin-left: auto;
  filter: drop-shadow(0 28px 36px rgba(6, 26, 51, 0.22));
  animation: device-float 6s ease-in-out infinite;
}

.laptop-screen {
  display: flex;
  aspect-ratio: 1.55;
  overflow: hidden;
  border: 7px solid #102840;
  border-bottom-width: 12px;
  border-radius: 18px 18px 10px 10px;
  background: #f6f8fc;
}

.laptop-base {
  width: 108%;
  height: 12px;
  margin-left: -4%;
  border-radius: 2px 2px 20px 20px;
  background: linear-gradient(#dce3eb, #8d9daf);
  clip-path: polygon(4% 0, 96% 0, 100% 65%, 92% 100%, 8% 100%, 0 65%);
}

.dash-sidebar {
  display: none;
  width: 23%;
  flex: 0 0 23%;
  padding: 0.75rem 0.65rem;
  background: linear-gradient(180deg, #0a2342, #06172c);
}

.dash-sidebar .brand {
  width: 100%;
}

.dash-sidebar .brand-logo {
  width: 100%;
  padding: 0.12rem;
  border-radius: 4px;
  background: var(--white);
}

.side-line {
  display: block;
  width: 86%;
  height: 8px;
  margin: 1rem auto 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.side-line.active {
  height: 21px;
  margin-top: 0.45rem;
  border-left: 3px solid var(--orange-500);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.side-line.short {
  width: 58%;
  margin-left: 7%;
}

.dash-main {
  min-width: 0;
  flex: 1;
  padding: 0.7rem;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dash-top small {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--blue-600);
  font-size: clamp(0.34rem, 1.2vw, 0.56rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.dash-top strong {
  display: block;
  overflow: hidden;
  max-width: 34vw;
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.48rem, 1.8vw, 0.88rem);
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avatar {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.46rem;
  font-weight: 900;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.mini-stat {
  min-width: 0;
  padding: clamp(0.35rem, 1.4vw, 0.65rem);
  border-radius: 7px;
  color: var(--white);
  box-shadow: 0 5px 14px rgba(6, 26, 51, 0.1);
}

.mini-stat span {
  display: block;
  overflow: hidden;
  opacity: 0.88;
  font-size: clamp(0.3rem, 1vw, 0.48rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-stat b {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.66rem, 2.4vw, 1.15rem);
}

.mini-stat.blue {
  background: linear-gradient(135deg, #2365d8, #4b86eb);
}

.mini-stat.green {
  background: linear-gradient(135deg, #138461, #24b983);
}

.mini-stat.orange {
  background: linear-gradient(135deg, #ed6d0b, #f69a26);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.chart-card,
.progress-card {
  min-width: 0;
  padding: clamp(0.35rem, 1.4vw, 0.7rem);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: var(--white);
}

.chart-card > span,
.progress-card > span {
  display: block;
  overflow: hidden;
  color: #5a6c82;
  font-size: clamp(0.3rem, 1.05vw, 0.5rem);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bars {
  display: flex;
  height: clamp(38px, 10vw, 80px);
  align-items: flex-end;
  justify-content: space-around;
  gap: 4px;
  margin-top: 0.35rem;
  border-bottom: 1px solid #e8edf4;
}

.bars i {
  width: 10%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#5c8dec, #2365d8);
}

.progress-card {
  text-align: center;
}

.ring {
  display: grid;
  width: clamp(30px, 9vw, 66px);
  aspect-ratio: 1;
  margin: 0.35rem auto 0.18rem;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green-500) 92%, var(--gray-100) 0);
}

.ring::before {
  grid-area: 1 / 1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.ring b {
  z-index: 1;
  grid-area: 1 / 1;
  font-size: clamp(0.42rem, 1.4vw, 0.68rem);
}

.progress-card small {
  display: block;
  color: #8190a2;
  font-size: clamp(0.26rem, 0.8vw, 0.44rem);
}

.phone {
  position: absolute;
  right: -1%;
  bottom: 0;
  width: 24%;
  min-width: 78px;
  padding: 5px;
  border: 3px solid #102840;
  border-radius: 18px;
  background: #102840;
  box-shadow: 0 22px 40px rgba(6, 26, 51, 0.28);
  transform: rotate(2deg);
  animation: phone-float 5s ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 28%;
  height: 4px;
  border-radius: 99px;
  background: #102840;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 160px;
  padding: 1.25rem 0.5rem 0.6rem;
  border-radius: 12px;
  background: #f7f9fc;
}

.mobile-eyebrow {
  display: block;
  color: var(--blue-600);
  font-size: clamp(0.24rem, 0.75vw, 0.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.phone-screen > b {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.38rem, 1.2vw, 0.7rem);
}

.mobile-score {
  margin-top: 0.55rem;
  padding: 0.45rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-600), #6b97ef);
  color: var(--white);
}

.mobile-score small {
  display: block;
  font-size: clamp(0.25rem, 0.68vw, 0.36rem);
}

.mobile-score strong {
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.62rem, 1.8vw, 1rem);
}

.mobile-row {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.35rem;
  padding: 0.35rem;
  border: 1px solid #e1e7ef;
  border-radius: 6px;
  background: var(--white);
  font-size: clamp(0.22rem, 0.66vw, 0.34rem);
  font-weight: 750;
}

.mobile-row span:last-child {
  color: var(--green-500);
}

.float-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  color: #45586f;
  font-size: clamp(0.52rem, 1.3vw, 0.7rem);
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.float-chip-one {
  z-index: 6;
  bottom: 2%;
  left: -2%;
}

.float-chip-two {
  z-index: 6;
  top: 2%;
  right: 0;
}

.float-chip-two b {
  color: var(--green-500);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(24, 163, 116, 0.12);
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 1.5rem;
}

.trust-grid > div {
  padding: 0.8rem;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-sora), sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.trust-grid span {
  display: block;
  margin-top: 0.15rem;
  color: #718197;
  font-size: 0.67rem;
  font-weight: 700;
}

.section {
  position: relative;
  padding-block: 5rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.7rem;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--orange-600);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.section-heading h2,
.system-copy > h2,
.marketing-copy > h2,
.builder-copy > h2,
.faq-copy > h2,
.combo-heading h2,
.cta-content h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 7vw, 3.45rem);
  font-weight: 750;
  line-height: 1.12;
}

.section-heading p,
.system-copy > p,
.builder-copy > p,
.faq-copy > p {
  max-width: 650px;
  margin: 1rem auto 0;
  color: #66788e;
  line-height: 1.8;
}

.solutions-section {
  overflow: hidden;
  background: var(--white);
}

.solutions-section::before {
  position: absolute;
  top: 9%;
  left: -120px;
  width: 240px;
  height: 240px;
  border: 45px solid rgba(35, 101, 216, 0.035);
  border-radius: 50%;
  content: "";
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 355px;
  flex-direction: column;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6, 26, 51, 0.04);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(237, 109, 11, 0.09),
    transparent 68%
  );
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(237, 109, 11, 0.4);
  box-shadow:
    0 22px 46px rgba(6, 26, 51, 0.11),
    0 0 0 1px rgba(237, 109, 11, 0.07);
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
}

.blue-icon {
  background: #e9f2ff;
  color: #2365d8;
}

.orange-icon {
  background: var(--orange-100);
  color: var(--orange-600);
}

.violet-icon {
  background: #f0eaff;
  color: #754dd6;
}

.green-icon {
  background: #e6f8f1;
  color: var(--green-500);
}

.service-number {
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  color: #e3e9f1;
  font-family: var(--font-sora), sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 1.35rem;
  font-size: 1.26rem;
  font-weight: 750;
}

.service-card > p {
  margin: 0.7rem 0 0;
  color: #6d7d90;
  font-size: 0.9rem;
  line-height: 1.72;
}

.service-card ul,
.portal-copy ul,
.price-card ul,
.combo-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #4c5e74;
  font-size: 0.79rem;
  font-weight: 700;
}

.service-card li svg {
  color: var(--green-500);
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 850;
  transition: color 180ms ease;
}

.service-card > a:hover {
  color: var(--orange-600);
}

.system-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(35, 101, 216, 0.07), transparent 28%),
    var(--gray-50);
}

.system-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.system-copy > p {
  margin-inline: 0;
}

.portal-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-top: 1.75rem;
  padding: 0.35rem;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
}

.portal-tabs button {
  min-height: 42px;
  padding: 0.7rem;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #6e7e91;
  font-size: 0.75rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.portal-tabs button.active {
  background: var(--navy-900);
  box-shadow: 0 8px 18px rgba(6, 26, 51, 0.16);
  color: var(--white);
}

.portal-copy {
  min-height: 345px;
  padding-top: 1.45rem;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-500);
  font-size: 0.72rem;
  font-weight: 850;
}

.portal-badge svg {
  padding: 2px;
  border-radius: 50%;
  background: #dbf6ec;
}

.portal-copy h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  line-height: 1.25;
}

.portal-copy > p {
  margin: 0.75rem 0 0;
  color: #68798d;
  font-size: 0.91rem;
}

.portal-copy li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #41546b;
  font-size: 0.82rem;
  font-weight: 750;
}

.portal-copy li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange-600);
  font-size: 0.86rem;
  font-weight: 900;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.text-link svg {
  transition: transform 180ms ease;
}

.portal-demo-wrap {
  position: relative;
  max-width: 650px;
  margin: auto;
  padding: 1.6rem 0.35rem 3rem;
}

.portal-demo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(35, 101, 216, 0.1), rgba(255, 122, 16, 0.08));
  content: "";
  transform: rotate(-2deg);
}

.portal-demo {
  overflow: hidden;
  border: 7px solid #172a40;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.demo-bar {
  display: flex;
  height: 26px;
  align-items: center;
  gap: 5px;
  padding-inline: 0.65rem;
  border-bottom: 1px solid #e4e9f0;
  background: #f5f7fa;
}

.demo-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccd5e0;
}

.demo-bar > span:first-child {
  background: #fa806f;
}

.demo-bar > span:nth-child(2) {
  background: #f9c861;
}

.demo-bar > span:nth-child(3) {
  background: #67c989;
}

.demo-bar b {
  margin-left: auto;
  color: #8a97a7;
  font-size: 0.4rem;
}

.demo-body {
  display: flex;
  aspect-ratio: 1.35;
  min-height: 330px;
}

.demo-menu {
  display: none;
  width: 24%;
  flex: 0 0 24%;
  padding: 0.9rem 0.65rem;
  background: linear-gradient(180deg, var(--navy-900), #07172b);
}

.demo-menu .brand {
  width: 100%;
  margin-bottom: 1.2rem;
}

.demo-menu .brand-logo {
  width: 100%;
  padding: 0.12rem;
  border-radius: 4px;
  background: var(--white);
}

.demo-menu > span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  padding: 0.46rem;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.43rem;
  font-weight: 700;
}

.demo-menu > span i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.75;
}

.demo-menu > span.active {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.demo-menu > span.active i {
  background: var(--orange-500);
}

.demo-content {
  min-width: 0;
  flex: 1;
  padding: clamp(0.65rem, 2vw, 1.1rem);
  background: #f5f7fb;
}

.demo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-heading small {
  display: block;
  color: var(--blue-600);
  font-size: clamp(0.36rem, 1vw, 0.52rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.demo-heading strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.6rem, 1.6vw, 0.9rem);
}

.demo-heading > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.42rem;
  font-weight: 900;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.38rem;
  margin-top: 0.65rem;
}

.demo-stats > div {
  min-width: 0;
  padding: clamp(0.35rem, 1.1vw, 0.6rem);
  border: 1px solid #e2e7ee;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 13px rgba(6, 26, 51, 0.04);
}

.demo-stats svg {
  color: var(--blue-600);
}

.demo-stats small {
  display: block;
  overflow: hidden;
  margin-top: 0.3rem;
  color: #7c8999;
  font-size: clamp(0.28rem, 0.75vw, 0.42rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-stats b {
  display: block;
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.64rem, 1.7vw, 1rem);
}

.demo-chart,
.demo-tasks {
  margin-top: 0.45rem;
  padding: clamp(0.45rem, 1.2vw, 0.7rem);
  border: 1px solid #e2e7ee;
  border-radius: 8px;
  background: var(--white);
}

.demo-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: clamp(0.32rem, 0.8vw, 0.48rem);
}

.demo-chart-title span {
  padding: 0.16rem 0.35rem;
  border-radius: 99px;
  background: var(--gray-50);
  color: #8090a4;
}

.line-chart {
  display: flex;
  height: clamp(50px, 10vw, 78px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  margin-top: 0.45rem;
  border-bottom: 1px solid #e4e9f0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 16px,
    #f1f4f8 17px
  );
}

.line-chart > span {
  width: 8%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#8aacfa, var(--blue-600));
}

.demo-tasks > span {
  display: block;
  color: #64758b;
  font-size: clamp(0.32rem, 0.85vw, 0.46rem);
  font-weight: 800;
}

.demo-tasks i {
  display: block;
  width: 82%;
  height: 5px;
  margin-top: 0.34rem;
  border-radius: 99px;
  background: #e8edf3;
}

.demo-tasks i:nth-child(3) {
  width: 67%;
}

.demo-tasks i:nth-child(4) {
  width: 74%;
}

.demo-note {
  position: absolute;
  right: -0.5rem;
  bottom: 0.7rem;
  display: flex;
  max-width: 245px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  color: var(--green-500);
  backdrop-filter: blur(10px);
}

.demo-note b,
.demo-note span {
  display: block;
}

.demo-note b {
  color: var(--navy-900);
  font-size: 0.69rem;
}

.demo-note span {
  margin-top: 0.1rem;
  color: #7a899a;
  font-size: 0.5rem;
}

.feature-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.feature-ribbon > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
  color: #51657d;
  font-size: 0.73rem;
  font-weight: 800;
}

.feature-ribbon svg {
  flex: 0 0 auto;
  color: var(--orange-600);
}

.marketing-section {
  min-height: 780px;
  overflow: hidden;
  background: linear-gradient(135deg, #071a31, #0d2c4f 65%, #102f52);
  color: var(--white);
}

.marketing-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 85%);
}

.marketing-glow {
  position: absolute;
  top: 15%;
  left: -12%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(237, 109, 11, 0.13);
  filter: blur(90px);
}

.marketing-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 4rem;
}

.marketing-copy {
  order: -1;
}

.light-kicker {
  color: #ff9344;
}

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

.marketing-copy > p {
  margin: 1.1rem 0 0;
  color: #a9bbce;
  line-height: 1.8;
}

.marketing-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.marketing-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
}

.marketing-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #ff9344;
}

.marketing-list h3 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.marketing-list p {
  margin: 0.25rem 0 0;
  color: #99adbf;
  font-size: 0.79rem;
  line-height: 1.6;
}

.button-light {
  margin-top: 1.7rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--navy-950);
}

.marketing-visual {
  position: relative;
  min-height: 460px;
}

.website-window {
  position: absolute;
  top: 5%;
  right: 0;
  width: 95%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.93);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateY(-4deg) rotateZ(-1deg);
}

.website-top {
  display: flex;
  height: 26px;
  align-items: center;
  gap: 5px;
  padding: 0.45rem;
  background: #eef2f7;
}

.website-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8d1dd;
}

.website-top i:first-child {
  background: #f0796d;
}

.website-top i:nth-child(2) {
  background: #f4be58;
}

.website-top i:nth-child(3) {
  background: #68c589;
}

.website-top span {
  width: 45%;
  margin-left: 0.4rem;
  padding: 0.12rem 0.4rem;
  border-radius: 99px;
  background: var(--white);
  color: #92a0b0;
  font-size: 0.34rem;
}

.website-hero {
  min-height: 285px;
  padding: 0.8rem 1rem 1.4rem;
  background:
    linear-gradient(90deg, rgba(4, 28, 54, 0.98), rgba(9, 48, 85, 0.72)),
    radial-gradient(circle at 75% 50%, #f0a15e, #163a5c);
}

.website-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  color: var(--white);
  font-size: clamp(0.34rem, 1vw, 0.52rem);
}

.website-nav b {
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.45rem, 1.4vw, 0.74rem);
}

.website-hero > div:last-child {
  display: flex;
  min-height: 215px;
  max-width: 54%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.website-hero small {
  color: #ffae73;
  font-size: clamp(0.3rem, 0.8vw, 0.43rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.website-hero strong {
  margin-top: 0.4rem;
  color: var(--white);
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.55rem);
  line-height: 1.15;
}

.website-hero > div:last-child > span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.36rem, 1vw, 0.55rem);
}

.website-hero button {
  margin-top: 0.65rem;
  padding: 0.4rem 0.65rem;
  border: 0;
  border-radius: 5px;
  background: var(--orange-600);
  color: var(--white);
  font-size: clamp(0.34rem, 0.9vw, 0.5rem);
  font-weight: 800;
}

.social-phone {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: 2%;
  width: 33%;
  min-width: 122px;
  padding: 0.45rem;
  border: 5px solid #15283c;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
  color: var(--navy-950);
  transform: rotate(3deg);
}

.social-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem;
  font-size: clamp(0.35rem, 0.9vw, 0.48rem);
  font-weight: 850;
}

.social-head i {
  font-style: normal;
}

.social-post {
  display: grid;
  min-height: 170px;
  place-content: center;
  padding: 0.7rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.25), transparent 25%),
    linear-gradient(135deg, var(--orange-600), #f6a03a);
  color: var(--white);
  text-align: center;
}

.social-post svg {
  margin: 0 auto 0.5rem;
}

.social-post b {
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(0.5rem, 1.4vw, 0.78rem);
  line-height: 1.25;
}

.social-post span {
  margin-top: 0.35rem;
  font-size: clamp(0.32rem, 0.85vw, 0.45rem);
}

.social-actions {
  padding: 0.4rem 0.2rem 0.1rem;
  color: #566679;
  font-size: 0.7rem;
}

.reach-card {
  position: absolute;
  z-index: 3;
  bottom: 1%;
  left: 1%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  color: var(--orange-600);
}

.reach-card span,
.reach-card b {
  display: block;
}

.reach-card span {
  color: #79899a;
  font-size: 0.47rem;
}

.reach-card b {
  color: var(--navy-950);
  font-size: 0.67rem;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(237, 109, 11, 0.055), transparent 22%),
    var(--white);
}

.plans-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.plans-label span {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans-label i {
  height: 1px;
  flex: 1;
  background: var(--gray-200);
}

.plans-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 26, 51, 0.045);
}

.price-card.featured {
  border-color: var(--orange-500);
  box-shadow: 0 22px 52px rgba(237, 109, 11, 0.15);
}

.popular-badge {
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 0.38rem 0.75rem;
  border-radius: 99px;
  background: var(--orange-600);
  box-shadow: 0 8px 18px rgba(237, 109, 11, 0.22);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-tag {
  width: fit-content;
  padding: 0.3rem 0.58rem;
  border-radius: 99px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.62rem;
  font-weight: 850;
}

.price-card.featured .price-tag {
  background: var(--orange-100);
  color: var(--orange-600);
}

.price-card h3 {
  margin-top: 1rem;
  font-size: 1.28rem;
}

.price-card > p {
  min-height: 48px;
  margin: 0.45rem 0 0;
  color: #728195;
  font-size: 0.79rem;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin-top: 1.1rem;
  font-family: var(--font-sora), sans-serif;
}

.price small {
  margin-bottom: 0.78rem;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 800;
}

.price strong {
  font-size: clamp(2.4rem, 10vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.price span {
  margin-bottom: 0.6rem;
  color: #78889b;
  font-size: 0.68rem;
  font-weight: 750;
}

.price-note {
  display: block;
  margin-top: 0.35rem;
  color: #8795a7;
  font-size: 0.66rem;
}

.price-card ul {
  margin: 1.25rem 0;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #46596f;
  font-size: 0.78rem;
  font-weight: 700;
}

.price-card li svg {
  flex: 0 0 auto;
  color: var(--green-500);
}

.price-button {
  width: 100%;
  margin-top: auto;
  border-color: var(--gray-200);
  background: var(--gray-50);
  color: var(--navy-900);
}

.price-button:hover {
  border-color: var(--orange-500);
  background: var(--orange-100);
  color: var(--orange-600);
}

.price-card .button-primary {
  border-color: transparent;
  background: var(--orange-600);
  color: var(--white);
}

.excess-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  color: #718095;
  font-size: 0.7rem;
  text-align: center;
}

.excess-note > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  flex: 0 0 23px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 900;
}

.combo-heading {
  max-width: 700px;
  margin: 5rem auto 2rem;
  text-align: center;
}

.combos-grid {
  display: grid;
  gap: 1.2rem;
  max-width: 1000px;
  margin-inline: auto;
}

.combo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid #cdd8e5;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.combo-card::after {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(35, 101, 216, 0.055);
  content: "";
}

.combo-premium {
  border-color: var(--orange-500);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 235, 0.94));
  box-shadow: 0 26px 60px rgba(237, 109, 11, 0.14);
}

.combo-premium::after {
  background: rgba(237, 109, 11, 0.08);
}

.best-choice {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: -2.7rem;
  width: 150px;
  padding: 0.35rem;
  background: var(--orange-600);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(36deg);
}

.combo-top {
  position: relative;
  z-index: 1;
}

.combo-top > span {
  color: var(--orange-600);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-top h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 6vw, 2rem);
  line-height: 1.18;
}

.combo-top p {
  margin: 0.65rem 0 0;
  color: #6d7c8f;
  font-size: 0.8rem;
}

.combo-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-top: 1.5rem;
  padding-block: 1rem;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.combo-price > span {
  width: 100%;
  color: #7c8a9a;
  font-size: 0.65rem;
}

.combo-price strong {
  color: var(--orange-600);
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(2rem, 9vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.combo-price small {
  margin-bottom: 0.3rem;
  color: #718095;
  font-size: 0.7rem;
  font-weight: 750;
}

.combo-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #44586e;
  font-size: 0.77rem;
  font-weight: 720;
}

.combo-card li svg {
  flex: 0 0 auto;
  color: var(--green-500);
}

.combo-initial {
  margin: 1.2rem 0;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--gray-50);
  color: #65758a;
  font-size: 0.72rem;
  text-align: center;
}

.combo-card > .button {
  width: 100%;
  margin-top: auto;
}

.button-navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(6, 26, 51, 0.2);
}

.button-navy:hover {
  background: #04172e;
}

.pricing-disclaimer {
  max-width: 740px;
  margin: 1.2rem auto 0;
  color: #8290a2;
  font-size: 0.67rem;
  text-align: center;
}

.builder-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 242, 255, 0.72), rgba(255, 241, 229, 0.6)),
    var(--gray-50);
}

.builder-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.builder-copy > p {
  margin-inline: 0;
}

.proposal-options {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.proposal-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.proposal-option:hover,
.proposal-option.selected {
  border-color: rgba(237, 109, 11, 0.55);
  background: var(--white);
  box-shadow: 0 9px 22px rgba(6, 26, 51, 0.06);
}

.proposal-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #cbd5e2;
  border-radius: 8px;
  background: var(--white);
  color: transparent;
}

.proposal-option.selected .custom-check {
  border-color: var(--orange-600);
  background: var(--orange-600);
  color: var(--white);
}

.proposal-name,
.proposal-name b,
.proposal-name small,
.proposal-value,
.proposal-value b,
.proposal-value small {
  display: block;
}

.proposal-name b {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.proposal-name small {
  margin-top: 0.1rem;
  color: #8290a1;
  font-size: 0.63rem;
}

.proposal-value {
  grid-column: 2;
  text-align: left;
}

.proposal-value small {
  color: #8795a5;
  font-size: 0.57rem;
}

.proposal-value b {
  color: var(--orange-600);
  font-size: 0.73rem;
}

.proposal-summary {
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.summary-kicker {
  color: #ff984a;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proposal-summary h3 {
  margin-top: 0.5rem;
  color: var(--white);
  font-size: 1.4rem;
}

.summary-selected {
  display: grid;
  min-height: 95px;
  gap: 0.45rem;
  align-content: start;
  margin-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-selected > span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #bed0e3;
  font-size: 0.72rem;
}

.summary-selected svg {
  padding: 2px;
  border-radius: 50%;
  background: rgba(24, 163, 116, 0.2);
  color: #61ddb0;
}

.summary-totals {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.summary-totals > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.summary-totals span {
  color: #9fb3c8;
  font-size: 0.68rem;
}

.summary-totals strong {
  font-family: var(--font-sora), sans-serif;
  font-size: 1.05rem;
}

.summary-totals .monthly-total {
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-totals .monthly-total strong {
  color: #ff9b51;
  font-size: 1.42rem;
}

.proposal-summary .button {
  width: 100%;
  margin-top: 1.2rem;
}

.proposal-summary .button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.proposal-summary > small {
  display: block;
  margin-top: 0.75rem;
  color: #879eb5;
  font-size: 0.56rem;
  line-height: 1.55;
  text-align: center;
}

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

.process-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 1.45rem;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
}

.process-grid article > span {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: #e3e9f0;
  font-family: var(--font-sora), sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.process-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-100);
  color: var(--orange-600);
}

.process-grid h3 {
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.process-grid p {
  margin: 0.6rem 0 0;
  color: #728195;
  font-size: 0.8rem;
  line-height: 1.7;
}

.faq-section {
  background: var(--gray-50);
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-copy > p {
  margin-inline: 0;
}

.faq-copy .text-link {
  margin-top: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(237, 109, 11, 0.42);
  box-shadow: 0 10px 24px rgba(6, 26, 51, 0.06);
}

.faq-list summary {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--orange-600);
  content: "+";
  font-size: 1rem;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #708094;
  font-size: 0.75rem;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  padding-block: 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2747, #06182e);
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -160px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(237, 109, 11, 0.16);
  filter: blur(20px);
}

.final-cta::after {
  bottom: -230px;
  left: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.cta-content > span {
  color: #ff9a50;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.cta-content h2 {
  margin-top: 0.75rem;
  color: var(--white);
}

.cta-content > p {
  max-width: 630px;
  margin: 1rem auto 0;
  color: #aec0d2;
  line-height: 1.8;
}

.cta-content > div {
  display: grid;
  gap: 0.7rem;
  max-width: 560px;
  margin: 1.6rem auto 0;
}

.cta-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding-top: 3.6rem;
  background: #041426;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
}

.site-footer .brand-logo {
  width: min(220px, 100%);
  padding: 0.22rem;
  border-radius: 7px;
  background: var(--white);
}

.footer-brand > p {
  max-width: 330px;
  margin: 1rem 0;
  color: #8fa4ba;
  font-size: 0.78rem;
  line-height: 1.7;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ff9548;
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-grid h2 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-family: var(--font-manrope), sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a {
  display: block;
  width: fit-content;
  margin-top: 0.55rem;
  color: #91a6ba;
  font-size: 0.73rem;
  transition: color 160ms ease;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: var(--white);
}

.footer-contact > a {
  align-items: flex-start;
  gap: 0.45rem;
  word-break: break-word;
}

.footer-contact > a svg {
  flex: 0 0 auto;
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2.8rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f859a;
  font-size: 0.6rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  min-width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.85rem;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: #16a66d;
  box-shadow: 0 12px 30px rgba(10, 104, 72, 0.3);
  color: var(--white);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.whatsapp-float:hover {
  background: #10885a;
  transform: translateY(-3px);
}

.whatsapp-float span {
  display: none;
  font-size: 0.76rem;
  font-weight: 850;
}

@keyframes device-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .dash-sidebar {
    display: block;
  }

  .phone-screen {
    min-height: 190px;
  }

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

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

  .demo-menu {
    display: block;
  }

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

  .proposal-option {
    grid-template-columns: 28px minmax(0, 1fr) auto;
  }

  .proposal-value {
    grid-column: auto;
    text-align: right;
  }

  .cta-content > div {
    display: flex;
    justify-content: center;
  }

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

  .whatsapp-float span {
    display: inline;
  }
}

@media (min-width: 760px) {
  .header-inner {
    min-height: 80px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .main-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav > a:not(.button) {
    padding-inline: 0.72rem;
  }

  .button-small {
    margin: 0 0 0 0.5rem;
  }

  .hero {
    padding-top: 9rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid > div + div {
    border-left: 1px solid var(--gray-100);
  }

  .section {
    padding-block: 6.2rem;
  }

  .services-grid {
    gap: 1.2rem;
  }

  .price-card {
    padding: 1.75rem;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

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

  .combo-card {
    padding: 2rem;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 805px;
    padding-block: 10.5rem 5.2rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 2.2rem;
  }

  .hero-copy {
    padding-bottom: 1.5rem;
  }

  .product-stage {
    transform: translateX(3%);
  }

  .trust-grid {
    padding-block: 1.1rem;
  }

  .trust-grid strong {
    font-size: 1.28rem;
  }

  .trust-grid span {
    font-size: 0.74rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    padding: 1.55rem;
  }

  .system-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
    gap: 4.5rem;
  }

  .portal-demo-wrap {
    transform: translateX(2%);
  }

  .feature-ribbon {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-ribbon > div + div {
    padding-left: 1rem;
    border-left: 1px solid var(--gray-200);
  }

  .marketing-layout {
    grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
    gap: 5rem;
  }

  .marketing-copy {
    order: 0;
  }

  .marketing-visual {
    min-height: 560px;
  }

  .website-window {
    top: 7%;
    right: 4%;
  }

  .social-phone {
    right: 0;
    bottom: 3%;
  }

  .builder-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 4rem;
  }

  .proposal-summary {
    position: sticky;
    top: 110px;
    padding: 2rem;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(550px, 1.25fr);
    gap: 5rem;
  }

  .process-grid::before {
    position: absolute;
    z-index: 0;
    top: 49px;
    right: 15%;
    left: 15%;
    height: 1px;
    border-top: 1px dashed #c8d4e1;
    content: "";
  }

  .process-grid article {
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
