:root {
  --purple: #6D28D9;
  --purple-dark: #4C1D95;
  --purple-mid: #7C3AED;
  --purple-light: #8B5CF6;
  --purple-soft: #EDE9FE;
  --purple-xsoft: #F5F3FF;
  --purple-accent: #A78BFA;
  --white: #FFFFFF;
  --gray-50: #F8F7FF;
  --gray-text: #6B7280;
  --dark-text: #1A0A3C;
  --radius: 20px;
  --shadow-card: 0 4px 32px rgba(109, 40, 217, .10);
  --shadow-hover: 0 16px 48px rgba(109, 40, 217, .22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--dark-text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(109, 40, 217, .08);
  animation: slideDown .6s ease both;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 150px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-btn {
  background: var(--purple);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(109, 40, 217, .3);
  transition: all .25s !important;
}

.nav-btn:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
  background: linear-gradient(150deg, #fff 0%, var(--purple-xsoft) 45%, var(--purple-soft) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(109, 40, 217, .13);
  top: -150px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(167, 139, 250, .16);
  bottom: -100px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid rgba(109, 40, 217, .2);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(109, 40, 217, .1);
}

.hero-badge .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underline-w {
  position: relative;
  display: inline-block;
}

.underline-w::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-accent));
  border-radius: 2px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(109, 40, 217, .35);
  transition: all .28s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(109, 40, 217, .45);
}

.btn-outline {
  background: white;
  color: var(--purple);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(109, 40, 217, .25);
  cursor: pointer;
  transition: all .28s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid white;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.trust-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-text);
}

.trust-text span {
  font-size: .78rem;
  color: var(--gray-text);
}

.trust-stars {
  color: #F59E0B;
  font-size: .85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-outer {
  width: 260px;
  height: 520px;
  background: white;
  border-radius: 44px;
  border: 8px solid white;
  box-shadow: 0 40px 100px rgba(109, 40, 217, .22), 0 0 0 1px rgba(109, 40, 217, .1);
  overflow: hidden;
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-status {
  background: var(--purple);
  padding: 14px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-status .time {
  color: white;
  font-size: .72rem;
  font-weight: 700;
}

.phone-notch {
  width: 70px;
  height: 6px;
  background: rgba(255, 255, 255, .3);
  border-radius: 3px;
}

.phone-body {
  padding: 16px 14px;
  background: var(--gray-50);
}

.phone-greeting {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.phone-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.phone-search {
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .68rem;
  color: var(--gray-text);
  margin-bottom: 14px;
  border: 1px solid rgba(109, 40, 217, .1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.p-cat {
  background: white;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(109, 40, 217, .1);
  font-size: .65rem;
  font-weight: 600;
  color: var(--dark-text);
}

.p-cat .p-icon {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 3px;
}

.p-cat.active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.phone-promo {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  padding: 12px;
  color: white;
}

.phone-promo .p-tag {
  font-size: .58rem;
  font-weight: 700;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.phone-promo .p-offer {
  font-size: .8rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin: 2px 0;
}

.phone-promo .p-sub {
  font-size: .6rem;
  opacity: .8;
}

.phone-float-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(109, 40, 217, .18);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-float-badge.left {
  left: -80px;
  top: 100px;
}

.phone-float-badge.right {
  right: -85px;
  bottom: 130px;
}

.badge-icon {
  font-size: 1.3rem;
}

.badge-text strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--dark-text);
}

.badge-text span {
  font-size: .65rem;
  color: var(--gray-text);
}

/* ── STATS ── */
.stats-bar {
  background: var(--purple);
  padding: 32px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.stat-item span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .2);
}

/* ── SHARED SECTION ── */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-xsoft);
  color: var(--purple);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.strip-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── SERVICES ── */
.services-strip {
  padding: 90px 6%;
  background: white;
}

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

.svc-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid rgba(109, 40, 217, .1);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all .32s cubic-bezier(.34, 1.56, .64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, .05), rgba(167, 139, 250, .08));
  opacity: 0;
  transition: opacity .3s;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--purple-light);
}

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

.svc-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--purple-xsoft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: background .3s, transform .3s;
  border: 1.5px solid rgba(109, 40, 217, .15);
}

.svc-card:hover .svc-icon-wrap {
  background: var(--purple);
  transform: scale(1.08) rotate(-4deg);
}

.svc-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.svc-card:hover .svc-link {
  gap: 8px;
}

.svc-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--purple-xsoft);
  color: var(--purple);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ── APP SLIDER ── */
.app-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--purple-xsoft) 30%, var(--purple-soft) 70%, white 100%);
  overflow: hidden;
}

.app-section .strip-header {
  padding: 0 6%;
  margin-bottom: 60px;
}

.app-slider-vp {
  overflow: hidden;
  padding: 0 80px;
}

