﻿:root {
  --hero-nav-height: 84px;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
  color: var(--color-text-secondary);
  font-family: var(--font-family-body);
  overflow-x: hidden;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--hero-nav-height);
  background: rgba(7, 7, 17, 0.34);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(10, 10, 18, 0.08);
}

.nav-shell {
  width: min(100%, 1320px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-family-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav.scrolled .brand-copy strong {
  color: #111111;
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.site-nav.scrolled .nav-links a {
  color: #27272a;
}

.nav-cta {
  justify-self: end;
  min-width: 179px;
  height: 44px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #4f7cff 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 24px rgba(113, 73, 255, 0.35), 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.hero-panel {
  position: relative;
  height: 920px;
  min-height: 840px;
  background-image: url("assets/hero-approved.webp");
  background-size: cover;
  background-position: center ;
  background-repeat: no-repeat;
  clip-path: ellipse(140% 100% at 50% 0%);
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 20, 0.48);
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.42) 100%), linear-gradient(180deg, rgba(8, 8, 20, 0.08) 0%, rgba(8, 8, 20, 0) 18%, rgba(8, 8, 20, 0.14) 78%, rgba(8, 8, 20, 0.35) 100%);
  z-index: 0;
}
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-content{
    position:relative;
    left:auto;
    top:auto;
    transform:none;

    width:700px;
    margin:0 auto;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}



.hero-title {
  margin: 30px 0 0;
  font-family: var(--font-family-display);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  text-align: center;
  color: #ffffff;
  
  text-align: center;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #8b5cf6 0%, #6d5cff 52%, #4f7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-button {
  height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.hero-button-primary {
  min-width: 242px;
  color: #ffffff;
  background: linear-gradient(90deg, #7c3aed 0%, #4f7cff 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 34px rgba(113, 73, 255, 0.36), 0 14px 32px rgba(0, 0, 0, 0.26);
}

.hero-button-secondary {
  min-width: 218px;
  color: #ffffff;
  background: rgba(6, 6, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}



.hero-curve {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 280%;
  height: 200%;
  border-radius: 50%;
  background: transparent;
  border: 3px solid rgba(139, 92, 246, 0.6);
  box-shadow: inset 0 0 60px rgba(139, 92, 246, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
  z-index: 1;
  pointer-events: none;
}
.video-gallery-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-gallery-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #09090f;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18), 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(123, 63, 242, 0.18), 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(123, 63, 242, 0.2);
}

.video-card-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #09090f;
}

.audio-toggle-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(8, 8, 16, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, opacity 0.3s ease;
  opacity: 0;
}

.video-card:hover .audio-toggle-btn,
.audio-toggle-btn:focus-visible,
.audio-toggle-btn:not(.is-muted) {
  opacity: 1;
}

.audio-toggle-btn:hover {
  transform: scale(1.08);
  background: rgba(8, 8, 16, 0.85);
}

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

.audio-toggle-btn .icon-volume-on,
.audio-toggle-btn .icon-volume-off {
  display: none;
}

.audio-toggle-btn.is-muted .icon-volume-off,
.audio-toggle-btn:not(.is-muted) .icon-volume-on {
  display: block;
}

/* Responsive Grid Rules */
@media (max-width: 1200px) {
  .video-gallery-container {
    padding: 0 32px;
  }
  .video-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .audio-toggle-btn {
    opacity: 1; /* Always visible on touch/tablet screens */
  }
}

@media (max-width: 640px) {
  .video-gallery-section {
    padding: 60px 0;
  }
  .video-gallery-container {
    padding: 0 20px;
  }
  .video-gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    max-width: 420px;
    margin: 0 auto;
  }
}
.portfolio-section {
  position: relative;
  z-index: 2;
  padding: 44px 0 var(--section-padding-y-lg);
  background: #ffffff;
  color: #111111;
}

.portfolio-container-inner {
  max-width: var(--container-xxl);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
}

.text-eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-violet-500);
}

.section-title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-family-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: #111111;
}

.highlight {
  color: var(--color-violet-500);
}

.section-description {
  margin: 0 auto;
  max-width: 60ch;
  line-height: var(--lh-relaxed);
  color: #555555;
}

.portfolio-filters-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-12);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  background: #f8f9fc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: var(--space-2);
  border-radius: var(--radius-full);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.filter-btn {
  padding: var(--space-2-5) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  color: #555555;
  cursor: pointer;
  transition: var(--transition-color), transform var(--duration-fast) var(--ease-out);
}

.filter-btn:hover {
  color: #111111;
}

.filter-btn.active {
  background: var(--gradient-brand);
  color: #ffffff;
  box-shadow: var(--shadow-glow-xs);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  transition: opacity var(--duration-moderate) var(--ease-out);
}

.portfolio-card {
  background: #f8f9fc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  transition: transform var(--duration-moderate) var(--ease-spring), box-shadow var(--duration-moderate) var(--ease-out), border-color var(--duration-moderate) var(--ease-out);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-violet-400);
  box-shadow: 0 12px 30px rgba(123, 63, 242, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card-thumb-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;
  background: #06060c;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.card-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.portfolio-card:hover .card-thumb {
  transform: scale(1.04);
}

.thumb-grad-realestate { background: linear-gradient(135deg, hsl(262, 50%, 15%) 0%, hsl(220, 50%, 10%) 100%); }
.thumb-grad-clinic { background: linear-gradient(135deg, hsl(185, 50%, 15%) 0%, hsl(262, 50%, 10%) 100%); }
.thumb-grad-pestcontrol { background: linear-gradient(135deg, hsl(220, 50%, 15%) 0%, hsl(185, 50%, 10%) 100%); }
.thumb-grad-furniture { background: linear-gradient(135deg, hsl(38, 50%, 15%) 0%, hsl(262, 50%, 10%) 100%); }
.thumb-grad-ecommerce { background: linear-gradient(135deg, hsl(152, 50%, 15%) 0%, hsl(220, 50%, 10%) 100%); }
.thumb-grad-coaching { background: linear-gradient(135deg, hsl(262, 55%, 18%) 0%, hsl(240, 14%, 8%) 100%); }

.card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.play-btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--duration-moderate) var(--ease-spring), background-color var(--duration-normal), border-color var(--duration-normal), box-shadow var(--duration-normal);
}

.portfolio-card:hover .play-btn-circle {
  transform: scale(1.12);
  background-color: var(--color-violet-500);
  border-color: transparent;
  box-shadow: var(--shadow-glow-sm);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 14, 0.85) 0%, rgba(6, 6, 14, 0.3) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-8);
  z-index: 3;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.btn-watch {
  background: #ffffff;
  color: #000000;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  padding: var(--space-2-5) var(--space-6);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(12px);
  transition: transform var(--duration-moderate) var(--ease-spring);
}

.portfolio-card:hover .btn-watch {
  transform: translateY(0);
}

.card-info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-grow: 1;
  background: #f8f9fc;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.card-badge {
  align-self: flex-start;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-violet-500);
  background: rgba(123, 63, 242, 0.05);
  border: 1px solid rgba(123, 63, 242, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.card-title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: #111111;
  letter-spacing: var(--ls-snug);
}

.card-desc {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);
  color: #555555;
}

.portfolio-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
  margin-top: var(--space-6);
}

.cta-text {
  margin: 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: #555555;
}

