:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --panel: #ffffff;
  --text: #12172a;
  --muted: #5e697d;
  --blue: #2a57ff;
  --blue-600: #2247f0;
  --orange: #ff7a1a;
  --success: #19c37d;
  --spinner-radius: 20px;
  --spinner-dot-size: 8px
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: radial-gradient(1000px 300px at 20% -20%, rgba(42, 87, 255, .06), transparent 60%), radial-gradient(800px 260px at 90% -30%, rgba(255, 122, 26, .08), transparent 60%), var(--bg);
  color: var(--text)
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px
}

.subs-container {
  margin-top: 24px
}

.subs-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(closest-side, rgba(255, 122, 26, .20), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 60%, rgba(255, 255, 255, 1) 100%)
}

.subs-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(255, 122, 26, .28), transparent 70%);
  filter: blur(18px);
  border-radius: 50%;
  animation: blob1 16s ease-in-out infinite;
  will-change: transform;
  pointer-events: none
}

.subs-hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(255, 122, 26, .16), transparent 70%);
  filter: blur(24px);
  border-radius: 50%;
  animation: blob2 18s ease-in-out infinite;
  will-change: transform;
  pointer-events: none
}

.dark .subs-hero {
  background:
    radial-gradient(closest-side, rgba(255, 122, 26, .26), transparent 70%),
    linear-gradient(140deg, #0b1020 0%, #12193a 100%)
}

.dark .subs-hero::before,
.dark .subs-hero::after {
  background: radial-gradient(closest-side, rgba(255, 122, 26, .30), transparent 70%)
}

@media (max-width:580px) {

  .subs-hero::before,
  .subs-hero::after {
    display: none
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 80;
  background: transparent;
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease
}

.nav.scrolled {
  backdrop-filter: saturate(1.05) blur(10px);
  -webkit-backdrop-filter: saturate(1.05) blur(10px);
  background: rgba(235, 238, 244, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10)
}

.nav.menu-open {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08)
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand {
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 28px;
  background: linear-gradient(90deg, #2a57ff, #6fa0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.brand-link {
  text-decoration: none
}

.menu a {
  color: #2d3850;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600
}

.menu a:hover {
  color: #1e2640
}

.menu {
  will-change: opacity, transform
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero {
  padding: 96px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 60%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100vh;
  display: flex;
  align-items: center
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(255, 122, 26, .28), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  animation: blob1 16s ease-in-out infinite;
  will-change: transform;
  z-index: 0;
  pointer-events: none
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(42, 87, 255, .20), transparent 70%);
  filter: blur(26px);
  border-radius: 50%;
  animation: blob2 18s ease-in-out infinite;
  will-change: transform;
  z-index: 0;
  pointer-events: none
}

.hero-grid {
  position: relative;
  z-index: 1
}

@keyframes blob1 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  25% {
    transform: translate(80px, 40px) scale(1.05)
  }

  50% {
    transform: translate(140px, -10px) scale(0.98)
  }

  75% {
    transform: translate(40px, -60px) scale(1.08)
  }

  100% {
    transform: translate(0, 0) scale(1)
  }
}

@keyframes blob2 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  25% {
    transform: translate(-60px, -40px) scale(1.06)
  }

  50% {
    transform: translate(-120px, 20px) scale(0.97)
  }

  75% {
    transform: translate(-40px, 80px) scale(1.04)
  }

  100% {
    transform: translate(0, 0) scale(1)
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 32px
}

.hero-copy {
  margin-top: 0
}

.hero-copy h1 {
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 16px
}

.hero-copy h1 .accent {
  background: linear-gradient(90deg, var(--orange), #ffb34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px
}

.store-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px
}

.urgency-cta {
  margin-top: 10px;
  margin-bottom: 24px
}

.btn-urgency {
  background: linear-gradient(90deg, #ff3b30, #ff6b5e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 59, 48, .25);
  font-weight: 800
}

.btn-urgency:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(255, 59, 48, .35)
}

.form-card .btn-urgency {
  width: 100%
}

.urgency-below-form {
  display: block;
  margin-top: 14px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .24)
}

.btn-store {
  border-radius: 12px;
  width: 100%
}

.btn-store .logo {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle
}

.btn-store .logo.gplay {
  background: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/googleplay.svg') no-repeat center/contain;
  filter: invert(1)
}

.btn-store .logo.appstore {
  background: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/appstore.svg') no-repeat center/contain;
  filter: invert(1)
}

.btn-store.blue {
  background: #2a57ff;
  color: #fff
}

.btn-store.orange {
  background: var(--orange);
  color: #fff
}

.btn-primary {
  background: var(--blue);
  color: #fff
}

.btn-primary:hover {
  background: var(--blue-600)
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text)
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .3)
}

.stats {
  display: flex;
  gap: 16px
}

.stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
  flex: 1
}

.stat-n {
  font-weight: 800
}

.stat-l {
  color: var(--muted);
  font-size: 13px
}

.form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .10)
}

.form-card {
  position: relative;
  overflow: hidden
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px
}

.icon-lg {
  width: 28px;
  height: 28px;
  color: #2a57ff
}

