*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fafaf8;
  --bg-alt: #f1f0ec;
  --bg-card: #ffffff;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #a0a0a0;
  --text-on-dark: #f5f5f3;
  --accent: #1d4ed8;
  --accent-light: #eff6ff;
  --accent-hover: #1e40af;
  --indigo: #4338ca;
  --indigo-light: #eef2ff;
  --border: #e5e4e0;
  --border-dark: #d4d3cf;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 28px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.pill:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.btn-fill {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-fill:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #1d4ed840;
}
.btn-fill svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.btn-fill:hover svg {
  transform: translate(3px);
}
.btn-outline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: #fafaf8cc;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav__logo span:first-child {
  color: var(--accent);
}
.nav__logo span:last-child {
  color: var(--text);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.nav__link:hover {
  color: var(--text);
  background: var(--bg-alt);
}
.nav__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: var(--text);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.nav__cta:hover {
  background: #333;
  transform: scale(1.02);
}
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
  padding: 0;
}
.nav__hamburger:hover {
  background: var(--bg-alt);
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  flex-shrink: 0;
}
/* hamburger stays static 3-bar – no active transforms */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fafaf8;
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 2.5rem;
  gap: 0;
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #4338ca 60%, transparent 100%);
}
.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  animation: menuSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes menuSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.mobile-menu__close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.mobile-menu__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  animation: itemFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mobile-menu__item:first-child { animation-delay: 0.05s; }
.mobile-menu__item:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu__item:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu__item:nth-child(4) { animation-delay: 0.2s; }
@keyframes itemFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu__item a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s, letter-spacing 0.2s;
  flex: 1;
}
.mobile-menu__item:hover a {
  color: var(--accent);
  letter-spacing: 0.01em;
}
.mobile-menu__item .item-arrow {
  font-size: 1rem;
  color: var(--border-dark);
  transition: transform 0.2s, color 0.2s;
}
.mobile-menu__item:hover .item-arrow {
  transform: translateX(4px);
  color: var(--accent);
}
.mobile-menu__cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  animation: itemFadeUp 0.4s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.mobile-menu__cta:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero__mesh {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(232, 85, 61, 0.12) 0%,
    rgba(67, 56, 202, 0.08) 40%,
    rgba(232, 85, 61, 0.04) 70%,
    transparent 100%
  );
  filter: blur(60px);
  pointer-events: none;
  animation: meshFloat 20s ease-in-out infinite;
}
.hero__mesh-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(67, 56, 202, 0.06) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
@keyframes meshFloat {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  33% {
    transform: translate(-30px, 20px) scale(1.05);
  }
  66% {
    transform: translate(20px, -15px) scale(0.97);
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__pill {
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero__title .highlight {
  position: relative;
  display: inline-block;
}
.hero__title .highlight:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -2%;
  right: -2%;
  height: 30%;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 4px;
  z-index: -1;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero__trust {
  margin-top: 5rem;
}
.hero__trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.hero__trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.hero__trust-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.4;
}
.services {
  padding: 7rem 0;
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.services__subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}
.bento__card--wide {
  grid-column: span 2;
}
.bento__card--static {
  cursor: default;
}
.bento__card--static:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border) !important;
}
.bento__card--ingestion-minimal {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.bento__card--ingestion-minimal .bento__card-content {
  display: flex;
  flex-direction: column;
}
.ingestion-steps {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
  gap: 0.75rem;
}
.ingestion-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.ingestion-step__num {
  font-family: ui-monospace, SFMono-Regular, SF Pro Text, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.ingestion-step__label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .bento__card--ingestion-minimal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ingestion-steps {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.25rem;
  }
}
.bento__card--tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.bento__card--tall .bento__desc {
  flex: 1;
}
.bento__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.bento__icon--coral {
  background: var(--accent-light);
  color: var(--accent);
}
.bento__icon--indigo {
  background: var(--indigo-light);
  color: var(--indigo);
}
.bento__icon--dark {
  background: #f0f0ee;
  color: var(--text);
}
.bento__icon svg {
  width: 24px;
  height: 24px;
}
.bento__label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.bento__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}
.bento__visual {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.bento__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.bento__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.bento__stat {
  text-align: center;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}
.bento__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.bento__stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.process {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.process__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-dark);
  margin-top: 2rem;
}
.process__col {
  padding: 2.5rem 2rem 2.5rem 0;
  display: flex;
  flex-direction: column;
}
.process__col:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 2rem;
}
.process__col:not(:first-child) {
  padding-left: 2rem;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.process__step-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .process__flow {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .process__col {
    padding: 2rem 0;
    border-top: 1px solid var(--border-dark);
  }
  .process__col:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .process__col:not(:first-child) {
    padding-left: 0;
  }
}
.work {
  padding: 7rem 0;
}
.work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.work__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.work-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.work-card__img svg {
  width: 100%;
  height: 100%;
}
.work-card__body {
  padding: 1.5rem;
}
.work-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.work-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.work-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  line-height: 1.5;
}
.cta {
  padding: 7rem 0;
}
.cta__box {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 85, 61, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 56, 202, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.cta__content {
  position: relative;
  z-index: 2;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta__subtitle {
  font-size: 1.1rem;
  color: #ffffff80;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta .btn-fill {
  background: #fff;
  color: var(--text);
}
.cta .btn-fill:hover {
  background: #f0f0ee;
  box-shadow: 0 8px 24px #ffffff26;
}
.contact {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.contact__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact__info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  transition: box-shadow 0.3s ease;
}
.contact__info-card:hover {
  box-shadow: var(--shadow-md);
}
.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg {
  width: 20px;
  height: 20px;
}
.contact__info-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.contact__info-value {
  font-weight: 600;
  font-size: 0.95rem;
}
.contact__form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #1d4ed81a;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: none;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit .btn-fill {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.95rem;
}
.form-success {
  display: none;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #16a34a;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}
.form-success.show {
  display: block;
}
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer__brand span:first-child {
  color: var(--accent);
}
.footer__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.footer__link:hover {
  color: #fff;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff0f;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s;
}
.footer__social:hover {
  background: #ffffff1f;
  color: #fff;
}
.footer__social svg {
  width: 16px;
  height: 16px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.blog-hero {
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.blog-hero__mesh {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(232, 85, 61, 0.08) 0%,
    rgba(67, 56, 202, 0.05) 40%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
}
.blog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
.blog-hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}
.blog-grid {
  padding: 0 0 7rem;
}
.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}
.blog-card__img {
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.blog-card__img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__img-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.blog-card__category-float {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--text);
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title {
  color: var(--accent);
}
.blog-card__excerpt {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.blog-card:hover .blog-card__read {
  gap: 0.7rem;
}
.blog-card__read svg {
  width: 14px;
  height: 14px;
}
.blog-grid__list .blog-card:first-child {
  grid-column: span 2;
}
.blog-grid__list .blog-card:first-child .blog-card__img {
  aspect-ratio: 2/1;
}
.blog-grid__list .blog-card:first-child .blog-card__title {
  font-size: 1.5rem;
}
.blog-post {
  padding: 10rem 0 5rem;
}
.blog-post__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.blog-post__category {
  margin-bottom: 1.25rem;
}
.blog-post__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.blog-post__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}
.blog-post__divider {
  max-width: 720px;
  margin: 0 auto 3rem;
  border: none;
  border-top: 1px solid var(--border);
}
.blog-post__content {
  max-width: 720px;
  margin: 0 auto;
}
.blog-post__content h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.blog-post__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.blog-post__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.blog-post__content strong {
  color: var(--text);
  font-weight: 600;
}
.blog-post__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #1d4ed84d;
  transition: text-decoration-color 0.2s;
}
.blog-post__content a:hover {
  text-decoration-color: var(--accent);
}
.blog-post__content ul,
.blog-post__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.blog-post__content ul {
  list-style: disc;
}
.blog-post__content ol {
  list-style: decimal;
}
.blog-post__content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.blog-post__content li strong {
  color: var(--text);
}
.blog-post__content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}
.blog-post__content blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}
.blog-post__content code {
  font-size: 0.9em;
  background: var(--bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--accent);
}
.blog-post__content pre {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.blog-post__content pre code {
  background: none;
  padding: 0;
  color: inherit;
  border-radius: 0;
}
.blog-post__content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.blog-post__footer {
  max-width: 720px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.blog-post__cta-box {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-post__cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 85, 61, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 56, 202, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.blog-post__cta-content {
  position: relative;
  z-index: 2;
}
.blog-post__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.blog-post__cta-sub {
  font-size: 0.95rem;
  color: #ffffff80;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.blog-post__cta-box .btn-fill {
  background: #fff;
  color: var(--text);
}
.blog-post__cta-box .btn-fill:hover {
  background: #f0f0ee;
  box-shadow: 0 8px 24px #ffffff26;
}
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  transition:
    color 0.2s,
    gap 0.3s var(--ease);
}
.blog-post__back:hover {
  color: var(--text);
  gap: 0.6rem;
}
.blog-post__back svg {
  width: 16px;
  height: 16px;
}
.lead-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
.lead-topbar.scrolled {
  background: #fafaf8d9;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.lead-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.lead-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.lead-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.lead-hero__pill {
  margin-bottom: 2rem;
}
.lead-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.lead-hero__title .highlight {
  position: relative;
  display: inline-block;
}
.lead-hero__title .highlight:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -2%;
  right: -2%;
  height: 30%;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 4px;
  z-index: -1;
}
.lead-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.lead-hero__micro {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.lead-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}
.lead-hero__stat {
  text-align: center;
}
.lead-hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.lead-hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.lead-problem {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.lead-problem__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lead-problem__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.lead-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lead-problem__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease);
}
.lead-problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lead-problem__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.lead-problem__card-icon svg {
  width: 24px;
  height: 24px;
}
.lead-problem__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lead-problem__card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}
.lead-steps {
  padding: 6rem 0;
}
.lead-steps__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lead-steps__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.lead-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.lead-step {
  text-align: center;
}
.lead-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.lead-step__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lead-step__desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}
.lead-steps__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
}
.lead-proof {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.lead-proof__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.lead-proof__stat {
  text-align: center;
}
.lead-proof__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.lead-proof__stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  font-weight: 500;
}
.lead-proof__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.lead-proof__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.lead-proof__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.lead-proof__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.lead-proof__author {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}
.lead-proof__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.lead-proof__cta {
  text-align: center;
}
.lead-value {
  padding: 6rem 0;
}
.lead-value__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lead-value__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.lead-value__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.lead-value__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lead-value__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.lead-value__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lead-value__check svg {
  width: 14px;
  height: 14px;
}
.lead-value__card {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lead-value__card-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 85, 61, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 56, 202, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.lead-value__card-content {
  position: relative;
  z-index: 2;
}
.lead-value__card-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff80;
  margin-bottom: 1rem;
}
.lead-value__card-old {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff59;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.lead-value__card-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.lead-value__card .btn-fill {
  background: #fff;
  color: var(--text);
  width: 100%;
  justify-content: center;
}
.lead-value__card .btn-fill:hover {
  background: #f0f0ee;
  box-shadow: 0 8px 24px #ffffff26;
}
.lead-faq {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.lead-faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.lead-faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.lead-faq__list {
  max-width: 700px;
  margin: 0 auto;
}
.lead-faq__item {
  border-bottom: 1px solid var(--border);
}
.lead-faq__item:first-child {
  border-top: 1px solid var(--border);
}
.lead-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.lead-faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}
.lead-faq__item.open .lead-faq__chevron {
  transform: rotate(180deg);
}
.lead-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s var(--ease),
    padding 0.35s var(--ease);
  padding: 0;
}
.lead-faq__item.open .lead-faq__a {
  max-height: 300px;
  padding: 0 0 1.25rem;
}
.lead-faq__a p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.lead-form-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.lead-form-section__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 85, 61, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(67, 56, 202, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.lead-form-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.lead-form-section__text {
  color: var(--text-on-dark);
}
.lead-form-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.lead-form-section__sub {
  font-size: 1.05rem;
  color: #ffffff80;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.lead-form-section__reassurance {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lead-form-section__reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #fff9;
}
.lead-form-section__reassurance-icon {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}
.lead-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.lead-form__progress {
  margin-bottom: 2rem;
}
.lead-form__step-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.lead-form__bar {
  width: 100%;
  height: 4px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}
.lead-form__bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  width: 33.33%;
  transition: width 0.4s var(--ease);
}
.lead-form__step {
  display: none;
}
.lead-form__step.active {
  display: block;
}
.lead-form__step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.lead-form__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.lead-form__option {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.lead-form__option:hover {
  border-color: var(--border-dark);
  color: var(--text);
}
.lead-form__option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}
.lead-form__options--budget {
  grid-template-columns: repeat(3, 1fr);
}
.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lead-form__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  gap: 1rem;
}
.lead-form__back {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  transition: color 0.2s;
}
.lead-form__back:hover {
  color: var(--text);
}
.lead-form__next {
  margin-left: auto;
}
.lead-form__next.btn-fill:disabled,
.lead-form__submit.btn-fill:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.lead-form__success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.lead-form__success.show {
  display: block;
}
.lead-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.lead-form__success-icon svg {
  width: 32px;
  height: 32px;
}
.lead-form__success-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lead-form__success-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.lead-footer {
  padding: 2.5rem 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.lead-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lead-footer__copy {
  font-size: 0.78rem;
  color: #ffffff4d;
}
.lead-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: #fafaf8f2;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px #00000014;
  transition: transform 0.35s var(--ease);
}
.lead-sticky.hidden {
  transform: translateY(100%);
}
.lead-sticky .btn-fill {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
}
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento__card--wide {
    grid-column: span 2;
  }
  .bento__card--tall {
    grid-row: span 1;
  }
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid__list .blog-card:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__inner {
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  }
  .hero {
    min-height: 90vh;
    padding: 7rem 0 4rem;
  }
  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero__actions .btn-fill,
  .hero__actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero__trust-logos {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__card--wide {
    grid-column: span 1;
  }
  .work__grid {
    grid-template-columns: 1fr;
  }
  .work__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .blog-hero {
    padding: 8rem 0 3rem;
  }
  .blog-grid__list {
    grid-template-columns: 1fr;
  }
  .blog-grid__list .blog-card:first-child {
    grid-column: span 1;
  }
  .blog-grid__list .blog-card:first-child .blog-card__img {
    aspect-ratio: 16/10;
  }
  .blog-grid__list .blog-card:first-child .blog-card__title {
    font-size: 1.2rem;
  }
  .blog-post {
    padding: 8rem 0 4rem;
  }
  .blog-post__header {
    text-align: left;
  }
  .blog-post__meta {
    justify-content: flex-start;
  }
  .lead-sticky {
    display: block;
  }
  body.has-lead-sticky {
    padding-bottom: 72px;
  }
  .lead-hero {
    min-height: 90vh;
    padding: 7rem 0 4rem;
  }
  .lead-hero__trust {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .lead-problem__grid {
    grid-template-columns: 1fr;
  }
  .lead-steps__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lead-proof__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .lead-proof__cards {
    grid-template-columns: 1fr;
  }
  .lead-value__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lead-form-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lead-form__options--budget {
    grid-template-columns: repeat(2, 1fr);
  }
  .lead-topbar__inner .nav__cta {
    font-size: 0.78rem;
    padding: 0.5rem 1.1rem;
  }
  .lead-footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
