:root {
  --bg: #f5f8fc;
  --bg-soft: #ffffff;
  --text: #10213a;
  --muted: #5d6b7f;
  --green: #14953c;
  --green-dark: #0d6b2a;
  --blue: #2f62d8;
  --orange: #f39a1f;
  --purple: #8954d9;
  --teal: #1ea8a8;
  --gold: #f1b420;
  --shadow: 0 18px 50px rgba(21, 45, 84, 0.08);
  --line: rgba(17, 34, 64, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 149, 60, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(47, 98, 216, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
  color: var(--text);
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 41, 74, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.brand-mark {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.brand-mark span {
  color: var(--blue);
}

.brand-tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav > a,
.dropdown-trigger {
  font: inherit;
  border: 0;
  background: none;
  color: var(--text);
  padding: 10px 0;
  cursor: pointer;
}

.site-nav a.active {
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 46px;
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: rgba(20, 149, 60, 0.08);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-pill strong,
.contact-pill small {
  display: block;
}

.contact-pill strong {
  font-size: 0.92rem;
}

.contact-pill small {
  font-size: 0.72rem;
  color: var(--muted);
}

.phone-icon {
  color: var(--green);
  font-size: 1.15rem;
}

.whatsapp-btn {
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1f9c43 0%, #0e7e31 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(14, 126, 49, 0.25);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--green-dark);
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-weight: 700;
  color: var(--green);
}

.lead {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 18px 0 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 28px;
}

.feature-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-row span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(20, 149, 60, 0.12);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #25a745 0%, #0f7f31 100%);
  box-shadow: 0 18px 28px rgba(15, 127, 49, 0.24);
}

.btn-secondary {
  color: var(--orange);
  border-color: rgba(243, 154, 31, 0.45);
  background: #fff;
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.btn.mini {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  margin-top: auto;
  background: rgba(20, 149, 60, 0.1);
  color: var(--green-dark);
}

.details-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.details-modal.open {
  display: flex;
}

.details-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 51, 0.58);
  backdrop-filter: blur(4px);
}

.details-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(86vh, 780px);
  overflow: auto;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(18, 41, 74, 0.08);
}

.details-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 41, 74, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.details-dialog h3 {
  margin: 8px 0 10px;
  font-size: 1.7rem;
}

.details-price {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-weight: 800;
}

.details-body p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: var(--text);
}

.details-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 149, 60, 0.08);
  color: var(--green-dark);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.illustration {
  position: absolute;
  inset: 22px 0 0;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(63, 146, 255, 0.16), transparent 15%),
    radial-gradient(circle at 18% 18%, rgba(20, 149, 60, 0.11), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(243, 154, 31, 0.14), transparent 15%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 244, 255, 0.82));
  box-shadow: inset 0 0 0 1px rgba(18, 40, 74, 0.04);
}

.badge {
  position: absolute;
  right: 34px;
  top: 40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--blue);
  background: radial-gradient(circle, #fff 0 36%, #ffd34f 36% 54%, #fff 54% 58%, transparent 58%);
  border: 10px solid rgba(47, 98, 216, 0.16);
  transform: rotate(-10deg);
}

.desk {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 58px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cc8e49 0%, #ad6f30 100%);
  box-shadow: 0 16px 24px rgba(114, 78, 35, 0.22);
}

.desk::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: -8px;
  height: 10px;
  border-radius: 999px;
  background: #d9a360;
}

.laptop {
  position: absolute;
  left: 27%;
  bottom: 88px;
  width: 230px;
  height: 160px;
  transform: perspective(700px) rotateX(18deg) rotateZ(-2deg);
}

.laptop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(160deg, #506889, #213655);
  box-shadow: 0 16px 26px rgba(13, 33, 57, 0.24);
}

.screen {
  position: absolute;
  inset: 14px 18px 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(222, 234, 252, 0.92));
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--blue);
}