.tag {
  margin-left: auto;
  background: linear-gradient(90deg, #2a57ff, #6fa0ff);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700
}

.btn-xl {
  padding: 14px 18px;
  font-size: 16px
}

.btn-primary {
  background: linear-gradient(90deg, #2a57ff, #6fa0ff);
  box-shadow: 0 12px 24px rgba(42, 87, 255, .25)
}

.btn-primary:hover {
  background: linear-gradient(90deg, #2247f0, #5b8fff)
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.pill {
  position: relative;
  display: inline-flex
}

.pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #f9fbff;
  color: #2d3850;
  font-weight: 600
}

.pill input:checked+.pill-label {
  background: linear-gradient(90deg, #2a57ff, #6fa0ff);
  color: #fff;
  border-color: rgba(42, 87, 255, .4);
  box-shadow: 0 8px 18px rgba(42, 87, 255, .25)
}

.pill input:focus-visible+.pill-label {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 87, 255, .25)
}

.form-card h3 {
  margin: 0 0 6px
}

.form-card p {
  margin: 0 0 14px;
  color: var(--muted)
}

.form {
  display: grid;
  gap: 14px
}

.field {
  display: grid;
  gap: 8px
}

.field label {
  font-size: 14px;
  color: var(--muted)
}

.field input,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #ffffff;
  color: #1e2640;
  transition: border-color .18s ease, box-shadow .18s ease
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 87, 255, .25)
}

.field.checkbox {
  display: flex;
  align-items: center;
  gap: 10px
}

.field.checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  border-radius: 4px
}

.field.checkbox input[type=checkbox]:focus-visible {
  outline: 3px solid rgba(42, 87, 255, .25);
  outline-offset: 2px
}

.field.checkbox label {
  color: #4b566b;
  cursor: pointer
}

.form-status {
  margin-top: 8px;
  font-size: 14px
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none
}

.modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: opacity .2s ease
}

.modal.open .modal-backdrop {
  opacity: 1
}

.modal-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  width: calc(100% - 32px);
  max-width: 420px;
  display: grid;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition: opacity .24s cubic-bezier(.22, .61, .36, 1), transform .24s cubic-bezier(.22, .61, .36, 1)
}

.modal.open .modal-card {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.modal.open.closing .modal-backdrop {
  opacity: 0
}

.modal.open.closing .modal-card {
  opacity: 0;
  transform: translateY(12px) scale(.98)
}

.modal-card h4 {
  margin: 0
}

.modal-card p {
  margin: 0 0 8px;
  color: #4b566b
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.section {
  padding: 72px 0;
  background: transparent;
  scroll-margin-top: 88px
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 20px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06)
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, .16);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .10)
}

.card .icon {
  width: 28px;
  height: 28px;
  color: #2a57ff;
  margin-bottom: 10px
}

.card h4 {
  margin: 0 0 8px
}

.card p {
  margin: 0;
  color: var(--muted)
}

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

.step {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06)
}

.step-n {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #111;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 8px
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.plan {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 20px;
  transition: transform .18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column
}

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

.plan ul {
  margin: 10px 0 16px;
  padding-left: 18px;
  color: #4b566b;
  flex: 1
}

.plan h4 {
  margin: 0 0 8px
}

.plan p {
  margin: 0 0 10px
}

.plan .btn {
  margin-top: auto;
  width: 100%
}

.plan-highlight {
  border: 1px solid var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 122, 26, .10)
}



.cta {
  padding: 60px 0;
  background: transparent
}

.cta-inner {
  display: grid;
  gap: 12px;
  justify-items: center
}

.cta-form {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 680px
}

.cta-form input,
.cta-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #ffffff;
  color: #1e2640
}

.contact-card {
  width: 100%;
  max-width: 720px
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 28px 0;
  background: #0b1020;
  scroll-margin-top: 88px
}

.footer-inner {
  display: grid;
  gap: 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.footer-brand p {
  margin: 10px 0 14px;
  color: #e9edf7
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 999px;
  color: #1e2640;
  background: #fff;
  text-decoration: none
}

.footer-social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.footer-social svg {
  width: 18px;
  height: 18px
}

.footer-col h5 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #ffffff
}

.footer-col a {
  display: block;
  color: #cdd3e0;
  text-decoration: none;
  margin: 7px 0
}

.footer-col a:hover {
  color: #ffffff
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 16px
}

.footer-extra {
  color: #cdd3e0
}

.footer-bottom .links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.footer-bottom .links a {
  color: #cdd3e0;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0
}

.footer-bottom .links a:hover {
  color: #ffffff;
  text-decoration: underline
}

#nprogress .bar {
  display: none
}

#nprogress .peg {
  display: none
}

#nprogress .spinner-icon {
  display: none
}

.splash {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: grid;
  place-items: center;
  z-index: 1000
}

.splash-inner {
  display: grid;
  gap: 16px;
  justify-items: center
}

.splash-brand {
  font-weight: 900;
  font-size: 42px;
  letter-spacing: .6px;
  color: #2a57ff
}

.splash-spinner {
  position: relative;
  width: calc(var(--spinner-radius)*2 + var(--spinner-dot-size));
  height: calc(var(--spinner-radius)*2 + var(--spinner-dot-size));
  animation: spin 1.2s linear infinite
}

.splash-spinner span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--spinner-dot-size);
  height: var(--spinner-dot-size);
  border-radius: 50%;
  background: #2a57ff;
  transform-origin: 0 0;
  animation: pulse 1.2s ease-in-out infinite
}

.splash-spinner span:nth-child(1) {
  transform: rotate(0deg) translate(var(--spinner-radius)) rotate(-0deg)
}

.splash-spinner span:nth-child(2) {
  transform: rotate(45deg) translate(var(--spinner-radius)) rotate(-45deg)
}