.app-slider-track {
  display: flex;
  gap: 48px;
  padding: 40px 0 60px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.app-slide {
  flex-shrink: 0;
  width: 260px;
  transition: transform .4s ease, opacity .4s ease;
  position: relative;
}

.phone-mockup {
  width: 260px;
  height: 532px;
  position: relative;
  border-radius: 46px;
  background: linear-gradient(160deg, #2d1b6b 0%, #1a0a3c 50%, #0f0720 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 0 0 0 2px rgba(109, 40, 217, .5), 0 0 0 3px rgba(30, 10, 60, .8), inset 0 1px 0 rgba(255, 255, 255, .12), 0 40px 80px rgba(30, 10, 60, .55), 0 20px 40px rgba(109, 40, 217, .3);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 105px;
  width: 4px;
  height: 36px;
  background: linear-gradient(180deg, #3d2480, #6D28D9);
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 0 0 rgba(0, 0, 0, .3);
}

.phone-btn-vol {
  position: absolute;
  left: -4px;
  top: 152px;
  width: 4px;
  height: 58px;
  background: linear-gradient(180deg, #3d2480, #6D28D9);
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 0 0 rgba(0, 0, 0, .3);
}

.phone-btn-power {
  position: absolute;
  right: -4px;
  top: 128px;
  width: 4px;
  height: 52px;
  background: linear-gradient(180deg, #3d2480, #6D28D9);
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 0 rgba(0, 0, 0, .3);
}

.phone-screen-bevel {
  position: absolute;
  inset: 10px;
  border-radius: 38px;
  background: #0a0415;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.phone-notch-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background: #0a0415;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-island {
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 0 0 14px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-island::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #1a1a2e;
  border-radius: 50%;
  border: 1.5px solid #333;
}

.phone-status-bar {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 22px;
  background: transparent;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.phone-time {
  color: white;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.phone-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-icons span {
  color: white;
  font-size: 9px;
}

.phone-screen {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #1a0a3c;
}

.phone-home-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent);
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
}

.phone-home-indicator {
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
}

.phone-glass {
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(130deg, rgba(255, 255, 255, .07) 0%, transparent 40%);
  pointer-events: none;
  z-index: 20;
}

.screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--purple-dark), var(--purple));
  gap: 12px;
  color: white;
  font-family: 'Inter', sans-serif;
}

.screen-placeholder .ph-icon {
  font-size: 2.8rem;
}

.screen-placeholder .ph-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
}

.screen-placeholder .ph-sub {
  font-size: .7rem;
  opacity: .65;
  text-align: center;
  padding: 0 24px;
  line-height: 1.5;
}

.slide-caption {
  margin-top: 18px;
  text-align: center;
}

.slide-caption strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--purple);
}

.slide-caption span {
  font-size: .75rem;
  color: var(--gray-text);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.sldr-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(109, 40, 217, .2);
  background: white;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(109, 40, 217, .1);
}

.sldr-btn:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.sldr-dots {
  display: flex;
  gap: 8px;
}

.sldr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(109, 40, 217, .2);
  cursor: pointer;
  transition: all .28s;
  padding: 0;
}

.sldr-dot.active {
  background: var(--purple);
  width: 26px;
  border-radius: 4px;
}

/* ── WHY ── */
.why-section {
  padding: 100px 6%;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-xsoft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(109, 40, 217, .15);
  transition: all .3s;
}

.why-item:hover .why-icon {
  background: var(--purple);
  transform: rotate(-6deg) scale(1.1);
}

.why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-item p {
  font-size: .85rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.why-card {
  background: linear-gradient(145deg, var(--purple), var(--purple-dark));
  border-radius: 28px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.why-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.why-card-sub {
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.wc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.wc-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.wc-stat span {
  font-size: .82rem;
  opacity: .8;
}

/* ── TESTIMONIALS ── */
.testi-section {
  padding: 100px 6%;
  background: var(--gray-50);
  overflow: hidden;
}

.testi-slider-wrap {
  position: relative;
  margin-top: 20px;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.t-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid rgba(109, 40, 217, .08);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, box-shadow .3s;
}

.t-card.active-t {
  border-color: var(--purple-accent);
  box-shadow: var(--shadow-hover);
}

.t-stars {
  color: #F59E0B;
  font-size: .95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.t-qmark {
  font-size: 3rem;
  color: var(--purple-soft);
  font-family: Georgia, serif;
  line-height: .7;
  margin-bottom: 10px;
}

.t-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 22px;
  font-style: italic;
}

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

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.t-info strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-text);
}

.t-info span {
  font-size: .76rem;
  color: var(--gray-text);
}

.t-svc {
  display: inline-block;
  margin-top: 4px;
  background: var(--purple-xsoft);
  color: var(--purple);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(109, 40, 217, .2);
  cursor: pointer;
  transition: all .28s;
  padding: 0;
}

.testi-dot.active {
  background: var(--purple);
  width: 26px;
  border-radius: 4px;
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 6%;
  background: white;
}

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

.price-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid rgba(109, 40, 217, .12);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(145deg, var(--purple), var(--purple-dark));
  border-color: transparent;
  color: white;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(109, 40, 217, .35);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, .2);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .3);
}

.price-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: .85rem;
  color: var(--gray-text);
  margin-top: 4px;
}

.price-card.featured .plan-desc {
  color: rgba(255, 255, 255, .75);
}

.price-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 16px 0 4px;
}