.person {
  position: absolute;
  right: 23%;
  bottom: 86px;
  width: 210px;
  height: 250px;
}

.head {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 96px;
  height: 96px;
  margin-left: -48px;
  border-radius: 44% 44% 40% 40%;
  background: linear-gradient(180deg, #f6b07e, #ef925b);
  box-shadow: inset 0 -8px 0 rgba(162, 72, 20, 0.12);
}

.head::before,
.head::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -10px;
  width: 116px;
  height: 62px;
  border-radius: 60% 60% 32% 32%;
  background: linear-gradient(180deg, #163b68, #102b4f);
  clip-path: polygon(4% 62%, 10% 27%, 24% 8%, 48% 0, 72% 5%, 89% 22%, 96% 52%, 92% 76%, 77% 88%, 52% 92%, 24% 88%, 11% 76%);
}

.head::after {
  top: 5px;
  left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1b2943;
  box-shadow: 50px 0 0 #1b2943;
  clip-path: none;
}

.body {
  position: absolute;
  left: 50%;
  top: 96px;
  width: 182px;
  height: 152px;
  margin-left: -91px;
  border-radius: 40% 40% 24% 24%;
  background: linear-gradient(180deg, #2ebe4f, #118534);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.06);
}

.body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 74px;
  height: 22px;
  margin-left: -37px;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.24);
}

.arm {
  position: absolute;
  width: 84px;
  height: 26px;
  background: linear-gradient(180deg, #f0a166, #e88c50);
  border-radius: 999px;
  top: 132px;
}

.arm.left {
  left: 4px;
  transform: rotate(25deg);
}

.arm.right {
  right: 4px;
  transform: rotate(-22deg);
}

.coins {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.coins span {
  display: block;
  width: 40px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd95c, #f0ad12);
  box-shadow: inset 0 0 0 4px rgba(255, 231, 153, 0.35);
}

.coins span:nth-child(2) {
  height: 58px;
  margin-top: -8px;
}

.coins span:nth-child(3) {
  height: 68px;
  margin-top: -16px;
}

.coins span::before {
  content: "\20B9";
  position: relative;
  top: 12px;
  display: grid;
  place-items: center;
  color: #a56400;
  font-size: 1.45rem;
  font-weight: 900;
}

.float-card {
  position: absolute;
  z-index: 2;
  min-width: 128px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 62, 112, 0.1);
  box-shadow: var(--shadow);
}

.float-card span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
}

.float-card small {
  color: var(--muted);
}

.gst {
  top: 48px;
  left: 42px;
}

.itr {
  top: 50px;
  right: 190px;
}

.tds {
  top: 262px;
  left: 26px;
}

.trust-strip {
  padding: 10px 0 18px;
}

.trust-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 41, 74, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 26px;
}