.splash-spinner span:nth-child(3) {
  transform: rotate(90deg) translate(var(--spinner-radius)) rotate(-90deg)
}

.splash-spinner span:nth-child(4) {
  transform: rotate(135deg) translate(var(--spinner-radius)) rotate(-135deg)
}

.splash-spinner span:nth-child(5) {
  transform: rotate(180deg) translate(var(--spinner-radius)) rotate(-180deg)
}

.splash-spinner span:nth-child(6) {
  transform: rotate(225deg) translate(var(--spinner-radius)) rotate(-225deg)
}

.splash-spinner span:nth-child(7) {
  transform: rotate(270deg) translate(var(--spinner-radius)) rotate(-270deg)
}

.splash-spinner span:nth-child(8) {
  transform: rotate(315deg) translate(var(--spinner-radius)) rotate(-315deg)
}

.splash-spinner span:nth-child(1) {
  animation-delay: 0s
}

.splash-spinner span:nth-child(2) {
  animation-delay: .1s
}

.splash-spinner span:nth-child(3) {
  animation-delay: .2s
}

.splash-spinner span:nth-child(4) {
  animation-delay: .3s
}

.splash-spinner span:nth-child(5) {
  animation-delay: .4s
}

.splash-spinner span:nth-child(6) {
  animation-delay: .5s
}

.splash-spinner span:nth-child(7) {
  animation-delay: .6s
}

.splash-spinner span:nth-child(8) {
  animation-delay: .7s
}

.splash-spinner span:nth-child(odd) {
  background: #2a57ff
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1) translate(0)
  }

  50% {
    transform: scale(1.4) translate(0)
  }
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease
}

@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    margin-top: 8px
  }

  .cards {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .plans {
    grid-template-columns: 1fr
  }

  .cta-form {
    flex-direction: column
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 72px);
    padding: 120px 0 56px
  }
}

@media (max-width:980px) {
  .theme-toggle {
    width: 36px;
    height: 36px
  }
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: .2px;
  color: #1e2640;
  text-align: center
}

.services .section-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .1px
}

.services-lead {
  text-align: center;
  margin: 14px 0 22px;
  display: grid;
  gap: 8px;
  justify-items: center
}

.services-lead .lead-kicker {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 18px;
  text-transform: none
}

.services-lead .lead-headline {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--blue)
}

.services-lead .lead-sub {
  color: #4b566b;
  font-size: 13px;
  margin-top: 8px;
  background: #eef2fa;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 8px 12px;
  display: inline-block;
  text-align: left
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  color: #1e2640;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: inherit
}

.menu-toggle svg {
  width: 24px;
  height: 24px
}

.menu a:focus-visible {
  outline: 3px solid rgba(42, 87, 255, .35);
  outline-offset: 2px;
  border-radius: 8px
}

.btn:focus-visible {
  outline: 3px solid rgba(42, 87, 255, .35);
  outline-offset: 2px
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px
}

@media (max-width:980px) {
  .menu-toggle {
    display: inline-flex
  }

  .menu {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: none;
    flex-direction: column;
    padding: 14px
  }

  .menu.open {
    display: flex;
    animation: menuIn .2s ease-out both
  }

  .menu a {
    margin: 8px 0
  }

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

@media (max-width:580px) {
  :root {
    --spinner-radius: 22px;
    --spinner-dot-size: 10px
  }

  body {
    background: var(--bg)
  }

  body.dark {
    background:
      radial-gradient(2200px 900px at 0% -40%, rgba(255, 122, 26, .26), transparent 74%),
      radial-gradient(2000px 860px at 100% -30%, rgba(55, 93, 251, .24), transparent 78%),
      radial-gradient(2600px 1200px at 50% 140%, rgba(255, 122, 26, .08), transparent 80%),
      linear-gradient(180deg, rgba(255, 122, 26, .06) 0%, rgba(255, 122, 26, .02) 60%, rgba(255, 122, 26, 0) 100%),
      #0b1020
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 12px;
    text-align: center
  }

  .hero-copy h1,
  .hero-copy p {
    grid-column: 1 / -1
  }

  .store-cta {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    grid-row: span 2;
    gap: 10px;
    margin-bottom: 0;
    justify-items: stretch
  }

  .urgency-cta {
    grid-column: 1 / -1;
    margin-top: 10px;
    margin-bottom: 16px
  }

  .btn-urgency {
    width: 100%
  }

  .btn-store {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 12px;
    width: 100%
  }

  .btn-store .logo {
    width: 12px;
    height: 12px;
    margin-right: 6px
  }

  .cards {
    grid-template-columns: 1fr
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .btn {
    min-height: 44px
  }

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

  .container {
    padding: 0 18px
  }

  .brand {
    font-size: 22px
  }

  .section-title {
    font-size: 24px
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.1
  }

  .hero-copy p {
    font-size: 16px
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    grid-column: 1 / -1;
    justify-items: stretch;
    margin-top: 12px
  }

  .stat {
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .05)
  }

  .stat-n {
    font-size: 15px
  }

  .stat-l {
    font-size: 12px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start
  }

  .hero-grid {
    gap: 20px
  }

  .hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 60%, rgba(255, 255, 255, 1) 100%)
  }

  .hero::before,
  .hero::after {
    display: none
  }

  .hero {
    overflow: visible;
    isolation: auto
  }

  .dark .hero {
    background: radial-gradient(1200px 400px at 0% 0%, rgba(255, 122, 26, .20), transparent 60%), radial-gradient(900px 360px at 100% 10%, rgba(55, 93, 251, .25), transparent 60%)
  }

  .dark .cta {
    background: transparent
  }

  .dark .hero::before,
  .dark .hero::after {
    display: none
  }

  .hero {
    padding: 96px 0 48px
  }

  .section {
    padding: 48px 0
  }

  .section-title {
    font-size: 22px
  }

  .cards {
    gap: 12px
  }

  .card {
    padding: 14px;
    border-radius: 12px
  }

  .card .icon {
    width: 22px;
    height: 22px;
    margin-bottom: 6px
  }

  .card h4 {
    font-size: 16px
  }

  .card p {
    font-size: 13px
  }

  .steps {
    gap: 12px
  }

  .step {
    padding: 14px;
    border-radius: 12px
  }

  .step-n {
    width: 24px;
    height: 24px;
    margin-bottom: 6px
  }

  .plans {
    gap: 12px
  }

  .plan {
    padding: 16px;
    border-radius: 12px
  }

  .plan ul {
    padding-left: 16px;
    font-size: 13px
  }

  .plan .btn {
    width: 100%
  }

  .cta {
    padding: 48px 0
  }

  .contact-card {
    max-width: 100%
  }

  .cta-form .btn {
    width: 100%
  }
}

