/* ============================================
   LEXWISER.IN — Main Stylesheet
   Inspired by SeedLegals design system
   Colors: Purple #5B3EFF | Teal #00C896 | White #FFFFFF
   Font: Inter (Google Fonts)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:      #5B3EFF;
  --purple-dark: #3D24D1;
  --purple-light:#EEF0FF;
  --teal:        #00C896;
  --teal-dark:   #009E76;
  --teal-light:  #E0FBF4;
  --dark:        #0F0E17;
  --gray-900:    #1A1A2E;
  --gray-700:    #4A4A6A;
  --gray-400:    #9898B8;
  --gray-100:    #F5F5FA;
  --white:       #FFFFFF;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(91,62,255,0.10);
  --shadow-lg:   0 8px 48px rgba(91,62,255,0.18);
  --transition:  all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  /* NO overflow-x:hidden here — it breaks position:fixed on iOS/Android */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITY ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
.section { padding: clamp(52px, 7vw, 80px) 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-teal   { color: var(--teal); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91,62,255,0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,62,255,0.45);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,200,150,0.35);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-teal   { background: var(--teal-light);   color: var(--teal-dark); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91,62,255,0.08);
  padding: 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.navbar-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.5px;
}
.navbar-logo span { color: var(--teal); }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.navbar-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.navbar-menu a:hover { color: var(--purple); }
.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-menu a:hover::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.navbar-hamburger { display: none; cursor: pointer; }
.hamburger-line {
  width: 24px; height: 2px;
  background: var(--dark);
  display: block;
  margin: 5px 0;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #0F0E17 0%, #1A1040 60%, #0F1F3D 100%);
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Hero background image — img tag, sits behind all content */
.hero-bg-image {
  display: block;          /* prevents inline-element gap on some Android browsers */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* show slightly below very top — better crop for office scenes */
  filter: blur(1px) brightness(0.72) saturate(0.92);
  transform: scale(1.06); /* hides blur edge artifacts */
  transform-origin: center center;
  z-index: 0;
  transition: opacity 0.6s ease;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-bg-image {
    object-position: 65% 20%; /* focus right-centre on mobile where subject tends to be */
    transform: scale(1.04);   /* slightly less scale so more image shows on narrow screens */
  }
}
/* Fade in once image is confirmed loaded */
.hero-bg-image[data-loaded] {
  opacity: 1;
}

/*
  Text-shield gradient — sits on top of the image (z-index: 0, later in DOM)
  but below the content (z-index: 1). Dark on the left where text lives,
  fades to near-transparent on the right so the photo shows through.
  Also darkens the very bottom edge so taglines never bleed into the image.
*/
.hero-text-shield {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 9, 20, 0.82) 0%,
      rgba(10, 9, 20, 0.58) 42%,
      rgba(10, 9, 20, 0.22) 68%,
      rgba(10, 9, 20, 0.06) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 9, 20, 0.22) 0%,
      transparent 28%,
      transparent 68%,
      rgba(10, 9, 20, 0.42) 100%
    );
  pointer-events: none;
}