.trust-inner h3 {
  margin: 6px 0 0;
  font-size: 1.4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 12px;
  text-align: center;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid rgba(47, 98, 216, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.trust-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 18px rgba(16, 33, 58, 0.12);
}

.trust-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-label {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.2;
}

.retail {
  border: 1px solid rgba(27, 148, 64, 0.18);
}

.traders {
  border: 1px solid rgba(47, 98, 216, 0.18);
}

.manufacturers {
  border: 1px solid rgba(140, 90, 223, 0.18);
}

.ecommerce {
  border: 1px solid rgba(243, 154, 31, 0.18);
}

.airbnb {
  border: 1px solid rgba(255, 90, 95, 0.18);
}

.freelancers {
  border: 1px solid rgba(30, 168, 168, 0.18);
}

.providers {
  border: 1px solid rgba(241, 180, 32, 0.18);
}

.section {
  padding: 28px 0 10px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 41, 74, 0.06);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  min-height: 238px;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.green .icon-box {
  background: rgba(20, 149, 60, 0.14);
}

.blue .icon-box {
  background: rgba(47, 98, 216, 0.14);
}

.orange .icon-box {
  background: rgba(243, 154, 31, 0.16);
}

.purple .icon-box {
  background: rgba(137, 84, 217, 0.14);
}

.teal .icon-box {
  background: rgba(30, 168, 168, 0.15);
}

.gold .icon-box {
  background: rgba(241, 180, 32, 0.18);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card a {
  margin-top: auto;
  font-weight: 700;
  color: var(--green-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(18, 41, 74, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.price-card h3 {
  margin: 0;
  color: var(--green-dark);
}

.price-card.blue h3 {
  color: var(--blue);
}

.price-card.orange h3 {
  color: var(--orange);
}

.price-card.purple h3 {
  color: var(--purple);
}

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

.price {
  margin: 8px 0;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 41, 74, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px 12px;
}

.stats-grid div {
  text-align: center;
  border-right: 1px solid rgba(18, 41, 74, 0.08);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--green-dark);
}

.stats-grid span {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 16px;
}

.info-panel {
  padding: 22px;
  min-height: 320px;
}

.check-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  line-height: 1.5;
}

.check-list li::before {
  content: "\2713";
  color: var(--green-dark);
  margin-right: 10px;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.process div {
  padding-top: 10px;
  text-align: center;
}

.process span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #1c8d3a 0%, #0f6f2d 100%);
  color: #fff;
  font-weight: 800;
}

.process strong {
  display: block;
  margin-bottom: 6px;
}

.process p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial-list {
  position: relative;
  min-height: 260px;
  margin-top: 16px;
}

.testimonial-card {
  display: none;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 149, 60, 0.05), rgba(47, 98, 216, 0.04));
  border: 1px solid rgba(18, 41, 74, 0.06);
  animation: fadeIn 0.6s ease;
}

.testimonial-card.active {
  display: block;
}

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

.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

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

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, #133c6c, #2e66d8);
}

.client p {
  margin: 2px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 16px 0 8px;
}

.cta-inner {
  background: linear-gradient(90deg, #0f4b8d 0%, #163f79 45%, #138032 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  padding: 26px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1fr 1.2fr;
  gap: 18px;
  align-items: start;
  padding-top: 10px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.footer-brand {
  margin-bottom: 14px;
}

.subscribe-card {
  padding: 18px;
  background: rgba(20, 149, 60, 0.06);
  border-radius: 18px;
  border: 1px solid rgba(20, 149, 60, 0.12);
}

.subscribe-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(18, 41, 74, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.subscribe-form button {
  border: 0;
  background: linear-gradient(180deg, #1c943a 0%, #0f7830 100%);
  color: #fff;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(18, 41, 74, 0.08);
  margin-top: 22px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .trust-inner,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions,
  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0 6px;
  }

  .site-nav.open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 8px 0 0 10px;
    background: transparent;
  }

  .header-inner {
    align-items: center;
  }

  .hero {
    padding-top: 18px;
  }

  .feature-row,
  .service-grid,
  .pricing-grid,
  .stats-grid,
  .trust-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
  }

  .cta-inner,
  .footer-bottom,
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 430px;
  }

  .illustration {
    inset: 10px 0 0;
  }

  .person {
    right: 12%;
    transform: scale(0.85);
    transform-origin: bottom right;
  }

  .laptop {
    left: 15%;
    transform: perspective(700px) rotateX(18deg) rotateZ(-2deg) scale(0.88);
    transform-origin: bottom left;
  }

  .badge {
    right: 14px;
    top: 20px;
    transform: scale(0.78) rotate(-10deg);
  }
}
.price.locked {
  filter: blur(5px);
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.price.locked:hover {
  filter: blur(3px);
}

.price.unlocked {
  filter: blur(0);
}
.lead-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
}

.lead-box {
  width: 450px;
  max-width: 90%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin: 100px auto;
}

.lead-box input,
.lead-box select {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
}

.close-modal {
  float: right;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}