@media (max-width:360px) {
  .hero-copy h1 {
    font-size: 30px
  }

  .btn {
    padding: 12px 14px
  }

  .btn-store .logo {
    width: 12px;
    height: 12px;
    margin-right: 6px
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .splash-spinner {
    animation: spin 1.6s linear infinite !important
  }

  .spinner {
    animation: spin 1.2s linear infinite !important
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop {
    transition: opacity .24s ease !important
  }

  .modal-card {
    transition: opacity .26s cubic-bezier(.22, .61, .36, 1), transform .26s cubic-bezier(.22, .61, .36, 1) !important
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: opacity .8s ease-out, transform .8s ease-out !important;
  }
}

@media (min-width:1400px) {
  .container {
    max-width: 1320px
  }

  .hero-copy h1 {
    font-size: 72px
  }

  .hero-copy p {
    font-size: 20px
  }
}

.dark {
  --bg: #0b1020;
  --card: #10162a;
  --panel: #161c31;
  --text: #f2f5fb;
  --muted: #cfd7ea
}

body.dark {
  background: linear-gradient(140deg, #0b1020 0%, #12193a 100%)
}

.dark .hero {
  background: radial-gradient(1200px 400px at 0% 0%, rgba(255, 122, 26, .20), transparent 60%), radial-gradient(900px 360px at 100% 10%, rgba(55, 93, 251, .25), transparent 60%)
}

.dark .hero-copy p {
  color: #ffffff
}

.dark .card,
.dark .step,
.dark .plan,
.dark .stat {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none
}

.dark .card p,
.dark .step p,
.dark .plan p {
  color: var(--muted)
}

.dark .form-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
}

.dark .modal-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
}

.dark .modal-card p {
  color: var(--muted)
}

.dark .field input,
.dark .field select {
  background: #0f1427;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14)
}

.dark .field input::placeholder {
  color: #ffffff;
  opacity: .85
}

.dark .cta-form input,
.dark .cta-form textarea {
  background: #0f1427;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14)
}

.dark .cta-form input::placeholder,
.dark .cta-form textarea::placeholder {
  color: #ffffff;
  opacity: .85
}

.dark .cta-form input:focus,
.dark .cta-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 87, 255, .25)
}

.dark .cta {
  background: var(--bg)
}

.dark .footer {
  background: var(--panel);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.dark .footer-brand p,
.dark .footer-extra,
.dark .copy {
  color: var(--muted)
}

.dark .footer-col h5 {
  color: var(--text)
}

.dark .footer-col a {
  color: var(--muted)
}

.dark .footer-col a:hover {
  color: #ffffff
}

.dark .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.dark .footer-social a {
  background: #10162a;
  border-color: rgba(255, 255, 255, .18);
  color: #e9edf7
}

.dark .nav.scrolled {
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.dark .section {
  background: var(--bg)
}

.dark p {
  color: var(--muted)
}

.dark .section-title {
  color: var(--text)
}

.dark .card h4,
.dark .step h4,
.dark .plan h4,
.dark .stat-n {
  color: var(--text)
}

.dark .card p,
.dark .step p,
.dark .plan p,
.dark .plan ul,
.dark .stat-l {
  color: var(--muted)
}

.dark .btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, .24)
}

.dark .menu a {
  color: #ffffff
}

.dark .menu a:hover {
  opacity: .9
}

.dark .menu {
  background: transparent;
  border-bottom: none
}