.price-val span {
  font-size: 1rem;
  font-weight: 400;
}

.price-period {
  font-size: .8rem;
  opacity: .7;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
}

.price-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--purple);
  flex-shrink: 0;
}

.price-card.featured .price-features li::before,
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, .9);
}

.btn-price {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.btn-price-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid rgba(109, 40, 217, .2);
}

.btn-price-outline:hover {
  border-color: var(--purple);
  background: var(--purple-xsoft);
}

.btn-price-white {
  background: white;
  color: var(--purple-dark);
}

.btn-price-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* ── CTA ── */
.cta-section {
  margin: 0 6% 100px;
  border-radius: 32px;
  background: linear-gradient(130deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 255, 255, .12), transparent);
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-white {
  background: white;
  color: var(--purple-dark);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, .15);
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .25s;
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-3px);
}

.cta-apps {
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.cta-apps p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 12px;
  margin-top: 0;
}

.app-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.app-badge {
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: white;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: background .2s;
}

.app-badge:hover {
  background: rgba(255, 255, 255, .25);
}

/* ── FOOTER ── */
footer {
  background: var(--dark-text);
  color: rgba(255, 255, 255, .85);
  padding: 60px 6% 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  text-decoration: none;
  transition: all .2s;
}

.social-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--purple-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  font-size: .78rem;
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--purple-accent);
}

/* ══════════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 7, 32, .65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(109, 40, 217, .28), 0 0 0 1px rgba(109, 40, 217, .1);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-soft) transparent;
}

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

.modal-header {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  padding: 28px 32px 24px;
  border-radius: 28px 28px 0 0;
  position: relative;
}

.modal-header-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.modal-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .28);
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px 32px 32px;
}

/* Selected service pill */
.selected-svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-xsoft);
  border: 1.5px solid rgba(109, 40, 217, .18);
  border-radius: 50px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 22px;
}

.selected-svc-pill .pill-icon {
  font-size: 1.1rem;
}

.selected-svc-pill span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--purple);
}

/* Form groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label .req {
  color: var(--purple);
  font-size: .75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(109, 40, 217, .15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--dark-text);
  background: var(--purple-xsoft);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, .1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236D28D9' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.6;
}

/* Time slots */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.time-slot {
  background: var(--purple-xsoft);
  border: 1.5px solid rgba(109, 40, 217, .15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  transition: all .2s;
}

.time-slot:hover {
  border-color: var(--purple);
  background: white;
}

.time-slot.selected {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* Divider */
.form-divider {
  height: 1px;
  background: rgba(109, 40, 217, .1);
  margin: 8px 0 20px;
}

.form-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}

/* Promo input */
.promo-row {
  display: flex;
  gap: 8px;
}

.promo-row input {
  flex: 1;
  border-radius: 10px;
}

.promo-btn {
  background: var(--purple-xsoft);
  border: 1.5px solid rgba(109, 40, 217, .2);
  color: var(--purple);
  padding: 0 18px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.promo-btn:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* Summary box */
.booking-summary {
  background: var(--purple-xsoft);
  border: 1.5px solid rgba(109, 40, 217, .12);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.summary-row .sl {
  font-size: .82rem;
  color: var(--gray-text);
}

.summary-row .sv {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark-text);
}

.summary-row.total {
  border-top: 1px dashed rgba(109, 40, 217, .2);
  margin-top: 8px;
  padding-top: 12px;
}

.summary-row.total .sl {
  font-weight: 700;
  color: var(--dark-text);
}

.summary-row.total .sv {
  font-size: 1.05rem;
  color: var(--purple);
}

/* Submit */
.modal-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(109, 40, 217, .35);
  transition: all .28s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(109, 40, 217, .45);
}

.modal-submit:active {
  transform: translateY(0);
}

/* Success state */
.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px 40px;
}

.modal-success.show {
  display: flex;
}

.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 2px solid #6EE7B7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

.success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.success-sub {
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 24px;
}

.success-ref {
  background: var(--purple-xsoft);
  border: 1.5px dashed rgba(109, 40, 217, .25);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px;
}

.modal-done-btn {
  background: var(--purple);
  color: white;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(109, 40, 217, .3);
  transition: all .25s;
}

.modal-done-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(109, 40, 217, .4);
}

/* ── ANIMATIONS ── */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    transform: scale(.4);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .phone-float-badge {
    display: none;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .t-card {
    width: calc(50% - 12px);
  }

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

@media(max-width:700px) {
  .nav-links {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 28px;
    margin: 0 4% 60px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding-bottom: 20px;
  }

  .stat-item:not(:last-child) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .2);
  }

  .t-card {
    width: calc(100% - 0px);
  }

  .app-slider-vp {
    padding: 0 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 20px 20px 24px;
  }

  .modal-header {
    padding: 22px 20px 18px;
  }
}

.terms-strip {
  padding: 90px 6%;
  background: white;  
  margin-top: 40px
}

.terms-section{
    margin-bottom: 10px
}

.terms-section h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top:10px;
  margin-bottom: 8px;
}

.terms-section ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terms-section .p{
  font-size: .85rem;
}