:root {
  --brand-50: #e6f7f0;
  --brand-100: #b3e8d4;
  --brand-200: #80d9b8;
  --brand-400: #33bf8f;
  --brand-500: #00a76f;
  --brand-600: #00a76f;
  --brand-700: #008c5d;
  --brand-900: #005c3d;
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --gray-900: #101828;
  --success: #12b76a;
  --error: #f04438;
  --warning: #f79009;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 2px 4px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.03);
  --shadow-xl:
    0 2px 8px rgba(0, 0, 0, 0.02), 0 12px 32px rgba(0, 0, 0, 0.05),
    0 24px 56px rgba(0, 0, 0, 0.04);
  --shadow-2xl:
    0 4px 12px rgba(0, 0, 0, 0.02), 0 16px 40px rgba(0, 0, 0, 0.05),
    0 32px 72px rgba(0, 0, 0, 0.06);
  --shadow-3xl:
    0 4px 16px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.05),
    0 48px 96px rgba(0, 0, 0, 0.06);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --section-py: clamp(80px, 10vw, 128px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
  font-optical-sizing: auto;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input {
  font-family: inherit;
}
strong {
  font-weight: 600;
}
.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
}
.h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  max-width: 720px;
}
.text-brand {
  color: var(--brand-600);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .h2 {
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-600);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-700);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-full);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--primary {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}
.btn--primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.btn--secondary {
  background: #fff;
  color: var(--gray-700);
  border-color: var(--gray-300);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}
.btn--ghost-brand {
  background: transparent;
  color: var(--brand-600);
  padding: 10px 4px;
}
.btn--ghost-brand:hover {
  color: var(--brand-700);
}
.btn--white {
  background: #fff;
  color: var(--brand-700);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--brand-50);
  box-shadow: var(--shadow-md);
}
.btn--nav {
  padding: 9px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}
.btn--xl {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon-wrap--red {
  background: #fef3f2;
  color: var(--error);
}
.card__icon-wrap--amber {
  background: #fffaeb;
  color: var(--warning);
}
.card__icon-wrap--purple {
  background: #e6f7f0;
  color: #00a76f;
}
.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-500);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
}
.nav__inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo img {
  height: 28px;
}
.nav__center {
  display: flex;
  gap: 4px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all 0.15s;
}
.nav__link:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}
.nav__link--active,
.nav__link--active:hover {
  color: var(--brand-600);
  font-weight: 600;
}
.nav__link--login {
  margin-right: 4px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--gray-700);
  padding: 8px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--gray-100);
}
.nav__mobile a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
}
.nav__mobile a:hover {
  background: var(--gray-50);
}
.nav__mobile hr {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 4px 0;
}
.nav.open .nav__mobile {
  display: flex;
}
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: visible;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(0, 167, 111, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 10%,
      rgba(0, 196, 140, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero .container {
  position: relative;
}
.hero__badge {
  margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0s;
}
.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--gray-900);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.07s;
}
.hero__accent {
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.14s;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.21s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero__visual {
  max-width: 960px;
  margin: 0 auto;
  perspective: 1200px;
}
.hero__stage {
  position: relative;
  animation: heroEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}
@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(6deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: orbFadeIn 1.5s ease both;
}
.hero__orb--1 {
  width: 380px;
  height: 380px;
  background: rgba(0, 167, 111, 0.12);
  top: -8%;
  left: -8%;
  animation:
    orbFadeIn 1.5s ease both,
    orbDrift1 12s ease-in-out infinite;
  animation-delay: 0.6s, 2s;
}
.hero__orb--2 {
  width: 280px;
  height: 280px;
  background: rgba(0, 196, 140, 0.1);
  bottom: 0;
  right: -4%;
  animation:
    orbFadeIn 1.5s ease both,
    orbDrift2 14s ease-in-out infinite;
  animation-delay: 0.9s, 2.3s;
}
.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 167, 111, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation:
    orbFadeIn 1.5s ease both,
    orbPulse 8s ease-in-out infinite;
  animation-delay: 1.2s, 2.5s;
}
@keyframes orbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes orbDrift1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(25px, -15px);
  }
  66% {
    transform: translate(-10px, 10px);
  }
}
@keyframes orbDrift2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-20px, 12px);
  }
  66% {
    transform: translate(15px, -8px);
  }
}
@keyframes orbPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}
.hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
}
.hero__img {
  width: 100%;
  display: block;
}
.hero__float {
  position: absolute;
  z-index: 2;
}
.hero__float-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.03),
    0 6px 20px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.03);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}