.dark .menu.open {
  background: var(--panel);
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.dark .menu-toggle {
  background: transparent;
  border: none;
  color: #ffffff
}

.dark .nav.menu-open {
  background: var(--panel);
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.dark .section-title {
  color: var(--text)
}

.dark .form-card h3 {
  color: var(--text)
}

.dark .form-card p {
  color: var(--muted)
}

.dark .field label {
  color: var(--muted)
}

.theme-toggle {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  color: #1e2640;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  margin-left: 12px
}

@media (max-width:980px) {
  .theme-toggle {
    display: inline-flex
  }
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  color: #1e2640;
  border-radius: 999px;
  padding: 0;
  font-weight: 700
}

.theme-toggle svg {
  width: 20px;
  height: 20px
}

.dark .theme-toggle {
  background: #10162a;
  color: #e9edf7;
  border-color: rgba(255, 255, 255, .18)
}

.btn-store .logo {
  height: 28px;
  width: auto;
  display: inline-block
}

/* Inline loader for form submission */
.form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  color: #4b566b;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(42, 87, 255, 0.25);
  border-top-color: #2a57ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.subs-page {
  position: relative;
  background: transparent
}

.dark .subs-page {
  background: transparent
}

.subs-page::before,
.subs-page::after {
  display: none
}

.dark .splash {
  background: linear-gradient(140deg, #0b1020 0%, #12193a 100%)
}

.dark .splash-spinner span {
  background: #e9edf7
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.header-cta .btn {
  display: flex;
  align-items: center;
  gap: 8px
}

.btn .icon {
  width: 18px;
  height: 18px
}

.btn-whatsapp {
  background: linear-gradient(90deg, #25D366, #18b355);
  color: #fff
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35)
}

.btn-call {
  background: #121826;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .14)
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
}

.plumber-hero {
  text-align: center;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  margin: 0;
  background: #fff
}

.plumber-hero {
  position: relative
}

.plumber-hero #hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.plumber-hero #hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, .08) 1.2px, transparent 2px);
  background-size: 22px 22px;
  opacity: .88
}

.plumber-hero .decor-icon {
  position: absolute;
  width: 220px;
  height: 220px;
  color: #2a57ff;
  opacity: .22
}

.plumber-hero .decor-icon svg {
  width: 100%;
  height: 100%
}

.plumber-hero .decor-right {
  right: -40px;
  top: -40px
}

.plumber-hero .decor-left {
  left: -40px;
  top: -40px
}

@media (max-width:580px) {
  .plumber-hero .decor-icon {
    display: none
  }
}

.plumber-hero .container {
  display: grid;
  gap: 16px;
  justify-items: center;
  position: relative;
  z-index: 1
}

.plumber-hero::before {
  content: "";
  position: absolute;
  left: 4%;
  bottom: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(closest-side, rgba(99, 164, 255, .16), rgba(42, 87, 255, .10) 55%, transparent 72%);
  filter: blur(22px);
  border-radius: 50%
}

.plumber-hero::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(99, 164, 255, .14), rgba(42, 87, 255, .08) 55%, transparent 72%);
  filter: blur(24px);
  border-radius: 50%
}

.plumber-hero h1 {
  font-size: 64px;
  line-height: 1.06;
  margin: 0 0 18px
}

.accent-blue {
  background: linear-gradient(90deg, #2a57ff, #6fa0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.plumber-hero p {
  color: var(--muted);
  margin: 0 0 22px
}

.area-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 999px;
  background: #fff;
  color: #1e2640;
  font-weight: 800;
  cursor: pointer
}

.area-pill {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease
}

.area-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(42, 87, 255, .28)
}

.area-pill .icon {
  width: 18px;
  height: 18px;
  color: #e44
}

.area-pill:hover .icon {
  color: inherit
}

.area-pill.active {
  border-color: #2a57ff;
  box-shadow: 0 12px 26px rgba(42, 87, 255, .18)
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px
}

.hero-actions .btn-outline {
  background: #fff;
  border-color: rgba(0, 0, 0, .12);
  color: #1e2640
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2a57ff
}

.scroll-indicator .arrow-down {
  width: 26px;
  height: 26px;
  opacity: .85
}

@keyframes arrowBounce {
  0% {
    transform: translateY(-3px)
  }

  50% {
    transform: translateY(3px)
  }

  100% {
    transform: translateY(-3px)
  }
}

.services {
  padding: 56px 0
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.service:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, .16);
  box-shadow: 0 14px 32px rgba(42, 87, 255, .16)
}

.service .icon {
  grid-row: 1/span 3;
  width: 36px;
  height: 36px;
  color: #2a57ff;
  background: #eef4ff;
  border-radius: 50%;
  padding: 10px
}

.service h4 {
  grid-column: 2;
  margin: 0;
  font-weight: 800
}

.service p {
  grid-column: 2;
  margin: 6px 0 0;
  color: #4b566b
}

.service-foot {
  grid-column: 3;
  grid-row: 1/span 2;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 8px
}

.price {
  font-weight: 900;
  font-size: 26px
}

.service-foot .btn {
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 10px
}

.services .service {
  cursor: pointer
}

.service-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f8ff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px
}

.service-summary #service-summary-name {
  font-weight: 800
}

.service-summary #service-summary-price {
  font-weight: 900
}

#service-modal .modal-card {
  max-width: 560px;
  text-align: left
}

#service-modal .tally-embed {
  margin-bottom: 10px
}

#service-modal iframe {
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: 12px;
  background: transparent
}

.services-note {
  margin-top: 16px;
  background: #eef2fa;
  color: #1e2640;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  gap: 10px
}

.services-note .icon {
  width: 20px;
  height: 20px;
  color: #2a57ff
}

.services-note {
  animation: noteGlow 2.4s ease-in-out infinite
}

.services-note .icon {
  animation: noteFloat 1.8s ease-in-out infinite
}

@keyframes noteGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 87, 255, .10)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(42, 87, 255, .08)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(42, 87, 255, .10)
  }
}

@keyframes noteFloat {
  0% {
    transform: translateY(-2px)
  }

  50% {
    transform: translateY(2px)
  }

  100% {
    transform: translateY(-2px)
  }
}

.topbar {
  position: relative;
  z-index: 70;
  background: #0b1020;
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  text-align: center
}