/* Everything inside hero sits above both layers */
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero::before,
.hero::after {
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,62,255,0.3) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.2) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.93);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
/* Hero visual card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hero-card-icon.purple { background: rgba(91,62,255,0.3); }
.hero-card-icon.teal   { background: rgba(0,200,150,0.3); }
.hero-card-icon.gold   { background: rgba(255,193,7,0.3); }
.hero-card-title { font-size: 15px; font-weight: 700; color: var(--white); }
.hero-card-sub   { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-card-price { font-size: 22px; font-weight: 800; color: var(--teal); margin-top: 8px; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gray-100);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-item .icon { font-size: 18px; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 56px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
/* ── Premium Service Cards ──────────────────────────────────────── */
.service-card {
  background: #ffffff;
  border: 1.5px solid rgba(91,62,255,0.08);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 20px rgba(91,62,255,0.07);
  transition:
    transform 0.28s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.28s cubic-bezier(0.22,1,0.36,1),
    border-color 0.28s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before { display: none; }
.service-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 16px 40px rgba(91,62,255,0.16),
    0 32px 56px rgba(91,62,255,0.07);
  border-color: rgba(91,62,255,0.24);
}
/* Color accent bars */
.sc-bar {
  display: block;
  height: 3.5px;
  flex-shrink: 0;
}
.sc-purple .sc-bar { background: linear-gradient(90deg, #5B3EFF, #8B6FFF); }
.sc-teal   .sc-bar { background: linear-gradient(90deg, #00C896, #00E6AA); }
.sc-gold   .sc-bar { background: linear-gradient(90deg, #F59E0B, #FCD34D); }
.sc-blue   .sc-bar { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.sc-orange .sc-bar { background: linear-gradient(90deg, #F97316, #FB923C); }
.sc-slate  .sc-bar { background: linear-gradient(90deg, #64748B, #94A3B8); }
.sc-bundle .sc-bar { background: linear-gradient(90deg, #5B3EFF 0%, #00C896 100%); }
/* Card body */
.sc-body {
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 24px) clamp(12px, 2vw, 18px);
  flex: 1;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.sc-purple .service-icon { background: linear-gradient(135deg,#EEF0FF,#DDD5FF); }
.sc-teal   .service-icon { background: linear-gradient(135deg,#E0FBF4,#B8F5E6); }
.sc-gold   .service-icon { background: linear-gradient(135deg,#FFFBEB,#FEF3C7); }
.sc-blue   .service-icon { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); }
.sc-orange .service-icon { background: linear-gradient(135deg,#FFF7ED,#FFEDD5); }
.sc-slate  .service-icon { background: linear-gradient(135deg,#F8FAFC,#F1F5F9); }
.sc-bundle .service-icon { background: linear-gradient(135deg,#5B3EFF,#00C896); color: #fff; }
/* Card header row */
.sc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0F0E17;
  letter-spacing: -0.3px;
  line-height: 1.3;
  flex: 1;
  margin: 0;
}
/* Tag pills */
.sc-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.sc-tag-hot    { background: #FFF0E6; color: #C2410C; border: 1px solid #FED7AA; }
.sc-tag-free   { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.sc-tag-bundle { background: linear-gradient(135deg,#EEF0FF,#E0FBF4); color: #5B3EFF; border: 1px solid rgba(91,62,255,0.18); }
.service-card p {
  font-size: 13.5px;
  color: #4A4A6A;
  line-height: 1.65;
  margin: 0;
}
/* Price footer */
.sc-footer {
  padding: clamp(12px, 2vw, 14px) clamp(16px, 2.5vw, 24px) clamp(16px, 2vw, 20px);
  border-top: 1px solid rgba(91,62,255,0.07);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.service-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 3px;
}
.service-price-note {
  font-size: 11.5px;
  color: #9898B8;
  font-weight: 500;
  margin: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  transition: gap 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.service-link:hover { gap: 9px; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--gray-100); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(91,62,255,0.3);
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--gray-700); }

/* ---- WHY LEXWISER ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover { background: var(--purple-light); }
.why-feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-feature-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-feature-text  { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
.why-visual {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.why-visual-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.why-visual-sub   { font-size: 14px; opacity: 0.7; margin-bottom: 32px; }
.why-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-stat {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.why-stat-number { font-size: 32px; font-weight: 900; color: var(--teal); }
.why-stat-label  { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.guarantee-box {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guarantee-icon { font-size: 28px; }
.guarantee-text { font-size: 14px; font-weight: 600; color: var(--teal-dark); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #FFB800; font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
}
.testimonial-name    { font-size: 15px; font-weight: 700; }
.testimonial-company { font-size: 13px; color: var(--gray-400); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 50%, #1A1040 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.2) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  position: relative;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--teal); }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--purple); }
.footer-heading { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ---- WHATSAPP FLOAT ---- */
/* ── WhatsApp Floating Button — always on top, always reachable ── */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  position: fixed !important;  /* !important guards against any ancestor override */
  bottom: 28px !important;
  right: 24px !important;
  z-index: 2147483647 !important; /* maximum possible z-index — absolutely on top */
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-radius: 50px;
  padding: 0;
  height: 56px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.50);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-out 2s infinite;
  overflow: hidden;
}

/* Icon circle — always visible */
.wa-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

/* Text label — shown on desktop, hidden on mobile */
.wa-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  padding-right: 18px;
  display: none;          /* hidden by default, shown on wider screens */
}

/* Desktop: expand to pill with label */
@media (min-width: 640px) {
  .whatsapp-float {
    padding: 0;
  }
  .wa-label { display: block; }
}

/* Hover state */
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
  animation: none; /* stop pulse on hover */
}
.whatsapp-float:hover .wa-icon {
  background: #1ebe5d;
}

/* On mobile: pure circle, no label */
@media (max-width: 639px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    bottom: 24px;
    right: 16px;
  }
  .wa-label { display: none !important; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 24px; flex: 1; }
.mobile-menu-links a { font-size: 22px; font-weight: 700; color: var(--dark); }
.mobile-menu-links a:hover { color: var(--purple); }
.mobile-close { font-size: 28px; cursor: pointer; color: var(--gray-700); background: none; border: none; }


/* ---- INNER PAGES ---- */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 64px 0;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 12px; }
.page-hero p  { font-size: 18px; opacity: 0.8; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 600; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(91,62,255,0.08);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--gray-700); }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(91,62,255,0.15);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(91,62,255,0.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 60px; align-items: center; }
.about-image-box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 16px; margin-top: 40px; }
.value-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(91,62,255,0.12);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--purple); background: var(--purple-light); }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.value-text  { font-size: 13px; color: var(--gray-700); }

/* ---- PRICING PAGE ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid rgba(91,62,255,0.12);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card:hover:not(.featured) { border-color: var(--purple); transform: translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-name  { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; opacity: 0.7; }
.pricing-price { font-size: 42px; font-weight: 900; letter-spacing: -1px; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 500; }
.pricing-desc  { font-size: 14px; opacity: 0.7; margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-feature::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.pricing-card.featured .pricing-feature::before { color: var(--teal); }

/* ---- NOTIFICATION BAR ---- */
.notif-bar {
  background: linear-gradient(90deg, var(--purple), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
}
.notif-bar a { color: var(--white); text-decoration: underline; margin-left: 8px; }

/* ===================== NAV DROPDOWNS ===================== */
.nav-item { position: relative; }
.nav-item > a {
  white-space: nowrap;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: white;
  border: 1px solid rgba(91,62,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  min-width: 250px;
  padding: 10px 0;
  z-index: 1001;
}
.nav-item:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block !important;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--gray-700) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding 0.15s;
  font-weight: 500;
  position: static !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: var(--purple-light);
  color: var(--purple) !important;
  padding-left: 26px !important;
}
.nav-dropdown-label {
  padding: 10px 20px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  pointer-events: none;
}
.nav-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(91,62,255,0.07);
  margin: 6px 0;
}

/* ===================== QUICK SERVICE CARDS ===================== */
/* ── Premium Quick Category Cards ───────────────────────────────── */
.quick-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8F7FF 0%, #ffffff 100%);
}
.quick-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.quick-card {
  background: #ffffff;
  border: 1.5px solid rgba(91,62,255,0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 18px rgba(91,62,255,0.07);
  transition:
    transform 0.28s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.28s cubic-bezier(0.22,1,0.36,1),
    border-color 0.28s;
  display: flex;
  flex-direction: column;
}
.quick-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 16px 42px rgba(91,62,255,0.16),
    0 32px 60px rgba(91,62,255,0.07);
  border-color: rgba(91,62,255,0.26);
}
/* Accent top bar */
.quick-card::before {
  content: '';
  display: block;
  height: 3.5px;
  width: 100%;
  flex-shrink: 0;
}
.qc-purple::before { background: linear-gradient(90deg, #5B3EFF 0%, #8B6FFF 100%); }
.qc-teal::before   { background: linear-gradient(90deg, #00C896 0%, #00E6AA 100%); }
.qc-gold::before   { background: linear-gradient(90deg, #F59E0B 0%, #FCD34D 100%); }
.qc-blue::before   { background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%); }
/* Header */
.qc-header {
  padding: clamp(16px, 2.5vw, 22px) clamp(16px, 2.5vw, 22px) clamp(12px, 2vw, 16px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.qc-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.qc-purple .qc-icon-wrap { background: linear-gradient(135deg,#EEF0FF,#DDD5FF); }
.qc-teal   .qc-icon-wrap { background: linear-gradient(135deg,#E0FBF4,#B8F5E6); }
.qc-gold   .qc-icon-wrap { background: linear-gradient(135deg,#FFFBEB,#FEF3C7); }
.qc-blue   .qc-icon-wrap { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); }
.qc-head-text { display: flex; flex-direction: column; gap: 7px; }
.qc-title {
  font-size: 16px;
  font-weight: 800;
  color: #0F0E17;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.qc-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.1px;
}
.qc-purple .qc-pill { background: #EEF0FF; color: #5B3EFF; }
.qc-teal   .qc-pill { background: #E0FBF4; color: #009E76; }
.qc-gold   .qc-pill { background: #FFFBEB; color: #B45309; }
.qc-blue   .qc-pill { background: #EFF6FF; color: #2563EB; }
/* Separator */
.qc-sep { height: 1px; background: rgba(91,62,255,0.07); margin: 0 clamp(14px, 2.5vw, 22px); }
/* Links */
.qc-list {
  padding: 6px clamp(14px, 2.5vw, 22px) 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.qc-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: #4A4A6A;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(91,62,255,0.05);
  transition: color 0.18s, padding-left 0.16s;
}
.qc-list a:last-child { border-bottom: none; }
.qc-list a:hover { color: var(--purple); padding-left: 4px; }
.qc-list a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.qc-purple .qc-list a::before { background: #5B3EFF; opacity: 0.4; }
.qc-teal   .qc-list a::before { background: #00C896; opacity: 0.55; }
.qc-gold   .qc-list a::before { background: #F59E0B; opacity: 0.55; }
.qc-blue   .qc-list a::before { background: #3B82F6; opacity: 0.55; }
/* Footer CTA */
.qc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px clamp(14px, 2.5vw, 22px);
  border-top: 1px solid rgba(91,62,255,0.07);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  transition: background 0.18s;
}
.qc-purple .qc-cta { color: #5B3EFF; }
.qc-teal   .qc-cta { color: #009E76; }
.qc-gold   .qc-cta { color: #B45309; }
.qc-blue   .qc-cta { color: #2563EB; }
.qc-cta:hover { background: rgba(91,62,255,0.04); }
.qc-arrow { transition: transform 0.18s; display: inline-block; }
.qc-cta:hover .qc-arrow { transform: translateX(5px); }

/* ===================== ABOUT HOMEPAGE SECTION ===================== */
.about-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-home-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-home-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  border: 1.5px solid rgba(91,62,255,0.08);
  transition: var(--transition);
}
.about-home-box:hover { border-color: var(--purple); background: var(--purple-light); }
.about-home-box-num   { font-size: 26px; font-weight: 900; color: var(--purple); }
.about-home-box-label { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.about-home-visual {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-home-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(91,62,255,0.08);
  border-radius: 50%;
}
.about-home-emoji { font-size: 80px; margin-bottom: 24px; display: block; }
.about-home-quote {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.6;
  font-style: italic;
}

/* ===================== HOMEPAGE PRICING PLANS ===================== */
.home-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
  margin-top: 48px;
}
.home-plan {
  background: white;
  border: 2px solid rgba(91,62,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.home-plan:hover:not(.home-plan-featured) {
  border-color: var(--purple);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.home-plan-featured {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.home-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.home-plan-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.55; margin-bottom: 6px; }
.home-plan-name { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.home-plan-price { font-size: 48px; font-weight: 900; letter-spacing: -2px; margin-bottom: 4px; }
.home-plan-price-note { font-size: 13px; opacity: 0.55; margin-bottom: 28px; }
.home-plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.home-plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; opacity: 0.85; line-height: 1.4; }
.home-plan-feature .hpf-check { color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ===================== TRUSTED BY ===================== */
.logos-strip {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 16px; margin-top: 40px;
}
.logo-pill {
  background: var(--gray-100);
  border: 1.5px solid rgba(91,62,255,0.08);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px; font-weight: 700;
  color: var(--gray-700);
  transition: var(--transition);
}
.logo-pill:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-light); }

/* ===================== BLOG PREVIEW ===================== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 24px;
  margin-top: 48px;
}
.blog-prev-card {
  background: white;
  border: 1.5px solid rgba(91,62,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-prev-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(91,62,255,0.2); }
.blog-prev-img {
  height: 165px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.bpi-purple { background: linear-gradient(135deg,var(--purple-light),rgba(91,62,255,0.06)); }
.bpi-teal   { background: linear-gradient(135deg,var(--teal-light),rgba(0,200,150,0.06)); }
.bpi-gold   { background: linear-gradient(135deg,#FFF8E1,#FFF0C0); }
.blog-prev-body { padding: 22px; }
.blog-prev-tag  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--purple); margin-bottom: 10px; }
.blog-prev-title { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.5; margin-bottom: 10px; }
.blog-prev-meta  { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; }
.blog-prev-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--purple); text-decoration: none; transition: gap 0.2s; }
.blog-prev-link:hover { gap: 10px; }


/* =====================================================================
   COOKIE CONSENT SYSTEM  — Floating card design
   ===================================================================== */

/* ── BANNER: compact floating card, bottom-right ── */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 344px;
  z-index: 99999;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,0,0,0.10),
    0 0 0 1px rgba(91,62,255,0.08);
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34,1.4,0.64,1),
    opacity   0.28s ease;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hidden {
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

/* gradient accent stripe */
.cookie-banner-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
}

/* card body */
.cookie-banner-body {
  padding: 18px 20px 14px;
}

/* title row */
.cookie-banner-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.1px;
  margin-bottom: 7px;
}
.cookie-banner-icon {
  width: 26px; height: 26px;
  background: var(--purple-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* description text */
.cookie-banner-desc {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cookie-banner-desc a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.cookie-banner-desc a:hover { color: var(--purple-dark); }

/* primary action buttons */
.cookie-banner-btns {
  display: flex;
  gap: 8px;
}
.cb-btn-reject {
  flex: 1;
  padding: 9px 12px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1.5px solid #E5E5F0;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cb-btn-reject:hover {
  background: #EAEAF5;
  color: var(--dark);
  border-color: #D0D0E8;
}
.cb-btn-accept {
  flex: 1;
  padding: 9px 12px;
  background: var(--purple);
  color: #fff;
  border: 1.5px solid var(--purple);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cb-btn-accept:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

/* secondary row */
.cookie-banner-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 14px;
}
.cb-manage-link {
  font-size: 11.5px;
  color: var(--gray-400);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 0;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cb-manage-link:hover { color: var(--purple); }

/* ── PREFERENCES MODAL ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,14,23,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cookie-modal-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.20), 0 0 0 1px rgba(0,0,0,0.05);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.cookie-modal.open .cookie-modal-card {
  transform: translateY(0) scale(1);
}

/* gradient stripe on modal too */
.cookie-modal-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
  border-radius: 20px 20px 0 0;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #F0F0F8;
}
.cookie-modal-header h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
}
.cookie-modal-close {
  background: var(--gray-100);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cookie-modal-close:hover { background: #E0E0EE; color: var(--dark); }

.cookie-modal-body { padding: 4px 24px 0; }
.cookie-modal-desc {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 14px 0 18px;
}

/* category rows */
.cookie-category {
  border: 1px solid #EBEBF5;
  border-radius: 12px;
  margin-bottom: 10px;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}
.cookie-category-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.cookie-category-desc {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.5;
}
.cookie-always-on {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* iOS-style toggle */
.cookie-toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle-switch input {
  position: absolute;
  opacity: 0; width: 0; height: 0;
}
.cookie-toggle-slider {
  width: 42px;
  height: 23px;
  background: #D4D4E8;
  border-radius: 12px;
  position: relative;
  transition: background 0.22s ease;
  display: block;
}
.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0,0,0,0.20);
  transition: left 0.22s ease;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider { background: var(--purple); }
.cookie-toggle-switch input:checked + .cookie-toggle-slider::after { left: 21.5px; }
.cookie-toggle-switch input:focus-visible + .cookie-toggle-slider {
  outline: 2px solid var(--purple); outline-offset: 2px;
}

/* modal footer */
.cookie-modal-footer {
  padding: 16px 24px 22px;
  border-top: 1px solid #F0F0F8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-modal-policy-link {
  font-size: 12px;
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-modal-policy-link:hover { color: var(--purple-dark); }
.cookie-modal-btns {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.cm-btn {
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cm-btn-ghost {
  background: #F4F4FB;
  color: var(--gray-700);
  border-color: #E5E5F0;
}
.cm-btn-ghost:hover { background: #EAEAF5; color: var(--dark); }
.cm-btn-save {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.cm-btn-save:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.cm-btn-accept {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.cm-btn-accept:hover { background: var(--purple-dark); border-color: var(--purple-dark); }

/* ── FOOTER "Cookie Preferences" link ── */
.cookie-prefs-link {
  font-size: 12px;
  color: var(--gray-400);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}
.cookie-prefs-link:hover { color: var(--teal); }

/* ── TOAST ── */
.cookie-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100001;
  background: var(--gray-900);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 10px;
  border-left: 3px solid var(--teal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  max-width: 300px;
}
.cookie-toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
  .cookie-modal-header { padding: 18px 18px 14px; }
  .cookie-modal-body  { padding: 4px 18px 0; }
  .cookie-modal-footer {
    padding: 14px 18px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-modal-btns { flex-direction: column; }
  .cm-btn { width: 100%; justify-content: center; text-align: center; }
  .cookie-modal-policy-link { text-align: center; }
  .cookie-toast { bottom: 12px; right: 12px; left: 12px; max-width: none; }
}

/* =====================================================================
   ANIMATION SYSTEM — Scroll Reveals, Page Transitions, Micro-interactions
   ===================================================================== */

/* ── Scroll progress bar (injected by animations.js) ── */
#lw-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 100%);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Page entry animation ── */
/* Page transitions — opacity ONLY on body. NEVER use transform on body.
   Any transform on body (even translateY(0)) creates a new CSS containing
   block, which breaks position:fixed for ALL children (WhatsApp btn, navbar,
   disclaimer bar, cookie banner). */
@keyframes lwPageIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lwPageOut { from { opacity: 1; } to   { opacity: 0; } }

/* Slide effect lives on an inner wrapper, never on body */
@keyframes lwSlideIn  { from { transform: translateY(10px); opacity:0; } to { transform: none; opacity:1; } }
@keyframes lwSlideOut { to   { transform: translateY(-8px); opacity:0; } }

body {
  animation: lwPageIn 0.35s ease both;
}
body.page-exiting {
  animation: lwPageOut 0.22s ease forwards !important;
  pointer-events: none;
}
/* Slide the page content wrapper, not body */
.lw-page-wrap {
  animation: lwSlideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.page-exiting .lw-page-wrap {
  animation: lwSlideOut 0.22s ease forwards !important;
}

/* ── Scroll reveal — base state (hidden) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Reveal variants */
[data-reveal="pop"] {
  transform: scale(0.92) translateY(12px);
  transform-origin: center bottom;
}
[data-reveal="pop"].is-visible { transform: none; }

[data-reveal="left"]  { transform: translateX(-36px) translateY(0); }
[data-reveal="left"].is-visible  { transform: none; }

[data-reveal="right"] { transform: translateX(36px) translateY(0); }
[data-reveal="right"].is-visible { transform: none; }

[data-reveal="fade"]  { transform: none; }
[data-reveal="fade"].is-visible  { transform: none; }

/* ── Stagger delays for grid children ── */
.lw-stagger > *:nth-child(1) { transition-delay: 0.00s; }
.lw-stagger > *:nth-child(2) { transition-delay: 0.07s; }
.lw-stagger > *:nth-child(3) { transition-delay: 0.14s; }
.lw-stagger > *:nth-child(4) { transition-delay: 0.21s; }
.lw-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.lw-stagger > *:nth-child(6) { transition-delay: 0.35s; }
.lw-stagger > *:nth-child(7) { transition-delay: 0.42s; }
.lw-stagger > *:nth-child(8) { transition-delay: 0.49s; }

/* ── Button shimmer (primary CTAs) ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.22) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: lwShimmer 3.5s infinite 1.5s;
  pointer-events: none;
}
@keyframes lwShimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}

/* ── Navbar enhanced scrolled state ── */
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(91,62,255,0.10);
  background: rgba(255,255,255,0.98);
}

/* ── WhatsApp idle bounce ── */
@keyframes lwWaBounce {
  0%   { transform: scale(1) rotate(0deg); }
  15%  { transform: scale(1.20) rotate(-10deg); }
  30%  { transform: scale(1.24) rotate(8deg); }
  50%  { transform: scale(1.14) rotate(-4deg); }
  65%  { transform: scale(1.08) rotate(3deg); }
  80%  { transform: scale(1.12) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.whatsapp-float.wa-bounce {
  animation: lwWaBounce 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) !important;
}

/* ── Anchor section flash on #hash navigation ── */
@keyframes lwAnchorFlash {
  0%   { box-shadow: 0 0 0 0px rgba(91,62,255,0); }
  35%  { box-shadow: 0 0 0 4px rgba(91,62,255,0.25); }
  100% { box-shadow: 0 0 0 0px rgba(91,62,255,0); }
}
.lw-anchor-flash {
  animation: lwAnchorFlash 1.4s ease;
  border-radius: var(--radius);
}

/* ── Count-up placeholder (no special styles, just keep it legible) ── */
[data-count] { display: inline-block; }

/* ── Reduce motion — respect OS preference ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body, body.page-exiting {
    animation: none !important;
  }
  .btn-primary::after {
    display: none;
  }
  .whatsapp-float.wa-bounce {
    animation: none !important;
  }
  #lw-progress {
    transition: none;
  }
}

/* =====================================================================
   STRUCTURAL BREAKPOINTS — only what cannot be done fluidly
   ===================================================================== */

/* Hamburger menu: only structural change that needs a hard breakpoint */
@media (max-width: 768px) {
  .navbar-menu, .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; flex-direction: column; }
  .hero-visual { display: none; } /* hide decorative cards column on narrow screens */
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Tap highlight removal on mobile */
a, button { -webkit-tap-highlight-color: transparent; }

/* Prevent horizontal scroll — overflow-x ONLY on html, never on body.
   overflow-x:hidden on body breaks position:fixed on iOS Safari & Android Chrome. */
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; }

/* iOS text sizing */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Comparison table scroll on mobile */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.compare-table-wrap table { min-width: 520px; }

/* Touch-friendly minimum tap area */
.btn { min-height: 44px; }

/* =====================================================================
   SERVICES PAGE — fully responsive row layout
   ===================================================================== */
.svc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.svc-row--alt { direction: rtl; }
.svc-row--alt .svc-content, .svc-row--alt .svc-price-card { direction: ltr; }

/* Content side */
.svc-icon-lg  { font-size: 48px; margin-bottom: 16px; line-height: 1; }
.svc-title    { font-size: clamp(20px, 3vw, 28px); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.svc-desc     { font-size: clamp(14px, 1.8vw, 16px); color: var(--gray-700); line-height: 1.8; margin-bottom: 24px; }
.svc-includes {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.svc-includes-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400); margin-bottom: 12px;
}
.svc-includes-list { display: flex; flex-direction: column; gap: 8px; }
.svc-inc-item {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 14px;
}
.svc-inc-check {
  color: var(--teal); font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.svc-time {
  display: flex; align-items: center;
  gap: 8px; font-size: 14px;
  color: var(--gray-700); margin-bottom: 24px;
}
.svc-cta-row {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}

/* Price card side */
.svc-price-box {
  background: linear-gradient(135deg, var(--purple-light), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  text-align: center;
}
.svc-price-icon { font-size: clamp(48px, 8vw, 80px); margin-bottom: 24px; line-height: 1; }
.svc-price-num  {
  font-size: clamp(28px, 5vw, 44px); font-weight: 900;
  color: var(--purple); letter-spacing: -1px; margin-bottom: 4px;
}
.svc-price-note { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }

.form-row-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
}

/* =====================================================================
   MOBILE CARD SLIDERS — horizontal swipe for card grids on small screens
   ===================================================================== */
@media (max-width: 640px) {
  .quick-cards-grid,
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    scrollbar-width: none;
    /* bleed past container padding so first card aligns with page edge */
    margin-left: calc(-1 * clamp(16px, 4vw, 24px));
    margin-right: calc(-1 * clamp(16px, 4vw, 24px));
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    padding-bottom: 14px; /* space for scrollbar on some browsers */
  }
  .quick-cards-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar { display: none; }

  /* Each card snaps to the left edge and shows a peek of the next */
  .quick-cards-grid > * {
    scroll-snap-align: start;
    flex: 0 0 min(260px, 78vw);
  }
  .services-grid > * {
    scroll-snap-align: start;
    flex: 0 0 min(272px, 82vw);
  }
}

/* =====================================================================
   HERO — centre-align text when stacked to single column
   ===================================================================== */
@media (max-width: 768px) {
  .hero-inner      { text-align: center; }
  .hero-badge      { margin: 0 auto 24px; }
  .hero-subtitle   { margin-left: auto; margin-right: auto; }
  .hero-cta        { justify-content: center; }
  .hero-stats      { justify-content: center; }
}

/* =====================================================================
   FOOTER — centre-align columns when stacked on narrow screens
   ===================================================================== */
@media (max-width: 600px) {
  .footer-grid         { text-align: center; }
  .footer-social       { justify-content: center; }
  .footer-links        { align-items: center; }
  .footer-bottom-links { justify-content: center; }
}

/* =====================================================================
   FAQ ACCORDION — homepage + any page using .faq-list
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(91,62,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1.5px solid rgba(91,62,255,0.07);
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--purple-light); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--dark);
  user-select: none;
  line-height: 1.4;
}
.faq-chevron {
  font-size: 22px;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.faq-open .faq-chevron { transform: rotate(90deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: clamp(13px, 1.7vw, 15px);
  color: var(--gray-700);
  line-height: 1.8;
}
.faq-item.faq-open .faq-a { display: block; }
.faq-a strong { color: var(--dark); }

/* =====================================================================
   CTA CONTACT GRID — replaces hardcoded inline grid on homepage
   ===================================================================== */
.cta-contact-grid {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* =====================================================================
   MOBILE OVERRIDES — visual card padding + extra sliders
   ===================================================================== */
@media (max-width: 640px) {

  /* About visual card: tighten padding so quote is fully visible */
  .about-home-visual {
    padding: 32px 24px;
  }
  .about-home-quote {
    font-size: 15px;
  }

  /* Plans + Blog: become horizontal swipe sliders (same pattern as service cards) */
  .home-plans-grid,
  .blog-preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    scrollbar-width: none;
    margin-left: calc(-1 * clamp(16px, 4vw, 24px));
    margin-right: calc(-1 * clamp(16px, 4vw, 24px));
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    padding-bottom: 14px;
    margin-top: 32px;
  }
  .home-plans-grid::-webkit-scrollbar,
  .blog-preview-grid::-webkit-scrollbar { display: none; }

  .home-plans-grid > * {
    scroll-snap-align: start;
    flex: 0 0 min(270px, 80vw);
  }
  .blog-preview-grid > * {
    scroll-snap-align: start;
    flex: 0 0 min(240px, 76vw);
  }

  /* Featured pricing plan: remove the negative translateY that pushes it out of row */
  .home-plan-featured { transform: none; }
}