.hero__float-card strong {
  font-weight: 700;
  color: var(--gray-900);
}
.hero__float-card--accent {
  background: var(--brand-600);
  border-color: var(--brand-500);
  color: #fff;
}
.hero__float-card--accent strong {
  color: #fff;
}
.hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__float-dot--green {
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.2);
}
.hero__float-dot--blue {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.hero__float--1 {
  top: 12%;
  left: -6%;
  animation:
    floatSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) both,
    floatHover1 7s ease-in-out infinite;
  animation-delay: 0.9s, 2.2s;
}
.hero__float--2 {
  bottom: 28%;
  right: -5%;
  animation:
    floatSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) both,
    floatHover2 8s ease-in-out infinite;
  animation-delay: 1.15s, 2.5s;
}
.hero__float--3 {
  bottom: 10%;
  left: -3%;
  animation:
    floatSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) both,
    floatHover3 9s ease-in-out infinite;
  animation-delay: 1.4s, 2.8s;
}
@keyframes floatSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes floatHover1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, -10px);
  }
}
@keyframes floatHover2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, 8px);
  }
}
@keyframes floatHover3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -6px);
  }
}
.proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}
.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof__item {
  text-align: center;
}
.proof__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
.proof__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 2px;
}
.proof__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}
.familiar {
  padding: var(--section-py) 0;
}
.familiar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.compare {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare__col {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.compare__col--before {
  background: #fff;
}
.compare__col--after {
  background: var(--brand-50);
  border-color: var(--brand-200);
}
.compare__col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare__col-header--before {
  background: #fef3f2;
  color: var(--error);
  border-bottom: 1px solid #fecaca;
}
.compare__col-header--after {
  background: #ecfdf5;
  color: #059669;
  border-bottom: 1px solid #a7f3d0;
}
.compare__list {
  list-style: none;
  padding: 8px 0;
}
.compare__list li {
  padding: 14px 24px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.compare__col--after .compare__list li {
  border-bottom-color: rgba(0, 167, 111, 0.08);
  color: var(--gray-800);
}
.compare__list li:last-child {
  border-bottom: none;
}
.compare__col--before .compare__list li {
  color: var(--gray-500);
}
.how {
  padding: var(--section-py) 0;
}
.how__grid {
  max-width: 520px;
  margin: 0 auto 56px;
}
.how__step {
  display: flex;
  gap: 20px;
}
.how__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.how__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how__line {
  width: 2px;
  flex: 1;
  background: var(--gray-200);
  margin: 8px 0;
  min-height: 24px;
}
.how__content {
  padding-bottom: 32px;
}
.how__content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.how__content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.how__visual {
  text-align: center;
  margin-bottom: 48px;
  perspective: 1000px;
}
.how__stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.how__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 167, 111, 0.08) 0%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.how__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.how__img {
  width: 100%;
  display: block;
}
.how__pill {
  position: absolute;
  z-index: 2;
}
.how__pill-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.03),
    0 6px 20px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.03);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}