.topbar .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  margin-right: 8px;
  animation: blink 1s linear infinite
}

.topbar .dot {
  will-change: background-color
}

.topbar #topbar-text {
  text-transform: uppercase
}

.topbar .icon {
  width: 16px;
  height: 16px;
  color: #2a57ff;
  margin-right: 8px
}

@media(max-width:860px) {
  .services .cards {
    grid-template-columns: 1fr
  }

  .services .section-title {
    font-size: 28px
  }

  .services-lead .lead-headline {
    font-size: 24px
  }

  .services-lead .lead-kicker {
    font-size: 14px
  }

  .services-lead .lead-sub {
    font-size: 12px
  }

  .header-cta {
    gap: 8px
  }
}

@media (max-width:580px) {
  .plumber-hero {
    padding: 96px 0 56px
  }

  .plumber-hero h1 {
    font-size: 40px
  }

  .nav-inner {
    height: 64px
  }

  .header-cta {
    gap: 8px
  }

  .header-cta .btn {
    padding: 8px 10px;
    font-size: 13px
  }

  .area-pills {
    flex-wrap: wrap;
    gap: 8px
  }

  .area-pill {
    padding: 10px 12px
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px
  }

  .hero-actions .btn-outline {
    width: 100%
  }

  .scroll-indicator {
    bottom: 12px
  }

  .review-item {
    padding: 16px
  }
}

.plumber-hero #hero-lottie {
  right: 4%;
  top: 12%;
  width: 160px;
  height: 160px;
  opacity: .22
}


/* Dark mode fixes */
.dark .plumber-hero {
  background: radial-gradient(1200px 400px at 0% 0%, rgba(255, 122, 26, .22), transparent 60%), radial-gradient(900px 360px at 100% 10%, rgba(55, 93, 251, .25), transparent 60%), #0b1020
}

.dark .plumber-hero h1,
.dark .plumber-hero p {
  color: #fff
}

.dark .area-pill {
  background: #ffffff;
  color: #1e2640;
  border-color: rgba(0, 0, 0, .12)
}

.dark .area-pill .icon {
  color: #e44
}

.dark .hero-actions .btn-outline {
  background: #ffffff;
  color: #1e2640;
  border-color: rgba(0, 0, 0, .12)
}

.dark .btn-call {
  background: #0b1020;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22)
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

.btn-urgency {
  animation: buttonBlink 1.2s ease-in-out infinite
}

.btn-urgency {
  background-color: #ff6b6b;
  color: #fff;
  will-change: background-color
}

.btn-urgency.blink {
  animation: blinkOpacity .8s ease-in-out infinite, buttonBlink 1.2s ease-in-out infinite
}

@keyframes blinkOpacity {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .45
  }
}

@keyframes buttonBlink {
  0% {
    filter: none;
    box-shadow: 0 12px 24px rgba(255, 59, 48, .28)
  }

  50% {
    filter: brightness(1.06);
    box-shadow: 0 18px 30px rgba(255, 59, 48, .48)
  }

  100% {
    filter: none;
    box-shadow: 0 12px 24px rgba(255, 59, 48, .28)
  }
}

.btn-urgency .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px
}

.reviews {
  background: radial-gradient(1000px 400px at 50% 0%, rgba(42, 87, 255, .04), transparent 80%), #fff;
  border-top: 1px solid rgba(0, 0, 0, .06)
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px
}

.reviews-header .section-title {
  margin-bottom: 16px
}

.trust-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.trust-score {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04)
}

.trust-score .score {
  font-weight: 900;
  font-size: 18px;
  color: #1e2640
}

.trust-score .stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 14px
}

.trust-summary p {
  font-size: 14px;
  color: #4b566b;
  margin: 0
}

.trust-summary strong {
  color: #1e2640
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px
}

.review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  border-color: rgba(42, 87, 255, .2)
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef4ff, #dce9ff);
  color: #2a57ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  position: relative
}

.author-avatar::after {
  content: attr(data-initial)
}

.author-info {
  flex: 1
}

.author-name {
  font-weight: 800;
  color: #1e2640;
  font-size: 15px;
  line-height: 1.2
}

.author-meta {
  font-size: 12px;
  color: #5e697d
}

.verified-badge {
  color: #19c37d;
  width: 20px;
  height: 20px
}

.review-card .stars {
  color: #ffb703;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b566b;
  font-style: italic;
  margin: 0 0 16px;
  flex: 1
}

.review-date {
  font-size: 12px;
  color: #9aa5b1;
  margin-top: auto
}

.reviews-cta {
  text-align: center
}

.reviews-cta .btn {
  padding: 12px 24px;
  border-radius: 999px;
  gap: 8px
}

.reviews-cta .icon {
  width: 18px;
  height: 18px
}

@media(max-width:600px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .review-card {
    padding: 20px
  }

  .reviews-header {
    margin-bottom: 32px
  }
}

/* Dark mode adjustments */
.dark .reviews {
  background: radial-gradient(1000px 400px at 50% 0%, rgba(42, 87, 255, .08), transparent 80%), #0b1020;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.dark .trust-score {
  background: #161c31;
  border-color: rgba(255, 255, 255, .1)
}

.dark .trust-score .score {
  color: #fff
}

.dark .trust-summary p {
  color: #9aa5b1
}

.dark .trust-summary strong {
  color: #fff
}

.dark .review-card {
  background: #161c31;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none
}

.dark .review-card:hover {
  border-color: rgba(42, 87, 255, .4);
  background: #1a2138
}