.portfolio-cta {
  min-width: 248px;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 58px;
  }

  .hero-description {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
    height: auto;
  }

  .site-nav {
    height: auto;
  }

  .brand,
  .nav-links,
  .nav-cta {
    justify-self: center;
  }

  .hero-content-wrap {
    padding-top: 148px;
  }

  .hero-content {
    width: min(100%, 760px);
    transform: translateY(0);
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -1.4px;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-description {
    font-size: 18px;
    max-width: 34ch;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}


@media (max-width: 640px) {
  .nav-shell {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 48px;
    height: 40px;
    font-size: 18px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .nav-links {
    gap: 35px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 14px;
  }

  .nav-cta {
    min-width: 168px;
    height: 42px;
  }

  .hero-content-wrap {
    padding: 150px 20px 100px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero-rating p {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero-description {
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 32px;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .hero-button {
    width: 100%;
    max-width: 320px;
    height: 56px;
  }

  .hero-badges {
    margin-top: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .hero-badges span + span::before {
    display: none;
  }

  .hero-curve {
    width: 150%;
    height: 220px;
    bottom: -122px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
  }

  .portfolio-filters {
    border-radius: var(--radius-lg);
    justify-content: center;
  }

  .filter-btn {
    padding: var(--space-2) var(--space-4);
  }
}

/* ================================================================
   SECTION 3 Ã¢â‚¬â€ BUILT FOR YOU (Premium Light Theme)
   ================================================================ */
.built-for-you-section {
  position: relative;
  background-color: #ffffff;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
}

.built-for-you-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.eyebrow-purple {
  color: #6D5DF6 !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-dark {
  color: #111111 !important;
}

.text-muted {
  color: #64748b !important;
  max-width: 720px;
  margin: 0 auto;
}

.built-for-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 36px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  will-change: transform;
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: #6D5DF6;
  box-shadow: 0 20px 38px rgba(109, 93, 246, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.card-icon {
  width: 56px;
  height: 56px;
  color: #6D5DF6;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .card-icon {
  transform: scale(1.12);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-industry-name {
  font-family: var(--font-family-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.card-industry-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

/* Background blob decorations */
.subtle-blob {
  position: absolute;
  border-radius: 50%;
  background: #6D5DF6;
  filter: blur(130px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.blob-left {
  top: 15%;
  left: -10%;
  width: 400px;
  height: 400px;
}

.blob-right {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
}

/* Scroll reveal states */
.built-for-you-grid > .industry-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), 
              transform 0.7s var(--ease-out), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.built-for-you-grid > .industry-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for premium entrance feel */
.built-for-you-grid > .industry-card:nth-child(1) { transition-delay: 0ms; }
.built-for-you-grid > .industry-card:nth-child(2) { transition-delay: 100ms; }
.built-for-you-grid > .industry-card:nth-child(3) { transition-delay: 200ms; }
.built-for-you-grid > .industry-card:nth-child(4) { transition-delay: 0ms; }
.built-for-you-grid > .industry-card:nth-child(5) { transition-delay: 100ms; }
.built-for-you-grid > .industry-card:nth-child(6) { transition-delay: 200ms; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .built-for-you-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .built-for-you-grid > .industry-card:nth-child(n) {
    transition-delay: 0ms !important; /* disable stagger on small screens */
  }
}

@media (max-width: 640px) {
  .built-for-you-section {
    padding: 80px 0;
  }
  .built-for-you-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .industry-card {
    padding: 28px;
    min-height: auto;
  }
}

/* ================================================================
   SECTION 4 Ã¢â‚¬â€ VIDEO PACKAGES (Premium Light Theme)
   ================================================================ */
.video-packages-section {
  position: relative;
  background-color: #FAFAFC;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
}

.video-packages-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1fr;
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-inline: auto;
  align-items: center;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 28px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  z-index: 1;
}

/* Children relative container to remain on top of hovered gradient overlay */
.pricing-card > * {
  position: relative;
  z-index: 2;
}

/* Apple/Framer-style Gradient Hover background overlay */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), 
              linear-gradient(135deg, #3B1A78 0%, #5B21B6 50%, #7C3AED 100%);
  opacity: 0;
  transition: opacity 450ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.pricing-card.active::before,
.pricing-card:hover::before {
  opacity: 1;
}

/* Emphasized Center Layout scale classes */
.pricing-card.starter-card {
  transform: scale(0.96);
}

.pricing-card.growth-card {
  transform: scale(1.04);
  border-color: rgba(109, 93, 246, 0.25);
  box-shadow: 0 20px 40px rgba(109, 93, 246, 0.08), 0 1px 3px rgba(0, 0, 0, 0.01);
  z-index: 3;
}

.pricing-card.pro-card {
  transform: scale(1);
}

.pricing-card.active,
.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 30px 60px rgba(109, 93, 246, 0.22), 0 10px 20px rgba(0, 0, 0, 0.04);
}

/* Hover depth translateY and scale offset */
.pricing-card.starter-card.active,
.pricing-card.starter-card:hover {
  transform: translateY(-12px) scale(0.99);
}

.pricing-card.growth-card.active,
.pricing-card.growth-card:hover {
  transform: translateY(-12px) scale(1.07);
}

.pricing-card.pro-card.active,
.pricing-card.pro-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.pricing-header {
  margin-bottom: 24px;
}

.package-name {
  font-family: var(--font-family-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .package-name,
.pricing-card:hover .package-name {
  color: #ffffff;
}

.package-subtext {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .package-subtext,
.pricing-card:hover .package-subtext {
  color: rgba(255, 255, 255, 0.82);
}

/* Price Layout Hierarchy */
.package-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}

.package-price .currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  align-self: flex-start;
  margin-top: 6px;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .currency,
.pricing-card:hover .currency {
  color: rgba(255, 255, 255, 0.85);
}

.package-price .price-value {
  font-family: var(--font-family-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #111111;
  line-height: 1;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .price-value,
.pricing-card:hover .price-value {
  color: #ffffff;
}

.package-price .price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .price-period,
.pricing-card:hover .price-period {
  color: rgba(255, 255, 255, 0.85);
}

/* Timeline Spacing & Spans */
.video-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
  position: relative;
  width: 100%;
  gap: 12px;
}

.video-timeline-line {
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 50%, #ECECEC 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 450ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.pricing-card.growth-card .video-timeline-line {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 50%, rgba(109, 93, 246, 0.2) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.pricing-card.active .video-timeline-line,
.pricing-card:hover .video-timeline-line {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.2) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #ECECEC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              color 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 450ms cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.step-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 80px;
  line-height: 1.2;
  min-height: 28px;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.active .step-label,
.pricing-card:hover .step-label {
  color: rgba(255, 255, 255, 0.68);
}

/* Staggered Glassmorphism hover transitions */
.pricing-card.active .timeline-step:nth-child(2) .step-icon-wrap,
.pricing-card:hover .timeline-step:nth-child(2) .step-icon-wrap {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition-delay: 0ms;
}

.pricing-card.active .timeline-step:nth-child(3) .step-icon-wrap,
.pricing-card:hover .timeline-step:nth-child(3) .step-icon-wrap {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition-delay: 80ms;
}

.pricing-card.active .timeline-step:nth-child(4) .step-icon-wrap,
.pricing-card:hover .timeline-step:nth-child(4) .step-icon-wrap {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition-delay: 160ms;
}

.pricing-card.active .timeline-step:nth-child(5) .step-icon-wrap,
.pricing-card:hover .timeline-step:nth-child(5) .step-icon-wrap {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition-delay: 240ms;
}

/* Growth Card Timeline default state is slightly highlighted */
.pricing-card.growth-card .timeline-step .step-icon-wrap {
  border-color: rgba(109, 93, 246, 0.4);
  color: rgba(109, 93, 246, 0.7);
}

/* Specifications: Perfect Alignment Grid */
.video-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  border-top: 1px solid #F1F5F9;
  padding-top: 24px;
  transition: border-color 450ms ease;
}

.pricing-card.active .video-specs,
.pricing-card:hover .video-specs {
  border-color: rgba(255, 255, 255, 0.15);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  width: 100%;
}

.spec-name {
  color: #64748b;
  font-weight: 500;
  transition: color 450ms ease;
}

.pricing-card.active .spec-name,
.pricing-card:hover .spec-name {
  color: rgba(255, 255, 255, 0.68);
}

.spec-val {
  font-weight: 700;
  color: #111111;
  text-align: right;
  transition: color 450ms ease;
}

.pricing-card.active .spec-val,
.pricing-card:hover .spec-val {
  color: #ffffff;
}

/* Pricing Buttons */
.btn-pricing {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              color 450ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  border: none;
}

.btn-pricing.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6D5DF6 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(109, 93, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-pricing.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-pricing.btn-primary:hover::after {
  opacity: 1;
}

.btn-pricing.btn-primary span {
  z-index: 2;
}

.btn-pricing.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(109, 93, 246, 0.4), 0 0 12px rgba(109, 93, 246, 0.2);
}

/* Invert button on card hover + active + lift */
.pricing-card.active .btn-pricing,
.pricing-card:hover .btn-pricing {
  transform: translateY(-4px);
  background: #ffffff !important;
  color: #6D5DF6 !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.active .btn-pricing::after,
.pricing-card:hover .btn-pricing::after {
  opacity: 0 !important;
}

.pricing-card.active .btn-pricing:hover,
.pricing-card:hover .btn-pricing:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

/* Popular Badge */
.popular-badge-wrap {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.popular-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #6D5DF6 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(109, 93, 246, 0.3);
}

/* Subtle purple glow */
.subtle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 93, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Scroll reveal states */
.pricing-grid > .pricing-card {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), 
              transform 0.7s var(--ease-out), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-grid > .pricing-card.starter-card {
  transform: translateY(24px) scale(0.88);
}

.pricing-grid > .pricing-card.growth-card {
  transform: translateY(24px) scale(0.96);
}

.pricing-grid > .pricing-card.pro-card {
  transform: translateY(24px) scale(0.92);
}

.pricing-grid > .pricing-card.starter-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(0.96);
}

.pricing-grid > .pricing-card.growth-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1.04);
}

.pricing-grid > .pricing-card.pro-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pricing-grid > .pricing-card:nth-child(1) { transition-delay: 0ms; }
.pricing-grid > .pricing-card:nth-child(2) { transition-delay: 100ms; }
.pricing-grid > .pricing-card:nth-child(3) { transition-delay: 200ms; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
  }
  .pricing-card.starter-card,
  .pricing-card.growth-card,
  .pricing-card.pro-card {
    transform: scale(1) !important;
  }
  .pricing-grid > .pricing-card.starter-card.is-visible,
  .pricing-grid > .pricing-card.growth-card.is-visible,
  .pricing-grid > .pricing-card.pro-card.is-visible {
    transform: translateY(0) scale(1) !important;
  }
  .pricing-card.starter-card:hover,
  .pricing-card.growth-card:hover,
  .pricing-card.pro-card:hover {
    transform: translateY(-12px) scale(1.03) !important;
  }
}

@media (max-width: 768px) {
  .video-packages-section {
    padding: 80px 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin-inline: auto;
  }
  .pricing-card {
    padding: 36px 28px;
  }
  .pricing-grid > .pricing-card:nth-child(n) {
    transition-delay: 0ms !important;
  }
}

/* ================================================================
   SECTION 5 Ã¢â‚¬â€ DIGITAL MARKETING SERVICES (Premium Light Theme)
   ================================================================ */
.services-section {
  position: relative;
  background-color: #ffffff;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
}

.services-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 36px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #6D5DF6;
  box-shadow: 0 20px 38px rgba(109, 93, 246, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: #6D5DF6;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.12);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title-text {
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.service-desc-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

/* Subtle purple gradient glow behind card grid */
.subtle-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 93, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Scroll reveal states */
.services-grid > .service-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), 
              transform 0.7s var(--ease-out), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-grid > .service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays with 50ms intervals */
.services-grid > .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid > .service-card:nth-child(2) { transition-delay: 50ms; }
.services-grid > .service-card:nth-child(3) { transition-delay: 100ms; }
.services-grid > .service-card:nth-child(4) { transition-delay: 150ms; }
.services-grid > .service-card:nth-child(5) { transition-delay: 200ms; }
.services-grid > .service-card:nth-child(6) { transition-delay: 250ms; }
.services-grid > .service-card:nth-child(7) { transition-delay: 300ms; }
.services-grid > .service-card:nth-child(8) { transition-delay: 350ms; }
.services-grid > .service-card:nth-child(9) { transition-delay: 400ms; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-grid > .service-card:nth-child(n) {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 28px;
    min-height: auto;
  }
}

/* ================================================================
   SECTION 6 - WEBSITE PACKAGES (Interactive Selector)
   ================================================================ */
.web-packages-section {
  position: relative;
  background-color: #ffffff;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(79, 124, 255, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.web-packages-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.package-selector-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.showcase-left-macbook,
.showcase-right-selector {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.showcase-left-macbook {
  transform: translateX(-36px);
}

.showcase-right-selector {
  transform: translateX(36px);
}

.showcase-left-macbook.is-visible,
.showcase-right-selector.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.package-preview-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.package-preview-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.package-preview-orb--left {
  width: 240px;
  height: 240px;
  left: 4%;
  top: 18%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(124, 58, 237, 0) 72%);
}

.package-preview-orb--right {
  width: 300px;
  height: 300px;
  right: 2%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.14) 0%, rgba(79, 124, 255, 0) 74%);
}

.package-preview-frame {
  position: relative;
  width: min(100%, 880px);
  aspect-ratio: 1.48 / 1;
  padding: 32px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 247, 255, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle premium glow outline for Premium */
.package-preview-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1.5px rgba(109, 93, 246, 0.25), 0 0 35px rgba(109, 93, 246, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
  z-index: 10;
}

.package-preview-frame.scale-starter {
  transform: scale(0.80);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.package-preview-frame.scale-standard {
  transform: scale(0.92);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

.package-preview-frame.scale-premium {
  transform: scale(1.0);
  box-shadow: 0 32px 85px rgba(109, 93, 246, 0.16), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.package-preview-frame.scale-premium::after {
  opacity: 1;
}

.package-preview-image {
  position: absolute;
  inset: 32px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 400ms cubic-bezier(0.25, 1, 0.5, 1), transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.package-preview-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.package-selector-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.package-selector-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.package-selector-tab {
  min-width: 124px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.package-selector-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.3);
  color: #111827;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.package-selector-tab.active {
  border-color: transparent;
  background: linear-gradient(135deg, #7c3aed 0%, #4f7cff 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(109, 93, 246, 0.24);
}

.package-selector-details {
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  padding: 34px;
  overflow: hidden;
}

.package-selector-copy {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.package-selector-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.package-selector-kicker {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6d5df6;
}

.package-selector-title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.package-selector-description {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  max-width: 52ch;
}

.package-selector-price-wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-selector-price {
  font-family: var(--font-family-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.package-selector-price-note {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.package-selector-features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.package-selector-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.55;
  color: #1e293b;
}

.package-selector-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #4f7cff 100%);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.08);
}

.package-selector-cta {
  margin-top: 30px;
  min-height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed 0%, #6d5df6 40%, #6d28d9 60%, #4f46e5 100%);
  background-size: 240% auto;
  background-position: left center;
  box-shadow: 0 18px 36px rgba(109, 93, 246, 0.24);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1),
              background-position 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.package-selector-cta .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.package-selector-cta:hover {
  transform: translateY(-2px);
  background-position: right center;
  box-shadow: 0 20px 40px rgba(109, 93, 246, 0.45), 0 0 15px rgba(109, 93, 246, 0.25);
}

.package-selector-cta:hover .btn-arrow {
  transform: translateX(4px);
}

.subtle-web-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 820px;
  height: 820px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 68%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1100px) {
  .package-selector-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .showcase-left-macbook {
    transform: translateY(24px);
  }

  .showcase-right-selector {
    transform: translateY(24px);
  }

  .showcase-left-macbook.is-visible,
  .showcase-right-selector.is-visible {
    transform: translateY(0);
  }

  .package-preview-stage {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .web-packages-section {
    padding: 84px 0;
  }

  .package-preview-stage {
    min-height: 320px;
  }

  .package-preview-frame {
    padding: 18px;
    border-radius: 28px;
  }

  .package-preview-image {
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
  }

  .package-selector-tabs {
    gap: 10px;
  }

  .package-selector-tab {
    flex: 1 1 calc(33.333% - 7px);
    min-width: 0;
    padding: 0 16px;
  }

  .package-selector-details {
    padding: 24px;
  }

  .package-selector-description,
  .package-selector-features li {
    font-size: 0.92rem;
  }

  .package-selector-cta {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .package-selector-layout {
    gap: 32px;
  }

  .package-selector-tabs {
    flex-direction: column;
  }

  .package-selector-tab {
    width: 100%;
  }

  .package-preview-stage {
    min-height: 240px;
  }
}
/* ================================================================
   SECTION 7 Ã¢â‚¬â€ CLIENT TESTIMONIALS (Premium Light Theme)
   ================================================================ */
.testimonials-section {
  position: relative;
  background-color: #ffffff;
  color: #111111;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Trust Bar Styling */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-bar-metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.trust-bar-metric.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar-metric:nth-child(1) { transition-delay: 0ms; }
.trust-bar-metric:nth-child(2) { transition-delay: 100ms; }
.trust-bar-metric:nth-child(3) { transition-delay: 200ms; }

.metric-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.trust-bar-metric:hover .metric-icon {
  transform: scale(1.2) rotate(8deg);
}

.metric-text {
  font-size: 1rem;
  color: #475569;
}

.metric-text strong {
  color: #111111;
}

/* Featured Video Testimonial */
.featured-testimonial-wrapper {
  max-width: 960px;
  margin: 0 auto 80px auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.featured-testimonial-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #09090f;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  display: block;
}

.featured-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-video-card:hover .featured-thumbnail-img {
  transform: scale(1.03);
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
}

.play-icon-circle {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.play-icon-circle svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.featured-video-card:hover .play-icon-circle {
  transform: scale(1.1);
  background-color: #6D5DF6;
  border-color: #6D5DF6;
}

.card-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.client-meta {
  text-align: left;
}

.client-name {
  font-family: var(--font-family-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.business-name {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.duration-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Lightbox Modal */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 20, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  width: min(90%, 960px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox.is-active .lightbox-content {
  transform: scale(1);
}

#lightbox-video {
  width: 100%;
  height: 100%;
  display: block;
}

.close-lightbox-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: 0;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.close-lightbox-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Reviews Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(24px);
  will-change: transform;
}

.review-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: #6D5DF6;
  box-shadow: 0 20px 38px rgba(109, 93, 246, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
}

.google-icon {
  width: 14px;
  height: 14px;
}

.verified-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin: 0 0 24px 0;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(109, 93, 246, 0.2);
}

.avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(109, 93, 246, 0.1);
  color: #6D5DF6;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(109, 93, 246, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
}

.author-business {
  font-size: 0.82rem;
  color: #64748b;
}

/* Staggered entrance delays */
.testimonials-grid > .review-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid > .review-card:nth-child(2) { transition-delay: 80ms; }
.testimonials-grid > .review-card:nth-child(3) { transition-delay: 160ms; }
.testimonials-grid > .review-card:nth-child(4) { transition-delay: 0ms; }
.testimonials-grid > .review-card:nth-child(5) { transition-delay: 80ms; }
.testimonials-grid > .review-card:nth-child(6) { transition-delay: 160ms; }

/* Subtle background blobs */
.blob-left-testimonials {
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
}

.blob-right-testimonials {
  bottom: 10%;
  right: -15%;
  width: 400px;
  height: 400px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .testimonials-grid > .review-card:nth-child(n) {
    transition-delay: 0ms !important;
  }
  .trust-bar {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  .featured-video-card {
    border-radius: 16px;
  }
  .video-thumbnail-overlay {
    padding: 24px;
  }
  .play-icon-circle {
    width: 60px;
    height: 60px;
  }
  .play-icon-circle svg {
    width: 20px;
    height: 20px;
  }
  .client-name {
    font-size: 1.2rem;
  }
  .close-lightbox-btn {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .trust-bar-metric {
    justify-content: center;
  }
  .featured-testimonial-wrapper {
    margin-bottom: 48px;
  }
}

/* ================================================================
   SECTION 8 Ã¢â‚¬â€ PREMIUM DARK FOOTER
   ================================================================ */
   
.site-footer {
  border-radius: 150px 150px 0 0;
  position: relative;
  background-color: #0B0F19;
  color: #F3F4F6;
  padding: 80px 0 0 0; /* footer top padding: 70pxâ€“90px */
  overflow: visible;
  border-top: 1px solid rgba(109, 93, 246, 0.15);
  background-image: 
    linear-gradient(to bottom, #0B0F19 0%, #111827 100%),
    radial-gradient(circle at 50% 0%, rgba(109, 93, 246, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 15% 90%, rgba(109, 93, 246, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  height: auto;
  min-height: 0;
  transform: none !important; /* Always in normal document flow */
  overflow: hidden;
}

.footer-animation-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.footer-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-radial-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 93, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 50px; /* main content bottom padding: 45pxâ€“55px */
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Column 1: Logo & Brand */
.footer-logo {
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: left;
}

.footer-logo strong {
  font-weight: 800;
  color: #8B5CF6;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9CA3AF;
  margin: 0 0 28px 0;
  max-width: 260px;
  text-align: left;
}

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

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

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

.social-btn:hover {
  transform: translateY(-4px) scale(1.08) rotate(4deg);
  border-color: #8B5CF6;
  color: #FFFFFF;
  background-color: rgba(139, 92, 246, 0.1);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

/* Column titles */
.footer-col-title {
  font-family: var(--font-family-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

/* Columns 2 & 3: Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.95rem;
  color: #9CA3AF;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.footer-link:hover {
  color: #8B5CF6;
}

/* Smooth underline animation */
.footer-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background-color: #8B5CF6;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Column 4: Contact details */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-list strong {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D1D5DB;
  text-align: left;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.95rem;
  color: #9CA3AF;
  text-decoration: none;
  text-align: left;
}

.footer-contact-list a:hover {
  color: #8B5CF6;
}

/* Divider styling */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15) 20%, rgba(139, 92, 246, 0.15) 80%, transparent);
  margin: 0;
}

/* Bottom Area */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0 28px 0; /* bottom bar: padding: 22px 0 28px */
  position: static;
  bottom: auto;
}

.copyright-text {
  font-size: 0.85rem;
  color: #6B7280;
  margin: 0;
}

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

.bottom-links {
  display: flex;
  gap: 24px;
}

.bottom-link {
  font-size: 0.85rem;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bottom-link:hover {
  color: #8B5CF6;
}

.designer-link {
  font-weight: 500;
}

/* Partner Logos Strip */
.partner-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(35px, 4vw, 70px);
  flex-wrap: wrap;
  padding: 28px 0; /* partner logos area: padding: 28px 0 */
  margin: 0 auto;
  max-width: 1200px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.partner-logo-item img {
  height: 45px; /* Same visual height: 45px */
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.75; /* opacity: 0.75 */
  transition: transform 250ms ease, opacity 250ms ease; /* transition: 250ms ease */
}

@media (min-width: 1025px) {
  .partner-logo-item img:hover {
    transform: translateY(-2px);
    opacity: 1;
  }
}

.footer-bottom-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.08) 20%, rgba(139, 92, 246, 0.08) 80%, transparent);
  margin: 0;
}

/* Partner Logos Responsive Wrap */
@media (max-width: 768px) {
  .partner-logos-strip {
    gap: 24px 32px;
    padding: 20px 0;
  }
  .partner-logo-item {
    flex: 0 0 calc(33.333% - 22px); /* wrap 3 + 3 */
  }
  .partner-logo-item img {
    height: 38px;
    opacity: 0.85;
  }
}

@media (max-width: 430px) {
  .partner-logos-strip {
    gap: 20px 24px;
  }
  .partner-logo-item {
    flex: 0 0 calc(50% - 16px); /* 2 logos per row */
  }
  .partner-logo-item img {
    height: 32px;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 70px 0 0 0; /* footer top padding: 70pxâ€“90px */
  }
  .footer-top-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 32px;
    padding-bottom: 45px; /* main content bottom padding: 45pxâ€“55px */
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 22px 0 28px 0; /* bottom bar padding: 22px to 28px */
  }
  .footer-bottom-right {
    flex-direction: column;
    gap: 12px;
  }
  .bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .designer-link {
    flex-basis: 100%; /* forces Designed by Azad to stack on its own row */
    text-align: center;
    margin-top: 4px;
  }
}






/* ================================================================
   NAVBAR REBUILD
   ================================================================ */
:root {
  --hero-nav-height-scrolled: 76px;
}

.site-nav {
  height: var(--hero-nav-height);
  overflow: visible;
  transition: height 300ms var(--ease-out), background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out);
}

.site-nav.scrolled {
  height: var(--hero-nav-height-scrolled);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08), inset 0 -1px 0 rgba(10, 10, 18, 0.04);
}

.nav-shell {
  width: min(100%, 1320px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  grid-template-areas: "brand nav cta";
  align-items: center;
  column-gap: 24px;
}

.brand {
  grid-area: brand;
  min-width: 0;
}

.nav-links {
  grid-area: nav;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 0.4vw, 28px);
  min-width: 0;
  width: 100%;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed 0%, #4f7cff 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
  opacity: 0;
}

.nav-link:hover,
.nav-link.is-active {
  color: #c4b5fd;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav.scrolled .nav-link {
  color: #334155;
}

.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.is-active {
  color: #6d5df6;
}

.nav-cta {
  grid-area: cta;
  justify-self: end;
  min-height: 44px;
}

.nav-toggle {
  grid-area: cta;
  justify-self: end;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 6, 14, 0.22);
  cursor: pointer;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.site-nav.scrolled .nav-toggle {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.site-nav.scrolled .nav-toggle span {
  background: #111111;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: calc(var(--z-sticky) - 1);
  padding: 0 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), visibility 300ms var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  background-color: #140F33;
}

.mobile-menu-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out), opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  opacity: 0;
  transform: translateY(-8px);
}

.mobile-menu.is-open .mobile-menu-inner {
  max-height: 720px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-link {
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.mobile-menu-link:hover,
.mobile-menu-link.is-active {
  color: #6d5df6;
  border-color: rgba(109, 93, 246, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mobile-menu-link.is-active {
  position: relative;
}

.mobile-menu-link.is-active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed 0%, #4f7cff 100%);
}

.mobile-menu-cta {
  margin-top: 8px;
  justify-content: center;
  background: linear-gradient(90deg, #7c3aed 0%, #4f7cff 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(109, 93, 246, 0.22);
}

.mobile-menu-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .nav-shell {
    padding-inline: 22px;
    column-gap: 18px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-cta {
    min-width: 164px;
    padding-inline: 18px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
    padding-inline: 18px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .nav-shell {
    padding-inline: 16px;
  }

  .mobile-menu {
    padding-inline: 12px;
  }

  .mobile-menu-link {
    min-height: 50px;
    font-size: 0.93rem;
  }
}

/* ================================================================
   RESPONSIVE LAYOUT & OVERRIDES FOR ALL BREAKPOINTS
   ================================================================ */

/* --- 1. Global / Spacing adjustments --- */
@media (max-width: 1024px) {
  .built-for-you-section,
  .services-section,
  .web-packages-section {
    padding: 100px 0 !important;
  }
  .video-gallery-section,
  .video-packages-section,
  .testimonials-section {
    padding: 68px 0 !important;
  }
}
@media (max-width: 768px) {
  .built-for-you-section,
  .services-section,
  .web-packages-section {
    padding: 60px 0 !important;
  }
  .video-gallery-section,
  .video-packages-section,
  .testimonials-section {
    padding: 48px 0 !important;
  }
}

/* --- 2. Typography --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem) !important;
  }
  .section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem) !important;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem) !important;
  }
  .hero-description {
    font-size: 15px !important;
    line-height: 1.5 !important;
    padding-inline: 12px;
  }
}

/* --- 3. Navbar Mobile Adjustments --- */
@media (max-width: 430px) {
  .brand-copy strong {
    font-size: clamp(12px, 3.8vw, 15px) !important;
  }
  .brand-copy span {
    font-size: clamp(8px, 2.5vw, 10px) !important;
    margin-top: 2px !important;
  }
  .brand-mark {
    width: clamp(36px, 10vw, 44px) !important;
    height: clamp(30px, 8vw, 36px) !important;
  }
  .brand {
    gap: 8px !important;
  }
}

/* --- 4. Hero Section Mobile Overhaul --- */
@media (max-width: 768px) {
  .hero-panel {
    background-image: url("assets/hero-aproved-mobile.webp") !important;
    background-position: center bottom !important;
    background-size: cover !important;
    height: 840px !important;
    min-height: 800px !important;
  }
  .hero-content-wrap {
    align-items: flex-start !important;
    padding-top: calc(var(--hero-nav-height) + 30px) !important;
    padding-bottom: 20px !important;
  }
  .hero-content {
    margin-top: 0 !important;
    padding-inline: 16px !important;
  }
  .hero-title {
    margin-top: 10px !important;
  }
  .hero-description {
    margin-top: 12px !important;
  }
  .hero-actions {
    margin-top: 24px !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .hero-button {
    width: 100% !important;
    max-width: 100% !important;
    height: 52px !important;
  }
}

/* --- 5. Video Portfolio (Reels) Mobile Centering & Aspect Ratio --- */
@media (max-width: 768px) {
  .video-gallery-container {
    padding: 0 20px !important;
  }
  .video-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 340px !important;
    margin-inline: auto !important;
  }
}

/* --- 6. Industries Section (Built For You) Stacked --- */
@media (max-width: 768px) {
  .built-for-you-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .industry-card {
    padding: 28px !important;
    min-height: auto !important;
  }
}

/* --- 7. Video Plans (Pricing Grid) --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    max-width: 980px !important;
    margin-inline: auto;
  }
  .pricing-card {
    padding: 32px 20px !important;
  }
  .pricing-card.starter-card {
    transform: scale(0.92) !important;
  }
  .pricing-card.growth-card {
    transform: scale(1.0) !important;
  }
  .pricing-card.pro-card {
    transform: scale(0.96) !important;
  }
  .pricing-card.starter-card.active {
    transform: translateY(-4px) scale(0.92) !important;
  }
  .pricing-card.growth-card.active {
    transform: translateY(-4px) scale(1.0) !important;
  }
  .pricing-card.pro-card.active {
    transform: translateY(-4px) scale(0.96) !important;
  }
  .pricing-card.starter-card:hover {
    transform: translateY(-8px) scale(0.94) !important;
  }
  .pricing-card.growth-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }
  .pricing-card.pro-card:hover {
    transform: translateY(-8px) scale(0.98) !important;
  }
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    max-width: 420px !important;
    margin-inline: auto !important;
  }
  .pricing-card {
    padding: 36px 28px !important;
  }
  .pricing-card.starter-card,
  .pricing-card.growth-card,
  .pricing-card.pro-card {
    transform: scale(1) !important;
  }
  .pricing-card.starter-card.active,
  .pricing-card.growth-card.active,
  .pricing-card.pro-card.active {
    transform: translateY(-6px) scale(1) !important;
  }
  .pricing-card.starter-card:hover,
  .pricing-card.growth-card:hover,
  .pricing-card.pro-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
  }
}
@media (max-width: 375px) {
  .pricing-card {
    padding: 32px 18px !important;
  }
  .timeline-step .step-icon-wrap {
    width: 32px !important;
    height: 32px !important;
  }
  .timeline-step .step-label {
    font-size: 0.6rem !important;
  }
}

/* --- 8. Digital Marketing (Services Grid) --- */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .service-card {
    padding: 28px !important;
    min-height: auto !important;
  }
}

/* --- 9. Website Packages (Interactive Selector) --- */
@media (max-width: 991px) {
  .package-selector-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: 
      "tabs"
      "preview"
      "details" !important;
    gap: 32px !important;
  }
  .package-selector-panel {
    display: contents !important;
  }
  .package-selector-tabs {
    grid-area: tabs !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .package-selector-visual {
    grid-area: preview !important;
    width: 100% !important;
  }
  .package-selector-details {
    grid-area: details !important;
    width: 100% !important;
  }
  .package-preview-frame.scale-starter,
  .package-preview-frame.scale-standard,
  .package-preview-frame.scale-premium {
    transform: none !important;
  }
  .package-preview-stage {
    min-height: auto !important;
    padding: 10px 0 !important;
  }
  .package-preview-frame {
    max-width: 100% !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }
  .package-preview-image {
    inset: 16px !important;
    width: calc(100% - 32px) !important;
    height: calc(100% - 32px) !important;
    object-fit: contain !important;
  }
  .package-selector-details {
    padding: 20px !important;
  }
}
@media (max-width: 576px) {
  .package-selector-tabs {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .package-selector-tab {
    width: 100% !important;
    min-height: 48px !important;
  }
}

/* --- 10. Client Testimonials --- */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 420px !important;
    margin-inline: auto !important;
  }
}

/* --- 11. Footer Centering & Stacking --- */
@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px !important;
  }
  .site-footer {
    padding: 70px 0 0 0 !important;
    border-radius: 60px 60px 0 0 !important;
  }
  .footer-column {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-logo, 
  .footer-description, 
  .footer-col-title, 
  .footer-contact-list strong, 
  .footer-contact-list span, 
  .footer-contact-list a {
    text-align: center !important;
    align-self: center !important;
    margin-inline: auto !important;
  }
  .footer-links-list {
    align-items: center !important;
  }
  .footer-link {
    align-self: center !important;
  }
  .footer-social-links {
    justify-content: center !important;
  }
  .footer-divider {
    margin: 0 !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    padding: 22px 0 28px 0 !important;
  }
  .footer-bottom-right {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px 24px !important;
  }
  .designer-link {
    flex-basis: 100% !important;
    text-align: center !important;
    margin-top: 4px !important;
  }
}

@media (max-width: 640px) {
  .footer-top-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- 12. Disable expensive hover effects on Touch Devices --- */
@media (hover: none) {
  .industry-card:hover,
  .service-card:hover,
  .review-card:hover,
  .social-btn:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
  }
  
  .pricing-card:not(.active):hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
    border-color: #ECECEC !important;
  }
  .pricing-card:not(.active):hover::before {
    opacity: 0 !important;
  }
  .pricing-card:not(.active):hover .package-name {
    color: #111111 !important;
  }
  .pricing-card:not(.active):hover .package-subtext,
  .pricing-card:not(.active):hover .currency,
  .pricing-card:not(.active):hover .price-period,
  .pricing-card:not(.active):hover .step-label,
  .pricing-card:not(.active):hover .spec-name {
    color: #64748b !important;
  }
  .pricing-card:not(.active):hover .price-value,
  .pricing-card:not(.active):hover .spec-val {
    color: #111111 !important;
  }
  .pricing-card:not(.active):hover .btn-pricing {
    transform: none !important;
    background: linear-gradient(135deg, #7c3aed 0%, #6D5DF6 100%) !important;
    color: #ffffff !important;
  }
}

/* --- 13. Reduce blur intensity on Mobile --- */
@media (max-width: 576px) {
  .subtle-blob {
    filter: blur(80px) !important;
  }
  .package-preview-orb {
    filter: blur(20px) !important;
  }
  .site-nav {
    backdrop-filter: blur(10px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(130%) !important;
  }
}

/* ================================================================
   BOOKING MODAL
   Scoped appointment-booking experience layered on top of the
   existing site without altering the surrounding sections.
   ================================================================ */

body.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 540;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.booking-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(123, 63, 242, 0.22), transparent 42%),
    rgba(8, 10, 18, 0.72);
  backdrop-filter: blur(10px);
}

.booking-modal__panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 920px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(123, 63, 242, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(249, 247, 255, 0.985));
  box-shadow:
    0 32px 80px rgba(17, 24, 39, 0.28),
    0 0 36px rgba(123, 63, 242, 0.14);
  transform: translateY(16px) scale(0.98);
  transition: transform 260ms var(--ease-out);
}

.booking-modal[aria-hidden="false"] .booking-modal__panel {
  transform: translateY(0) scale(1);
}

.booking-modal__content {
  max-height: min(92vh, 920px);
  overflow-y: auto;
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 63, 242, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
  z-index: 2;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.booking-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 63, 242, 0.32);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.14);
}

.booking-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #231942;
  border-radius: 999px;
}

.booking-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-shell {
  padding: 36px;
}

.booking-shell__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-right: 64px;
}

.booking-shell__eyebrow {
  margin: 0 0 8px;
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.booking-shell__title {
  margin: 0;
  color: #1f1636;
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.booking-shell__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(123, 63, 242, 0.14);
  color: #4c1d95;
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
}

.booking-progress__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(123, 63, 242, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(35, 25, 66, 0.7);
}

.booking-progress__step.is-active {
  border-color: rgba(123, 63, 242, 0.24);
  background: rgba(123, 63, 242, 0.08);
  color: #231942;
  box-shadow: 0 10px 24px rgba(123, 63, 242, 0.1);
}

.booking-progress__step.is-complete {
  border-color: rgba(22, 163, 74, 0.18);
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
}

.booking-progress__count {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.booking-progress__label {
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-shell__body {
  min-height: 440px;
}

.booking-step__intro h3 {
  margin: 0 0 8px;
  color: #1f1636;
  font-family: var(--font-family-heading);
  font-size: 1.45rem;
}

.booking-step__intro p,
.booking-empty,
.booking-success-note,
.booking-selected-date {
  margin: 0;
  color: #615c78;
}

.booking-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: rgba(254, 242, 242, 0.94);
  color: #991b1b;
  font-weight: 600;
}

.booking-loading {
  padding: 60px 0;
  text-align: center;
  color: #615c78;
}

.booking-service-group + .booking-service-group {
  margin-top: 24px;
}

.booking-service-group h4 {
  margin: 0 0 12px;
  color: #3b2f5b;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.booking-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 200px;
  padding: 18px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.08);
  color: #231942;
  text-align: left;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.booking-service-card:hover,
.booking-service-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(123, 63, 242, 0.32);
  box-shadow: 0 24px 36px rgba(123, 63, 242, 0.14);
}

.booking-service-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.09);
  color: #6d28d9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-service-card strong {
  font-size: 1.12rem;
}

.booking-service-card p {
  margin: 0;
  color: #615c78;
  line-height: 1.55;
}

.booking-service-card__price {
  margin-top: auto;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1f1636;
}

.booking-service-card__note {
  color: #7c3aed;
  font-size: 0.84rem;
  font-weight: 600;
}

.booking-inline-summary {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  background: rgba(123, 63, 242, 0.05);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field span {
  color: #2a2342;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.booking-input,
.booking-select,
.booking-textarea {
  width: 100%;
  border: 1px solid rgba(123, 63, 242, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f1636;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
  border-color: rgba(123, 63, 242, 0.34);
  box-shadow: 0 0 0 4px rgba(123, 63, 242, 0.1);
}

.booking-textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-phone {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}

.booking-calendar,
.booking-review,
.booking-success-card {
  margin-top: 20px;
}

.booking-calendar {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(123, 63, 242, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.booking-calendar__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #1f1636;
}

.booking-calendar__nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(123, 63, 242, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #4c1d95;
  cursor: pointer;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-calendar__weekdays span {
  color: #6b6680;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-calendar__cell {
  min-height: 54px;
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #281f44;
  font-weight: 700;
}

.booking-calendar__cell--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
}

.booking-calendar__cell.is-available {
  cursor: pointer;
  border-color: rgba(123, 63, 242, 0.16);
}

.booking-calendar__cell.is-selected {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(123, 63, 242, 0.24);
}

.booking-calendar__cell:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-calendar__loading {
  grid-column: 1 / -1;
  padding: 36px 12px;
  text-align: center;
  color: #615c78;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.booking-slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #231942;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.booking-slot:hover,
.booking-slot.is-selected {
  transform: translateY(-1px);
  border-color: rgba(123, 63, 242, 0.3);
  box-shadow: 0 18px 30px rgba(123, 63, 242, 0.12);
}

.booking-slot strong {
  font-size: 1rem;
}

.booking-slot span {
  color: #6b6680;
  font-size: 0.84rem;
}

.booking-review {
  display: grid;
  gap: 10px;
}

.booking-review__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 63, 242, 0.1);
}

.booking-review__row span {
  color: #615c78;
  font-weight: 600;
}

.booking-review__row strong {
  color: #231942;
  text-align: right;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.booking-footer__primary,
.booking-footer__secondary,
.booking-success-close {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-footer__primary,
.booking-success-close {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(123, 63, 242, 0.26);
}

.booking-footer__primary:disabled {
  opacity: 0.7;
  cursor: wait;
}

.booking-footer__secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(123, 63, 242, 0.12);
  color: #231942;
}

.booking-step--success {
  text-align: center;
  padding: 28px 0 8px;
}

.booking-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-step--success h3 {
  margin: 0 0 10px;
  color: #1f1636;
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.booking-step--success p {
  margin: 0 auto;
  max-width: 560px;
  color: #615c78;
}

.booking-success-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.booking-success-card div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 63, 242, 0.1);
}

.booking-success-card span {
  display: block;
  margin-bottom: 6px;
  color: #6b6680;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-success-card strong {
  color: #231942;
  font-size: 1rem;
}

.booking-success-close {
  margin-top: 24px;
}

/* ================================================================
   BOOKING PAGE
   Dedicated appointment page layout using the same visual language.
   ================================================================ */

.booking-page-body {
  background:
    radial-gradient(circle at top, rgba(123, 63, 242, 0.12), transparent 40%),
    linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);
}

.booking-page {
  min-height: calc(100vh - 84px);
  padding: 28px 16px 64px;
}

.booking-page__container,
.booking-page__wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.booking-page__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(123, 63, 242, 0.08);
  border: 1px solid rgba(123, 63, 242, 0.16);
  color: #4c1d95;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-page__title {
  margin: 0 0 18px;
  color: #1f1636;
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.booking-page__stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.booking-stepper__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(123, 63, 242, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(35, 25, 66, 0.72);
}

.booking-stepper__item span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(123, 63, 242, 0.08);
  font-weight: 800;
}

.booking-stepper__item strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-stepper__item.is-active {
  border-color: rgba(123, 63, 242, 0.26);
  background: rgba(123, 63, 242, 0.08);
  color: #231942;
  box-shadow: 0 10px 24px rgba(123, 63, 242, 0.1);
}

.booking-stepper__item.is-complete {
  border-color: rgba(22, 163, 74, 0.16);
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
}

.booking-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.booking-card h2 {
  margin: 0 0 8px;
  color: #1f1636;
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
}

.booking-card p {
  margin: 0 0 18px;
  color: #615c78;
}

.booking-group + .booking-group {
  margin-top: 24px;
}

.booking-group h3 {
  margin: 0 0 12px;
  color: #3b2f5b;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.08);
  color: #231942;
  text-align: left;
  cursor: pointer;
}

.booking-choice.is-selected {
  border-color: rgba(123, 63, 242, 0.32);
  box-shadow: 0 24px 36px rgba(123, 63, 242, 0.14);
  transform: translateY(-1px);
}

.booking-choice__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.09);
  color: #6d28d9;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-choice strong {
  font-size: 1.1rem;
}

.booking-choice p {
  margin: 0;
  line-height: 1.55;
}

.booking-choice__price {
  margin-top: auto;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f1636;
}

.booking-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: rgba(254, 242, 242, 0.94);
  color: #991b1b;
  font-weight: 600;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field span {
  color: #2a2342;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.booking-input,
.booking-select,
.booking-textarea {
  width: 100%;
  border: 1px solid rgba(123, 63, 242, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f1636;
  font: inherit;
  padding: 14px 16px;
  outline: none;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
  border-color: rgba(123, 63, 242, 0.34);
  box-shadow: 0 0 0 4px rgba(123, 63, 242, 0.1);
}

.booking-textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-phone {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}

.booking-calendar {
  margin-top: 20px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(123, 63, 242, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.booking-calendar__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #1f1636;
}

.booking-calendar__nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(123, 63, 242, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #4c1d95;
  cursor: pointer;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.booking-calendar__weekdays span {
  color: #6b6680;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-calendar__cell {
  min-height: 54px;
  border: 1px solid rgba(123, 63, 242, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #281f44;
  font-weight: 700;
}

.booking-calendar__cell--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.25;
}

.booking-calendar__cell.is-available {
  cursor: pointer;
  border-color: rgba(123, 63, 242, 0.16);
}

.booking-calendar__cell.is-selected {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(123, 63, 242, 0.24);
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.booking-slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(123, 63, 242, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #231942;
  text-align: left;
  cursor: pointer;
}

.booking-slot.is-selected {
  border-color: rgba(123, 63, 242, 0.3);
  box-shadow: 0 18px 30px rgba(123, 63, 242, 0.12);
}

.booking-slot strong {
  font-size: 1rem;
}

.booking-slot span,
.booking-success-note,
.booking-empty,
.booking-selected-date {
  color: #615c78;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.booking-back,
.booking-continue,
.booking-success-home {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-back {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(123, 63, 242, 0.12);
  color: #231942;
}

.booking-continue,
.booking-success-home {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(123, 63, 242, 0.26);
  text-decoration: none;
}

.booking-review {
  display: grid;
  gap: 10px;
}

.booking-review__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 63, 242, 0.1);
}

.booking-review__row span {
  color: #615c78;
  font-weight: 600;
}

.booking-review__row strong {
  color: #231942;
  text-align: right;
}

.booking-card--success {
  text-align: center;
}

.booking-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-success-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.booking-success-grid div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 63, 242, 0.1);
}

.booking-success-grid span {
  display: block;
  margin-bottom: 6px;
  color: #6b6680;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-success-grid strong {
  color: #231942;
}

.booking-loading {
  padding: 48px 0;
  text-align: center;
  color: #615c78;
}

@media (max-width: 900px) {
  .booking-page__stepper,
  .booking-grid,
  .booking-slot-grid,
  .booking-success-grid,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-page {
    padding-top: 18px;
  }

  .booking-page__wrap,
  .booking-card {
    width: 100%;
  }

  .booking-phone {
    grid-template-columns: 1fr;
  }

  .booking-actions,
  .booking-review__row {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-review__row strong {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .booking-service-grid,
  .booking-slot-grid,
  .booking-success-card,
  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-modal {
    padding: 16px;
  }

  .booking-shell {
    padding: 22px;
  }

  .booking-shell__header {
    flex-direction: column;
    padding-right: 54px;
  }

  .booking-shell__meta {
    justify-content: flex-start;
  }

  .booking-progress {
    grid-template-columns: 1fr;
  }

  .booking-phone {
    grid-template-columns: 1fr;
  }

  .booking-review__row,
  .booking-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-review__row strong {
    text-align: left;
  }
}

/* ================================================================
   CURRENCY SWITCHER
   Premium pill-shaped floating button (bottom-right) + dropdown.
   Uses existing dark/glass design tokens. No other styles changed.
   ================================================================ */

/* -- Wrapper --------------------------------------------------- */
.currency-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* -- Pill trigger ---------------------------------------------- */
.cs-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1.5px solid rgba(123, 63, 242, 0.3);
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 10px 24px rgba(17, 24, 39, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 18px rgba(123, 63, 242, 0.14);
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 200ms cubic-bezier(.16, 1, .3, 1),
    box-shadow   200ms cubic-bezier(.16, 1, .3, 1),
    background   200ms cubic-bezier(.16, 1, .3, 1),
    transform    120ms cubic-bezier(.16, 1, .3, 1),
    filter       200ms cubic-bezier(.16, 1, .3, 1);
}

.cs-trigger:hover,
.cs-trigger:focus-visible {
  border-color: rgba(123, 63, 242, 0.5);
  background: #ffffff;
  box-shadow:
    0 14px 30px rgba(17, 24, 39, 0.16),
    0 0 0 1px rgba(123, 63, 242, 0.08),
    0 0 22px rgba(123, 63, 242, 0.2);
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.01);
}

.cs-trigger:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    0 8px 18px rgba(17, 24, 39, 0.12),
    0 0 14px rgba(123, 63, 242, 0.14);
}

/* Flag image inside the trigger button */
.cs-trigger-flag {
  display: block;
  width: 30px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(123, 63, 242, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* Currency code text e.g. "AED" / "INR" / "USD" */
.cs-trigger-code {
  font-family: var(--font-family-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231942;
  user-select: none;
  line-height: 1;
}

/* Small chevron arrow */
.cs-trigger-chevron {
  width: 12px;
  height: 7px;
  color: rgba(91, 33, 182, 0.76);
  flex-shrink: 0;
  margin-left: 2px;
  transition:
    transform 200ms cubic-bezier(.16, 1, .3, 1),
    color     200ms cubic-bezier(.16, 1, .3, 1);
}

/* Chevron rotates when dropdown is open */
.cs-trigger[aria-expanded="true"] .cs-trigger-chevron {
  transform: rotate(180deg);
  color: rgba(91, 33, 182, 0.96);
}

/* -- Dropdown panel -------------------------------------------- */
.cs-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  min-width: 198px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(123, 63, 242, 0.2);
  border-radius: 18px;
  box-shadow:
    0 18px 36px rgba(17, 24, 39, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.75),
    0 0 24px rgba(123, 63, 242, 0.12);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.97);
  transform-origin: bottom right;
  transition:
    opacity   320ms cubic-bezier(.16, 1, .3, 1),
    transform 320ms cubic-bezier(.16, 1, .3, 1);
}

.cs-dropdown--open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* -- Dropdown option rows -------------------------------------- */
.cs-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 12px;
  color: #312e81;
  font-family: var(--font-family-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background   120ms linear,
    color        120ms linear,
    border-color 120ms linear,
    box-shadow   120ms linear;
}

.cs-option:hover,
.cs-option:focus-visible {
  background: rgba(123, 63, 242, 0.08);
  border-color: rgba(123, 63, 242, 0.14);
  color: #231942;
  box-shadow: 0 6px 14px rgba(123, 63, 242, 0.08);
}

.cs-option--active {
  background: rgba(123, 63, 242, 0.12);
  border-color: rgba(123, 63, 242, 0.2);
  color: #4c1d95;
}

.cs-option--active:hover {
  background: rgba(123, 63, 242, 0.16);
  color: #4c1d95;
}

/* Flag image inside dropdown rows */
.cs-opt-flag {
  display: block;
  width: 30px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(123, 63, 242, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

/* Currency code inside dropdown rows e.g. "INR" */
.cs-opt-code {
  font-weight: 700;
  font-size: 0.875rem;
  color: inherit;
  flex-shrink: 0;
  min-width: 34px;
}

/* Full currency name e.g. "- Indian Rupee" */
.cs-opt-name {
  color: rgba(49, 46, 129, 0.64);
  font-size: 0.75rem;
  font-weight: 400;
}

.cs-option--active .cs-opt-name {
  color: rgba(76, 29, 149, 0.8);
}

/* -- Mobile ---------------------------------------------------- */
@media (max-width: 576px) {
  .currency-switcher {
    bottom: 16px;
    right: 16px;
  }

  .cs-trigger {
    min-height: 48px;
    padding: 0 12px;
    gap: 7px;
  }

  .cs-trigger-flag,
  .cs-opt-flag {
    width: 28px;
    height: 20px;
  }

  .cs-trigger-code {
    font-size: 0.875rem;
  }

  .cs-dropdown {
    min-width: 184px;
  }
}