.how__pill-card--accent {
  background: var(--brand-600);
  border-color: var(--brand-500);
  color: #fff;
}
.how__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.how__pill-dot--green {
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(0, 167, 111, 0.2);
}
.how__pill-dot--blue {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.how__pill--1 {
  top: 8%;
  right: -4%;
}
.how__pill--2 {
  top: 45%;
  left: -5%;
}
.how__pill--3 {
  bottom: 8%;
  right: -2%;
}
.how__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.calc {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.calc__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.calc__card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.calc__card--results {
  border-color: rgba(0, 167, 111, 0.15);
}
.calc__field {
  margin-bottom: 20px;
}
.calc__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.calc__slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.calc__range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-600);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 167, 111, 0.3);
  transition: transform 0.15s;
}
.calc__range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc__range-val {
  min-width: 32px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.calc__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all 0.15s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23667085' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.calc__select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow:
    0 0 0 4px rgba(0, 167, 111, 0.12),
    var(--shadow-xs);
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-prefix {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-weight: 500;
  font-size: 0.9375rem;
  pointer-events: none;
}
.input-wrap input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-900);
  background: #fff;
  transition: all 0.15s;
  box-shadow: var(--shadow-xs);
  -moz-appearance: textfield;
}
.input-wrap input::-webkit-inner-spin-button,
.input-wrap input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.input-wrap .input-prefix + input {
  padding-left: 30px;
}
.input-wrap input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow:
    0 0 0 4px rgba(0, 167, 111, 0.12),
    var(--shadow-xs);
}
.calc__result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.calc__result-item {
  text-align: center;
  padding: 12px 0;
}
.calc__result-item--main {
  grid-column: 1 / -1;
  padding: 16px 0 8px;
}
.calc__result-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.calc__result-value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc__result-value--sm {
  font-size: 1.5rem;
}
.calc__result-value--green {
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc__divider {
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
}
.calc__bar-chart {
  margin-bottom: 24px;
}
.calc__bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.calc__bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  min-width: 72px;
  text-align: right;
}
.calc__bar-track {
  flex: 1;
  height: 28px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.calc__bar {
  height: 100%;
  border-radius: var(--radius-md);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.calc__bar--gray {
  background: var(--gray-300);
}
.calc__bar--green {
  background: linear-gradient(90deg, var(--brand-600) 0%, #00c48c 100%);
}
.calc__bar-val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-700);
  min-width: 56px;
}
.calc__bar-caption {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-align: center;
  display: block;
  margin-top: 4px;
}
.calc__cta {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .calc__wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.testimonials {
  padding: var(--section-py) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.tcard:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.tcard__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}
.tcard__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 24px;
  font-style: normal;
  border: none;
  padding: 0;
}
.tcard__quote strong {
  color: var(--gray-900);
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tcard__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}
.tcard__meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.home-faq {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.home-faq__list {
  max-width: 768px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-faq__item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.home-faq__item[open] {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}
.home-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  list-style: none;
  line-height: 1.5;
}
.home-faq__q::-webkit-details-marker {
  display: none;
}
.home-faq__q span {
  flex: 1;
}
.home-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s;
}
.home-faq__item[open] .home-faq__icon {
  transform: rotate(180deg);
  background: var(--brand-50);
  color: var(--brand-600);
}
.home-faq__a {
  padding: 0 24px 20px;
}
.home-faq__a p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.final-cta {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.final-cta__inner {
  position: relative;
  background: #f5efe0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-2xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
}
.final-cta__glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background:
    radial-gradient(
      ellipse 50% 50% at 50% 30%,
      rgba(0, 167, 111, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 40% at 20% 80%,
      rgba(0, 167, 111, 0.06) 0%,
      transparent 70%
    );
  pointer-events: none;
}
.final-cta__title {
  position: relative;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.final-cta__sub {
  position: relative;
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn {
  position: relative;
}
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--gray-200);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.footer__brand img {
  height: 26px;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.footer__cols {
  display: flex;
  gap: 64px;
}
.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__col a:hover {
  color: var(--gray-900);
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--gray-400);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@media (max-width: 1024px) {
  .familiar__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .compare__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .calc__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calc__left .h2 {
    text-align: center;
    margin: 0 auto;
  }
  .calc__left {
    text-align: center;
  }
  .footer__cols {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .nav__center {
    display: none;
  }
  .nav__right {
    display: none;
  }
  .nav__burger {
    display: block;
  }
  .hero {
    padding-top: 48px;
  }
  .hero__title {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero__float {
    display: none;
  }
  .hero__orb--3 {
    display: none;
  }
  .how__pill {
    display: none;
  }
  .hero__orb--1 {
    width: 250px;
    height: 250px;
  }
  .hero__orb--2 {
    width: 180px;
    height: 180px;
  }
  .proof__inner {
    flex-direction: column;
    gap: 24px;
  }
  .proof__divider {
    width: 48px;
    height: 1px;
  }
  .how__grid {
    max-width: 100%;
  }
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .footer__cols {
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__img-wrap {
    border-radius: var(--radius-lg);
  }
  .calc__card {
    padding: 24px;
  }
  .tcard {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