.dark .author-name {
  color: #fff
}

.dark .author-meta {
  color: #9aa5b1
}

.dark .review-text {
  color: #cfd7ea
}

.dark .author-avatar {
  background: linear-gradient(135deg, #1e2640, #2a3450);
  color: #6fa0ff
}

#urgency-modal .modal-card {
  max-width: 560px;
  text-align: left
}

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 12px
}

.alert .icon {
  width: 20px;
  height: 20px
}

.alert-urgent {
  background: linear-gradient(90deg, #ff3b30, #ff6b5e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 59, 48, .20)
}

.dark .alert-urgent {
  background: linear-gradient(90deg, #c92222, #ff6b6b);
  color: #fff
}

#urgency-modal .modal-card {
  max-width: 560px;
  text-align: left
}

.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #ffffff;
  color: #1e2640;
  transition: border-color .18s ease, box-shadow .18s ease
}

.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 87, 255, .25)
}

.dark .field textarea {
  background: #0f1427;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14)
}

.compare {
  background: radial-gradient(1200px 400px at 0% 0%, rgba(55, 93, 251, .25), transparent 60%), linear-gradient(140deg, #0b1020 0%, #12193a 100%);
  padding: 112px 0
}

.compare .section-title {
  color: #ffffff
}

.compare-table {
  display: grid;
  gap: 14px
}

.compare-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 56px;
  padding: 0 18px
}

.compare-intro .intro-text {
  max-width: 780px
}

.compare-intro h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0;
  color: #ffffff
}

.compare-intro p {
  margin: 6px 0 0 0;
  color: #cdd3e0
}

.compare-intro .btn {
  margin-top: 8px
}

@media (max-width:768px) {
  .compare-intro {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .compare-intro .btn {
    width: 100%
  }
}

@media (max-width:560px) {
  .compare-intro h2 {
    font-size: 24px
  }

  .compare-intro p {
    font-size: 14px
  }
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  align-items: stretch;
  gap: 16px
}

.compare-header .feature {
  color: #e9edf7;
  font-weight: 800
}

.compare-header .col {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 12px 14px;
  color: #e9edf7;
  font-weight: 800
}

.compare-header .col .icon {
  width: 20px;
  height: 20px
}

.compare-header .col-1 .icon {
  color: #8a8f9a
}

.compare-header .col-2 .icon {
  color: #c6cad8
}

.compare-header .winner {
  border-color: rgba(42, 87, 255, .45);
  box-shadow: 0 0 0 2px rgba(42, 87, 255, .35), 0 0 24px rgba(25, 195, 125, .35);
  color: #ffffff
}

.compare-cell.feature {
  color: #cdd3e0;
  font-weight: 700
}

.compare-row .compare-cell {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 800;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px)
}

.compare-row .compare-cell.feature {
  justify-content: flex-start;
  text-align: left;
  padding-left: 16px
}

.compare-row:hover .compare-cell {
  border-color: rgba(42, 87, 255, .18)
}

.compare-row .compare-cell:nth-child(4) {
  border-color: rgba(42, 87, 255, .35);
  box-shadow: 0 0 0 2px rgba(42, 87, 255, .25), 0 0 18px rgba(25, 195, 125, .25);
  color: #e9fcee
}

.compare-row .bad {
  color: #ff4d4f
}

.compare-row .ok {
  color: #19c37d
}

@media(max-width:860px) {
  .compare .section-title {
    font-size: 22px
  }

  .compare-table {
    gap: 12px
  }

  .compare-header .col {
    padding: 10px 12px
  }

  .compare-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

  .compare-row .feature {
    grid-column: 1/-1
  }

  .compare-row .compare-cell {
    padding: 10px 12px;
    font-size: 14px
  }
}

@media(max-width:560px) {
  .compare-header {
    display: none
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .compare-row .feature {
    padding: 12px 14px;
    font-size: 14px
  }

  .compare-row .compare-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 14px;
    font-size: 14px
  }

  .compare-row .compare-cell:nth-child(2)::before {
    content: "Fontanero Tradicional";
    color: #cdd3e0;
    font-weight: 700;
    margin-right: 10px
  }

  .compare-row .compare-cell:nth-child(3)::before {
    content: "Aseguradora";
    color: #cdd3e0;
    font-weight: 700;
    margin-right: 10px
  }

  .compare-row .compare-cell:nth-child(4)::before {
    content: "FIXO";
    color: #e9fcee;
    font-weight: 800;
    margin-right: 10px
  }

  .compare-row .ok {
    background: rgba(25, 195, 125, .08);
    border-color: rgba(25, 195, 125, .25)
  }

  .compare-row .bad {
    background: rgba(255, 77, 79, .06);
    border-color: rgba(255, 77, 79, .18)
  }

  .compare-row {
    display: none
  }

  .compare-row.important {
    display: grid
  }
}

.tools {
  padding: 56px 0;
  margin-top: 68px;
  scroll-margin-top: 68px
}

.tools-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px
}

.tools-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.tools-header .icon {
  width: 20px;
  height: 20px;
  color: #2a57ff
}

.tools-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #4b566b;
  font-weight: 700
}

.tools-subtitle .icon {
  width: 16px;
  height: 16px;
  color: #2a57ff
}

.tools-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px
}

.tools-header-row .hero-actions {
  margin: 0
}

.tools-inputs {
  background: rgba(42, 87, 255, .06);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 18px
}

.calc-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px
}

.calc-field label {
  font-weight: 800;
  color: #1e2640
}

.calc-field input[type="number"],
.calc-field input[type="range"] {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #1e2640
}

.calc-fields-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.tools-inputs .note {
  color: #4b566b;
  font-size: 13px
}

.tools-output {
  background: linear-gradient(140deg, #0b1020 0%, #12193a 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px;
  color: #e9edf7
}

.result-cards {
  display: grid;
  gap: 10px;
  margin-bottom: 16px
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 10px 12px
}

.result-row.success {
  background: rgba(25, 195, 125, .12);
  border-color: rgba(25, 195, 125, .25)
}

.result-row.warn {
  background: rgba(255, 159, 67, .12);
  border-color: rgba(255, 159, 67, .25)
}

.pvp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.pvp .icon {
  width: 28px;
  height: 28px;
  color: #19c37d
}

.pvp-value {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff
}

.tier-note {
  font-size: 12px;
  color: #cdd3e0
}

.tools-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.save-status {
  font-size: 13px;
  color: #cdd3e0
}

@media(max-width:860px) {
  .tools-grid {
    grid-template-columns: 1fr
  }

  .calc-fields-inline {
    grid-template-columns: 1fr
  }
}

.tools .hero-actions {
  justify-content: flex-start
}

@media(max-width:560px) {
  .tools {
    margin-top: 56px;
    padding: 36px 0
  }

  .tools-grid {
    gap: 16px
  }

  .tools-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .tools-header-row .hero-actions {
    width: 100%;
    margin-top: 6px
  }

  .tools-header-row .hero-actions .btn {
    width: 100%
  }

  .tools-inputs {
    padding: 14px
  }

  .tools-output {
    padding: 14px
  }

  .pvp-value {
    font-size: 28px
  }

  .tools-actions {
    flex-direction: column
  }

  .tools-actions .btn {
    width: 100%
  }
}
/* Invoice */
.invoice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px
}

.invoice-intro .pill {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
}

.invoice-intro h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
}

.invoice-intro p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.invoice-intro ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.invoice-intro ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}

.invoice-intro ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

.invoice-form .invoice-block {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-top: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.invoice-form .field {
  margin-bottom: 14px;
}

.invoice-form .field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #475569;
  font-size: 14px;
}

.invoice-form .suffix {
  color: #64748b;
  align-self: center;
  font-size: 14px;
  font-weight: 500;
}

.invoice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.invoice-actions .btn {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 12px;
}

/* SUBSCRIPTION RESPONSIVE STYLES */
#subscribe-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#subscribe-form input[name="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #475569;
  min-width: 220px;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#subscribe-form button {
  background: #2563eb;
  border: none;
  padding: 14px 28px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
  color: #fff;
}

#subscribe-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

@media (max-width: 480px) {
  #subscribe-form {
    flex-direction: column;
    width: 100%;
  }
  
  #subscribe-form input[name="email"] {
    width: 100%;
    min-width: 0;
  }
  
  #subscribe-form button {
    width: 100%;
  }
}
.dark .invoice-intro h3 {
  color: #f8fafc;
}

.dark .invoice-intro p {
  color: #94a3b8;
}

.dark .invoice-intro ul li {
  color: #cbd5e1;
}

.dark .invoice-intro .pill {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.dark .invoice-form .invoice-block {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.dark .invoice-form .field label {
  color: #e2e8f0;
}

.dark .invoice-form .suffix {
  color: #94a3b8;
}

@media (max-width: 780px) {
  .invoice-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .invoice-intro {
    text-align: center;
  }
  
  .invoice-intro ul {
    justify-content: center;
    text-align: left;
    display: inline-grid;
  }
}

/* TOOLS HERO - Animated */
.tools-hero {
  position: relative;
  padding: 180px 0 140px;
  background: #f7f9fc;
  text-align: center;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.tools-hero-bg span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(42, 87, 255, 0.15), transparent 80%);
  animation: floatHero 20s infinite ease-in-out;
  filter: blur(60px);
}

.tools-hero-bg span:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
  background: radial-gradient(closest-side, rgba(255, 122, 26, 0.12), transparent 80%);
}

.tools-hero-bg span:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
  background: radial-gradient(closest-side, rgba(42, 87, 255, 0.12), transparent 80%);
}

.tools-hero-bg span:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  background: radial-gradient(closest-side, rgba(42, 87, 255, 0.08), transparent 80%);
}

@keyframes floatHero {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.tools-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 1px;
  border: 1px solid rgba(42, 87, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(42, 87, 255, 0.1);
  animation: fadeInDown 0.8s ease-out;
}

.tools-hero h1 {
  font-size: 72px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tools-hero h1 .accent {
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.tools-hero p {
  font-size: 22px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.dark .tools-hero {
  background: radial-gradient(circle at top center, #1e293b 0%, #0f172a 100%);
}

.dark .tools-hero-bg span:nth-child(1) {
  background: radial-gradient(closest-side, rgba(255, 122, 26, 0.15), transparent 80%);
}

.dark .tools-hero-bg span:nth-child(2) {
  background: radial-gradient(closest-side, rgba(42, 87, 255, 0.15), transparent 80%);
}

.dark .pill-badge {
  background: rgba(255, 255, 255, 0.05);
  color: #60a5fa;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dark .tools-hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 768px) {
  .tools-hero {
    padding: 140px 0 80px;
    min-height: auto;
  }
  
  .tools-hero h1 {
    font-size: 42px;
  }
  
  .tools-hero p {
    font-size: 18px;
  }
}
