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

:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-accent: #f5f5f5;
  --color-gold: #d4af37;
  --color-card-bg: #0a0a0a;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Starfield Background */
.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Hero Section Updates */
.hero {
  position: relative;
  z-index: 10;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

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

.intro {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.intro-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-text);
}

.sparkle {
  display: inline-block;
  font-size: 2rem;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-description {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.75;
}

.social-proof {
  display: flex;
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: min-content;
  height: min-content;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.avatars {
  display: flex;
  margin-right: 0.5rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  margin-left: -15px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stars {
  color: var(--color-gold);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.member-count {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  position: relative;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.phone-frame {
  width: 100%;
  height: auto;
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.phone-content {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.mystical-bg {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 92, 246, 0.3), transparent);
  filter: blur(80px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* Testimonial Section Updates */
.testimonial-section {
  position: relative;
  z-index: 10;
  padding: 5rem 5%;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 950px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 4rem;
  backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease-out;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-size: cover;
  background-position: center;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
}

.author-location {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* As Seen On Section Updates */
.as-seen-on {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 5% 5rem;
}

.as-seen-on h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.social-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-logo:hover {
  opacity: 1;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tiktok-icon {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-handle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Features Section Updates */
.features-section {
  position: relative;
  z-index: 10;
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-image {
  position: relative;
}

.features-content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
}

.features-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  line-height: 1.75;
}

.features-grid {
  display: grid;
  gap: 2.5rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}

.feature-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.feature-example {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

/* Responsive Updates */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 5% 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .social-proof {
    justify-content: center;
  }

  .phone-mockup {
    max-width: 450px;
  }

  .hero-image-card {
    width: 380px !important;
    height: 480px !important;
  }

  .features-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-content {
    text-align: center;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

/* Mobile Menu Responsive Styles */
@media (max-width: 768px) {
  /* Header & Navigation */
  .header-inner {
    padding: 16px 20px;
    gap: 16px;
    justify-content: space-between;
  }

  .header-logo-text {
    font-size: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 5% 2rem;
  }

  .hero-inner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero h1 .sparkle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .intro {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .intro .hero-avatar {
    width: 36px;
    height: 36px;
  }

  .social-proof {
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.75rem;
  }

  .avatars {
    margin-right: 0.5rem;
  }

  .avatar {
    width: 48px;
    height: 48px;
    margin-left: -10px;
  }

  .stars {
    font-size: 1.1rem;
  }

  .member-count {
    font-size: 0.95rem;
  }

  .phone-mockup {
    max-width: 100%;
    width: 100%;
  }

  .phone-frame {
    padding: 1rem;
    border-radius: 25px;
  }

  .phone-content {
    border-radius: 20px;
  }

  .hero-image-card {
    width: 100% !important;
    height: auto !important;
    max-width: 320px;
    aspect-ratio: 9/16;
  }

  .mystical-bg {
    width: 300px;
    height: 300px;
    top: -30px;
    right: -30px;
  }

  /* AS SEEN ON Section */
  .as-seen-on-section {
    padding: 40px 20px 60px;
    overflow-x: hidden;
  }

  .as-seen-on-title {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .logo-carousel-container {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
  }

  .logo-carousel {
    display: flex;
    gap: 38px;
    width: fit-content;
    padding: 0;
    animation: scroll-logos 30s linear infinite;
  }

  .logo-item {
    flex-shrink: 0;
    width: 100px;
    height: 60px;
  }

  /* Testimonial Section */
  .testimonial-section {
    padding: 3rem 5%;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .testimonial-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  /* Features Section */
  .features-section {
    padding: 4rem 5%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-content {
    text-align: center;
  }

  .features-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .features-intro {
    font-size: 0.95rem;
  }

  .features-grid {
    gap: 2rem;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .feature-icon {
    margin: 0;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .feature-example {
    font-size: 0.85rem;
    padding-left: 0.75rem;
  }

  /* Bottom Container */
  .bottom-container {
    padding: 0;
  }

  .happy-clients-section {
    padding: 40px 20px;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .happy-clients-photos {
    justify-content: center;
  }

  .happy-clients-text {
    align-items: center;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }

  .header-logo {
    width: 100px;
    height: 35px;
  }

  .hero {
    padding: 1.5rem 4% 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .intro {
    font-size: 0.85rem;
  }

  .intro .hero-avatar {
    width: 32px;
    height: 32px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    margin-left: -8px;
  }

  .stars {
    font-size: 1rem;
  }

  .member-count {
    font-size: 0.85rem;
  }

  .phone-frame {
    padding: 0.75rem;
  }

  .phone-content {
    border-radius: 18px;
  }

  .hero-image-card {
    max-width: 280px;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-title {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .features-content h2 {
    font-size: 1.75rem;
  }

  .logo-item {
    width: 80px;
    height: 50px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 40px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  /* Video Carousel Mobile */
  .video-container {
    min-width: 280px;
    max-width: 100%;
  }

  /* Capabilities, Services, Pricing Cards Mobile */
  .capabilities-grid,
  .services-cards,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
}

/* HEADER - Duplicate removed, using styles from "Extracted from test.html" section below */

.header-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Ensure header appears above starfield */
.site-header {
  position: relative;
  z-index: 100;
}

/* HERO */

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.intro-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.intro-title {
  font-weight: 600;
}

.intro-sub {
  font-size: 14px;
  color: #b5b5b5;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
}

.hero-title .italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.sparkles {
  font-size: 28px;
  margin: 12px 0 24px;
}

.hero-text {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: #b0b0b0;
}

/* HERO RIGHT */

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top, #1a1a1a, #000);
}

.message-bubble {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #1f1f1f;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}


/* Extracted from test.html */
/* Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        border-bottom: 1px solid rgb(29, 29, 32);
        backdrop-filter: blur(6px);
        background-color: rgba(0, 0, 0, 0.2);
        padding: 0;
    }

    .header-inner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 16px 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }

    @media (max-width: 768px) {
        .header-inner {
            padding: 16px 20px;
            gap: 16px;
        }
    }

    .header-logo-text {
        font-family: var(--font-body);
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        text-decoration: none;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .header-logo-text .logo-dot {
        color: #d66bff;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        justify-content: center;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 375px;
        height: 100vh;
        background: #000000;
        display: flex;
        flex-direction: column;
        padding: 0;
        transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-overlay.active .mobile-menu {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.95);
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(10px);
    }

    .mobile-menu-logo {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .mobile-menu-close:active {
        transform: rotate(90deg) scale(0.95);
    }

    .mobile-menu-close:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }

    /* Mobile Menu Content */
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        padding: 32px 24px 24px;
        gap: 8px;
        flex: 1;
    }

    .mobile-nav-link {
        width: 100%;
        padding: 18px 16px;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Instrument Sans', sans-serif;
        font-size: 18px;
        font-weight: 500;
        border-radius: 12px;
        display: block;
        transition: all 0.2s ease;
        text-align: left;
    }

    .mobile-nav-link:hover {
        background-color: rgba(255, 255, 255, 0.08);
        transform: translateX(4px);
    }

    .mobile-nav-link:active {
        background-color: rgba(255, 255, 255, 0.12);
    }

    .mobile-nav-link:focus {
        outline: 2px solid rgba(244, 197, 66, 0.5);
        outline-offset: 2px;
    }

    .mobile-menu-cta {
      width: 100% !important;
      max-width: 100% !important;
      padding: 18px 24px !important;
      background: linear-gradient(135deg, #f4c542 0%, #d4a028 100%) !important;
      color: #0a0a0a !important;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px !important;
      font-weight: 700;
      border-radius: 14px;
      text-align: center;
      margin-top: auto !important;
      margin-bottom: 0 !important;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: block !important;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 20px rgba(244, 197, 66, 0.4),
                  inset 0 1px 0 rgba(255, 255, 255, 0.3);
      letter-spacing: 0.02em;
      line-height: 1.4;
  }
    
    .mobile-menu-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(244, 197, 66, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-cta:active {
        transform: translateY(0);
    }

    .mobile-menu-cta:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 3px;
    }

    @media (max-width: 768px) {
        .desktop-nav,
        .desktop-cta {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        /* Prevent scrolling when menu is open */
        body.menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
    }

    /* Tablet responsive adjustments */
    @media (min-width: 376px) and (max-width: 768px) {
        .mobile-menu {
            max-width: 400px;
        }

        .mobile-menu-content {
            padding: 36px 28px 28px;
        }

        .mobile-nav-link {
            font-size: 19px;
            padding: 20px 18px;
        }
    }


    .nav-link {
        background-color: rgba(19, 19, 21, 0);
        border-radius: 12px;
        padding: 8px 12px;
        color: rgb(148, 150, 157);
        text-decoration: none;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        transition: color 0.2s, background-color 0.2s;
    }

    .nav-link:hover {
        color: rgb(255, 255, 255);
        background-color: rgba(19, 19, 21, 0.5);
    }

    .header-cta {
        background-color: rgb(255, 255, 255);
        border-radius: 12px;
        padding: 16px 24px;
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        transition: transform 0.2s, box-shadow 0.2s;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .header-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 768px) {
        .header-cta {
            padding: 16px 24px;
            font-size: 16px;
        }
    }

    /* Registration Form Styles - Mobile-First (Phase 1: Base 320px) */
    
    /* ============================================
       PHASE 1: BASE MOBILE STYLES (320px+)
       Mobile-first approach - optimized for smallest screens
       ============================================ */
    
    .registration-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        padding: 20px;
    }

    .registration-modal-overlay.active {
        display: flex;
    }

    /* Base modal content - optimized for 320px screens */
    .registration-modal-content {
        background: #1d1d20;
        width: 100%;
        max-width: 100%;
        padding: 20px;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        border: 2px solid #3d3d3d;
        border-radius: 16px;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset,
            0 4px 12px rgba(0, 0, 0, 0.4);
        box-sizing: border-box;
        margin: auto;
    }

    /* Close button - mobile optimized */
    .registration-close-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.2s;
        z-index: 10001;
        pointer-events: auto;
        box-sizing: border-box;
    }

    .registration-close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Welcome header - mobile base */
    .registration-welcome-header {
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .registration-welcome-icon {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1;
    }

    .registration-welcome-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #fff;
        line-height: 1.3;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-welcome-subtitle {
        color: #ababab;
        font-size: 14px;
        line-height: 1.5;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Progress bar - mobile base */
    .registration-progress-bar {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-progress-step {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-radius: 50%;
        background: #3d3d3d;
        transition: background 0.3s;
        box-sizing: border-box;
    }

    .registration-progress-step.active {
        background: #7149eb;
    }

    /* Form steps - mobile base */
    .registration-form-step {
        display: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-form-step.active {
        display: block;
    }

    .registration-form-step h2 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #fff;
        line-height: 1.3;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-form-step p {
        color: #ababab;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.5;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Form groups - mobile base */
    .registration-form-group {
        margin-bottom: 20px;
        text-align: left;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-form-group label {
        display: block;
        margin-bottom: 8px;
        color: #f5f5f8;
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Form inputs - mobile base (320px+) */
    .registration-form-group input:not([type="checkbox"]),
    .registration-form-group select,
    .registration-form-group textarea {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        min-height: 48px;
        background: #09090a;
        border: 1px solid #3d3d3d;
        border-radius: 12px;
        color: #fff;
        font-size: 16px;
        font-family: inherit;
        transition: border-color 0.2s;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    .registration-form-group input:not([type="checkbox"])::placeholder,
    .registration-form-group select::placeholder,
    .registration-form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .registration-form-group input:not([type="checkbox"]):focus,
    .registration-form-group select:focus,
    .registration-form-group textarea:focus {
        outline: none;
        border-color: #7149eb;
        background: #0a0a0b;
    }

    /* Field hint and error messages - mobile base */
    .registration-field-hint {
        display: block;
        margin-top: 6px;
        font-size: 12px;
        color: #6b6b6b;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-error-message {
        color: #ff4444;
        font-size: 12px;
        margin-top: 6px;
        display: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-error-message.active {
        display: block;
    }

    /* Place dropdown - mobile base */
    .registration-place-dropdown {
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-place-dropdown input {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        min-height: 48px;
        background: #09090a;
        border: 1px solid #3d3d3d;
        border-radius: 12px;
        color: #fff;
        font-size: 16px;
        font-family: inherit;
        box-sizing: border-box;
    }

    .registration-place-dropdown input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .registration-place-dropdown input:focus {
        outline: none;
        border-color: #7149eb;
        background: #0a0a0b;
    }

    .registration-place-dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #09090a;
        border: 1px solid #3d3d3d;
        border-radius: 10px;
        margin-top: 5px;
        max-height: 200px;
        overflow-y: auto;
        display: none;
        z-index: 1000;
    }

    .registration-place-dropdown-list.active {
        display: block;
    }

    .registration-place-dropdown-item {
        padding: 12px 14px;
        cursor: pointer;
        color: #fff;
        transition: background 0.2s;
    }

    .registration-place-dropdown-item:hover {
        background: #1d1d20;
    }

    /* Form actions - mobile base */
    .registration-form-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Buttons - mobile base */
    .registration-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        min-height: 48px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s;
        font-family: inherit;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .registration-btn-primary {
        background: #fff;
        color: #040313;
    }

    .registration-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

    .registration-btn-primary:active {
        transform: translateY(0);
    }

    .registration-btn-primary:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .registration-btn-secondary {
        background: #3d3d3d;
        color: #fff;
    }

    .registration-btn-secondary:hover {
        background: #4d4d4d;
    }

    .registration-btn-secondary:active {
        background: #2d2d2d;
    }

    .registration-btn-secondary:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .registration-loading,
    .registration-success-message {
        display: none;
        text-align: center;
        padding: 40px 20px;
    }

    .registration-loading.active,
    .registration-success-message.active {
        display: block;
    }

    .registration-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid #3d3d3d;
        border-top-color: #7149eb;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }

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

    .registration-loading p {
        color: #fff;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .registration-loading-subtitle {
        color: #ababab;
        font-size: 14px;
    }

    .registration-success-icon {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .registration-success-message h2 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #fff;
    }

    .registration-success-message p {
        color: #ababab;
        font-size: 16px;
    }

    /* ============================================
       PHASE 2: STANDARD MOBILE (360px+)
       Optimized for 360×800 (most common mobile size)
       ============================================ */
    
    @media (min-width: 360px) {
        /* Modal content - increased padding */
        .registration-modal-content {
            padding: 24px;
        }

        /* Typography enhancements */
        .registration-welcome-title {
            font-size: 20px;
        }

        .registration-welcome-subtitle {
            font-size: 15px;
        }

        .registration-form-step h2 {
            font-size: 20px;
        }

        .registration-form-step p {
            font-size: 15px;
        }

        /* Spacing enhancements */
        .registration-welcome-header {
            margin-bottom: 24px;
        }

        .registration-progress-bar {
            margin-bottom: 24px;
        }

        .registration-form-group {
            margin-bottom: 24px;
        }

        .registration-form-actions {
            margin-top: 24px;
            gap: 14px;
        }

        .registration-field-actions {
            margin-top: 24px;
            gap: 14px;
        }

        /* Close button - slightly larger */
        .registration-close-btn {
            top: 10px;
            right: 10px;
            width: 36px;
            height: 36px;
            font-size: 26px;
        }
    }

    /* ============================================
       PHASE 3: LARGE MOBILE (480px+)
       Optimized for larger smartphones (412×915, 430×932, etc.)
       ============================================ */
    
    @media (min-width: 480px) {
        /* Modal content - constrained width with more padding */
        .registration-modal-content {
            padding: 32px;
            max-width: 480px;
            margin: 0 auto;
        }

        /* Typography enhancements - larger for better readability */
        .registration-welcome-title {
            font-size: 22px;
        }

        .registration-welcome-subtitle {
            font-size: 16px;
        }

        .registration-form-step h2 {
            font-size: 22px;
        }

        .registration-form-step p {
            font-size: 16px;
        }

        .registration-form-group label {
            font-size: 15px;
        }

        /* Spacing enhancements - more comfortable spacing */
        .registration-welcome-header {
            margin-bottom: 28px;
        }

        .registration-progress-bar {
            margin-bottom: 28px;
        }

        .registration-form-group {
            margin-bottom: 28px;
        }

        .registration-form-actions {
            margin-top: 28px;
            gap: 16px;
            flex-direction: row; /* Side by side on larger screens */
        }

        .registration-field-actions {
            margin-top: 28px;
            gap: 16px;
            flex-direction: row; /* Side by side on larger screens */
        }

        /* Buttons - can be side by side now */
        .registration-btn {
            flex: 1;
            width: auto;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            flex: 1;
            width: auto;
        }

        /* Close button - standard size */
        .registration-close-btn {
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            font-size: 28px;
        }

        /* Welcome icon - larger */
        .registration-welcome-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }
    }

    /* ============================================
       PHASE 4: TABLET (768px+)
       Optimized for tablets (768×1024 - 17.59% market share)
       ============================================ */
    
    @media (min-width: 768px) {
        /* Modal content - tablet optimized sizing */
        .registration-modal-content {
            padding: 40px;
            max-width: 600px;
            border-radius: 20px;
        }

        /* Typography enhancements - tablet sizes */
        .registration-welcome-title {
            font-size: 24px;
        }

        .registration-welcome-subtitle {
            font-size: 17px;
        }

        .registration-form-step h2 {
            font-size: 24px;
        }

        .registration-form-step p {
            font-size: 17px;
            margin-bottom: 30px;
        }

        .registration-form-group label {
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* Spacing enhancements - tablet comfortable spacing */
        .registration-welcome-header {
            margin-bottom: 30px;
        }

        .registration-progress-bar {
            margin-bottom: 30px;
        }

        .registration-form-group {
            margin-bottom: 30px;
        }

        .registration-form-actions {
            margin-top: 30px;
            gap: 18px;
        }

        .registration-field-actions {
            margin-top: 30px;
            gap: 18px;
        }

        /* Buttons - tablet optimized */
        .registration-btn {
            padding: 18px 28px;
            font-size: 17px;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            padding: 18px 28px;
            font-size: 17px;
        }

        /* Input fields - slightly larger padding */
        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select,
        .registration-form-group textarea {
            padding: 16px 18px;
        }

        /* Close button - tablet size */
        .registration-close-btn {
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            font-size: 32px;
        }

        /* Welcome icon - tablet size */
        .registration-welcome-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        /* Progress steps - slightly larger */
        .registration-progress-step {
            width: 12px;
            height: 12px;
            min-width: 12px;
            min-height: 12px;
        }
    }

    /* ============================================
       PHASE 5: DESKTOP (1024px+)
       Optimized for standard desktops (1366×768, 1920×1080)
       ============================================ */
    
    @media (min-width: 1024px) {
        /* Modal content - desktop optimized sizing */
        .registration-modal-content {
            max-width: 500px;
            padding: 40px;
        }

        /* Typography enhancements - desktop sizes */
        .registration-welcome-title {
            font-size: 28px;
        }

        .registration-welcome-subtitle {
            font-size: 18px;
        }

        .registration-form-step h2 {
            font-size: 26px;
        }

        .registration-form-step p {
            font-size: 18px;
            margin-bottom: 32px;
        }

        .registration-form-group label {
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* Spacing enhancements - desktop comfortable spacing */
        .registration-welcome-header {
            margin-bottom: 32px;
        }

        .registration-progress-bar {
            margin-bottom: 32px;
        }

        .registration-form-group {
            margin-bottom: 32px;
        }

        .registration-form-actions {
            margin-top: 32px;
            gap: 20px;
        }

        .registration-field-actions {
            margin-top: 32px;
            gap: 20px;
        }

        /* Buttons - desktop optimized */
        .registration-btn {
            padding: 18px 32px;
            font-size: 17px;
            min-width: 140px;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            padding: 18px 32px;
            font-size: 17px;
            min-width: 140px;
        }

        /* Input fields - desktop padding */
        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select,
        .registration-form-group textarea {
            padding: 16px 20px;
        }

        /* Welcome icon - desktop size */
        .registration-welcome-icon {
            font-size: 52px;
            margin-bottom: 16px;
        }

        /* Progress steps - desktop size */
        .registration-progress-step {
            width: 12px;
            height: 12px;
        }
    }

    /* ============================================
       PHASE 6: LARGE DESKTOP (1280px+)
       Optimized for large desktops (1920×1080, 2560×1440)
       ============================================ */
    
    @media (min-width: 1280px) {
        /* Modal content - large desktop can be slightly wider */
        .registration-modal-content {
            max-width: 520px;
        }

        /* Typography - final desktop sizes */
        .registration-welcome-title {
            font-size: 30px;
        }

        .registration-welcome-subtitle {
            font-size: 19px;
        }

        .registration-form-step h2 {
            font-size: 28px;
        }

        .registration-form-step p {
            font-size: 19px;
        }

        /* Spacing - final desktop spacing */
        .registration-welcome-header {
            margin-bottom: 36px;
        }

        .registration-progress-bar {
            margin-bottom: 36px;
        }

        .registration-form-group {
            margin-bottom: 32px;
        }

        .registration-form-actions {
            margin-top: 36px;
            gap: 22px;
        }

        .registration-field-actions {
            margin-top: 36px;
            gap: 22px;
        }

        /* Buttons - large desktop */
        .registration-btn {
            padding: 20px 36px;
            font-size: 18px;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            padding: 20px 36px;
            font-size: 18px;
        }

        /* Welcome icon - large desktop */
        .registration-welcome-icon {
            font-size: 56px;
            margin-bottom: 18px;
        }
    }

    @media (max-width: 768px) {
        /* Prevent body overflow when modal is open */
        body.registration-modal-open {
            overflow-x: hidden !important;
            max-width: 100vw !important;
            position: fixed;
            width: 100%;
        }

        html.registration-modal-open {
            overflow-x: hidden !important;
            max-width: 100vw !important;
        }

        .registration-modal-overlay {
            padding: 20px;
            align-items: center;
            overflow-x: hidden !important;
            max-width: 100vw !important;
            width: 100vw !important;
        }

        .registration-modal-content {
            max-width: calc(100% - 40px);
            width: 100%;
            max-height: 90vh;
            border-radius: 16px;
            padding: 20px !important;
            margin: 0 auto;
            box-sizing: border-box !important;
            overflow-x: hidden !important;
            position: relative;
            border: 2px solid #3d3d3d;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 4px 12px rgba(0, 0, 0, 0.4);
        }

        /* Ensure all children respect container - aggressive */
        .registration-modal-content > *,
        .registration-modal-content * {
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Prevent any element from exceeding container */
        .registration-modal-content input,
        .registration-modal-content select,
        .registration-modal-content textarea,
        .registration-modal-content button,
        .registration-modal-content div {
            max-width: 100% !important;
            width: auto !important;
        }

        .registration-modal-content input[type="text"],
        .registration-modal-content input[type="email"],
        .registration-modal-content input[type="tel"],
        .registration-modal-content input[type="date"],
        .registration-modal-content input[type="time"],
        .registration-modal-content select {
            width: 100% !important;
            max-width: 100% !important;
        }

        /* Force all form groups to fit */
        .registration-form-group,
        .registration-form-step,
        .registration-welcome-header {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-modal-overlay {
            overflow-x: hidden !important;
            padding: 0 !important;
        }

        /* Force all form elements to respect container width */
        .registration-modal-content select[style*="width"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-modal-content input[style*="width"],
        .registration-modal-content select[style*="width"],
        .registration-modal-content textarea[style*="width"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Override any inline flex styles that might cause overflow */
        .registration-phone-wrapper[style*="flex"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-close-btn {
            top: 8px;
            right: 8px;
            width: 32px;
            height: 32px;
            font-size: 24px;
        }

        .registration-welcome-header {
            margin-bottom: 20px;
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .registration-welcome-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .registration-welcome-title {
            font-size: 18px; /* Reduced from 20px */
            margin-bottom: 6px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .registration-welcome-subtitle {
            font-size: 14px; /* Reduced from 16px */
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .registration-progress-bar {
            margin-bottom: 20px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        /* Field progress indicator */
        .registration-field-progress {
            display: block;
            text-align: center;
            font-size: 14px; /* Reduced from 16px */
            color: #ababab;
            margin-bottom: 20px;
            font-weight: 500;
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .registration-form-step {
            width: 100%;
            box-sizing: border-box;
        }

        .registration-form-step h2 {
            font-size: 18px; /* Reduced from 20px */
            margin-bottom: 6px;
            width: 100%;
            padding: 0;
            max-width: 100%;
            box-sizing: border-box;
            color: #fff !important; /* White text */
        }

        .registration-form-step p {
            font-size: 14px; /* Reduced from 16px */
            margin-bottom: 20px;
            width: 100%;
            padding: 0;
            max-width: 100%;
            box-sizing: border-box;
            color: rgba(255, 255, 255, 0.7) !important; /* Light white like the image */
        }

        /* Mobile: Hide all fields except active one */
        .registration-form-step.mobile-mode .registration-form-group:not(.active-field) {
            display: none;
        }

        .registration-form-step.mobile-mode .registration-form-group.active-field {
            display: block;
            animation: fadeInField 0.3s ease-in;
        }

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

        .registration-form-group {
            margin-bottom: 20px; /* Reduced from 24px */
            width: 100%;
            box-sizing: border-box;
            padding: 0;
            max-width: 100%;
        }

        .registration-form-group label {
            font-size: 15px; /* Slightly reduced */
            margin-bottom: 10px;
            display: block;
            width: 100%;
            padding: 0;
            font-weight: 500;
            max-width: 100%;
            box-sizing: border-box;
            color: #fff !important; /* White text like the image */
        }

        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select,
        .registration-form-group textarea {
            padding: 14px 16px !important;
            font-size: 16px !important; /* 16-20px range */
            min-height: 48px; /* At least 48x48dp tappable */
            width: 100% !important;
            box-sizing: border-box !important;
            max-width: 100% !important;
            margin: 0 !important;
            background: rgba(26, 31, 58, 0.8) !important; /* Dark blue like the image */
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px !important; /* More rounded */
            color: #fff !important;
        }

        .registration-form-group input::placeholder {
            color: rgba(255, 255, 255, 0.6) !important; /* Light white placeholder */
        }

        .registration-form-group input:focus,
        .registration-form-group select:focus {
            border-color: rgba(255, 255, 255, 0.3) !important;
            background: rgba(26, 31, 58, 0.9) !important;
        }

        /* Phone number layout - side by side on tablet/desktop */
        .registration-phone-wrapper {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 10px;
            width: 100%;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Override inline styles on phone inputs */
        #registrationPhonePrefix,
        .registration-phone-prefix {
            width: 120px !important;
            max-width: 120px !important;
            min-width: 100px !important;
            flex-shrink: 0 !important;
            box-sizing: border-box !important;
            padding: 14px 16px !important;
            min-height: 48px !important;
            background: rgba(26, 31, 58, 0.8) !important; /* Dark blue */
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px !important;
            color: #fff !important;
        }

        #registrationPhone,
        .registration-phone-input {
            flex: 1 !important;
            min-width: 0 !important;
            max-width: none !important;
            box-sizing: border-box !important;
            padding: 14px 16px !important;
            min-height: 48px !important;
            background: rgba(26, 31, 58, 0.8) !important; /* Dark blue */
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px !important;
            color: #fff !important;
        }

        #registrationPhone::placeholder,
        .registration-phone-input::placeholder {
            color: rgba(255, 255, 255, 0.6) !important;
        }

        .registration-place-dropdown {
            width: 100%;
            box-sizing: border-box;
            max-width: 100%;
        }

        .registration-place-dropdown input {
            width: 100%;
            box-sizing: border-box;
            max-width: 100%;
        }

        /* Mobile field navigation buttons */
        .registration-field-actions {
            display: flex;
            gap: 12px;
            margin-top: 40px; /* At least 40px spacing from last input */
            width: 100%;
            box-sizing: border-box;
            padding: 0;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 10px;
            font-size: 16px; /* 16-20px range */
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            min-height: 48px; /* At least 48x48dp tappable */
            box-sizing: border-box;
        }

        .registration-field-next-btn {
            background: #fff;
            color: #040313;
        }

        .registration-field-next-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .registration-field-back-btn {
            background: #3d3d3d;
            color: #fff;
        }

        .registration-field-back-btn:hover {
            background: #4d4d4d;
        }

        /* Hide desktop continue button on mobile when in mobile mode */
        .registration-form-step.mobile-mode .registration-form-actions.desktop-only {
            display: none;
        }

        .registration-form-step.mobile-mode .registration-form-actions.show-on-last-field-mobile {
            display: flex !important;
            margin-top: 40px; /* At least 40px spacing from last input */
        }

        .registration-form-step.mobile-mode .registration-form-actions.desktop-only:not(.show-on-last-field-mobile) {
            display: none !important;
        }

        /* Show/hide mobile-only elements */
        .mobile-only {
            display: none;
        }

        .desktop-only {
            display: block;
        }

        /* Desktop: Show all fields, hide mobile navigation */
        .registration-form-step:not(.mobile-mode) .registration-form-group {
            display: block !important;
        }

        .registration-form-step:not(.mobile-mode) .registration-field-actions.mobile-only {
            display: none !important;
        }

        .registration-form-step:not(.mobile-mode) .registration-field-progress.mobile-only {
            display: none !important;
        }

        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }

            .desktop-only {
                display: none;
            }

            .registration-form-actions.desktop-only {
                display: none;
            }

            /* Ensure desktop mode is off on mobile */
            .registration-form-step.mobile-mode .registration-form-group:not(.active-field) {
                display: none;
            }
        }

        /* Desktop styles - ensure all fields visible */
        @media (min-width: 769px) {
            .registration-form-step .registration-form-group {
                display: block !important;
            }

        }

    /* Checkbox styling - mobile base */
    .registration-form-group label[for*="GDPR"] {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .registration-form-group label[for*="GDPR"] input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
        margin-top: 4px;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-appearance: checkbox;
        appearance: checkbox;
        box-sizing: border-box;
    }

    .registration-form-group label[for*="GDPR"] span {
        font-size: 14px;
        line-height: 1.5;
        flex: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    }

        .registration-modal-overlay {
            overflow-x: hidden !important;
            padding: 0 !important;
        }

        /* Force all form elements to respect container width */
        .registration-modal-content select[style*="width"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-modal-content input[style*="width"],
        .registration-modal-content select[style*="width"],
        .registration-modal-content textarea[style*="width"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Override any inline flex styles that might cause overflow */
        .registration-phone-wrapper[style*="flex"] {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-close-btn {
            top: 8px;
            right: 8px;
            width: 32px;
            height: 32px;
            font-size: 24px;
        }

        .registration-welcome-header {
            margin-bottom: 16px;
            padding: 0;
        }

        .registration-welcome-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .registration-welcome-title {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .registration-welcome-subtitle {
            font-size: 13px;
        }

        .registration-progress-bar {
            margin-bottom: 16px;
        }

        .registration-form-step h2 {
            font-size: 18px;
            margin-bottom: 6px;
            width: 100%;
            padding: 0;
        }

        .registration-form-step p {
            font-size: 13px;
            margin-bottom: 16px;
            width: 100%;
            padding: 0;
        }

        /* Mobile: Hide all fields except active one */
        .registration-form-step.mobile-mode .registration-form-group:not(.active-field) {
            display: none;
        }

        .registration-form-step.mobile-mode .registration-form-group.active-field {
            display: block;
            animation: fadeInField 0.3s ease-in;
        }

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

        /* Field progress indicator */
        .registration-field-progress {
            display: block;
            text-align: center;
            font-size: 12px;
            color: #ababab;
            margin-bottom: 16px;
            font-weight: 500;
            padding: 0;
        }

        .registration-form-group {
            margin-bottom: 20px;
            width: 100%;
            box-sizing: border-box;
            padding: 0;
        }

        .registration-form-group label {
            font-size: 15px;
            margin-bottom: 8px;
            display: block;
            width: 100%;
            padding: 0;
        }

        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select,
        .registration-form-group textarea {
            padding: 12px 14px !important;
            font-size: 16px !important;
            min-height: 48px;
            width: 100% !important;
            box-sizing: border-box !important;
            max-width: 100% !important;
            margin: 0 !important;
        }

        /* Override inline styles on phone inputs */
        #registrationPhonePrefix,
        .registration-phone-prefix {
            width: 100% !important;
            max-width: 100% !important;
            flex-shrink: 1 !important;
            box-sizing: border-box !important;
            padding: 12px 14px !important;
        }

        #registrationPhone,
        .registration-phone-input {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            flex: 1 1 100% !important;
            padding: 12px 14px !important;
        }

        .registration-phone-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            flex-wrap: nowrap !important;
            gap: 10px !important;
            margin: 0 !important;
            padding: 0 !important;
            display: flex !important;
            flex-direction: row !important;
        }

        .registration-place-dropdown {
            width: 100%;
            box-sizing: border-box;
            max-width: 100%;
        }

        .registration-place-dropdown input {
            width: 100%;
            box-sizing: border-box;
            max-width: 100%;
        }

        /* Phone number layout - stack on mobile */
        .registration-phone-wrapper {
            display: flex;
            gap: 10px;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 480px) {
            .registration-phone-wrapper {
                flex-direction: column !important;
                gap: 12px !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            .registration-phone-wrapper .registration-phone-prefix,
            #registrationPhonePrefix {
                width: 100% !important;
                max-width: 100% !important;
                flex-shrink: 1 !important;
            }

            .registration-phone-wrapper .registration-phone-input,
            #registrationPhone {
                width: 100% !important;
                max-width: 100% !important;
                flex: 1 1 100% !important;
            }
        }

        /* Mobile field navigation buttons */
        .registration-field-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            width: 100%;
            box-sizing: border-box;
            padding: 0;
        }

        .registration-field-next-btn,
        .registration-field-back-btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            min-height: 48px;
            box-sizing: border-box;
        }

        .registration-field-next-btn {
            background: #fff;
            color: #040313;
        }

        .registration-field-next-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .registration-field-back-btn {
            background: #3d3d3d;
            color: #fff;
        }

        .registration-field-back-btn:hover {
            background: #4d4d4d;
        }

        /* Hide desktop continue button on mobile when in mobile mode */
        .registration-form-step.mobile-mode .registration-form-actions.desktop-only {
            display: none;
        }

        .registration-form-step.mobile-mode .registration-form-actions.show-on-last-field-mobile {
            display: flex !important;
            margin-top: 40px !important; /* At least 40px spacing from last input */
        }

        .registration-form-step.mobile-mode .registration-form-actions.desktop-only:not(.show-on-last-field-mobile) {
            display: none !important;
        }

        /* Show/hide mobile-only elements */
        .mobile-only {
            display: none;
        }

        .desktop-only {
            display: block;
        }

        /* Desktop: Show all fields, hide mobile navigation */
        .registration-form-step:not(.mobile-mode) .registration-form-group {
            display: block !important;
        }

        .registration-form-step:not(.mobile-mode) .registration-field-actions.mobile-only {
            display: none !important;
        }

        .registration-form-step:not(.mobile-mode) .registration-field-progress.mobile-only {
            display: none !important;
        }

        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }

            .desktop-only {
                display: none;
            }

            .registration-form-actions.desktop-only {
                display: none;
            }

            /* Ensure desktop mode is off on mobile */
            .registration-form-step.mobile-mode .registration-form-group:not(.active-field) {
                display: none;
            }
        /* Improve checkbox layout on mobile */
        .registration-form-group label[for*="GDPR"] {
            align-items: flex-start;
            gap: 12px;
        }

        .registration-form-group label[for*="GDPR"] input[type="checkbox"] {
            width: 20px !important;
            height: 20px !important;
            min-width: 20px !important;
            min-height: 20px !important;
            max-width: 20px !important;
            max-height: 20px !important;
            margin-top: 2px;
            flex-shrink: 0;
            cursor: pointer;
            -webkit-appearance: checkbox;
            appearance: checkbox;
        }

        .registration-form-group label[for*="GDPR"] span {
            font-size: 13px;
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            flex: 1;
            min-width: 0;
        }
    }

    /* Desktop styles - ensure all fields visible */
    @media (min-width: 769px) {
        .registration-form-step .registration-form-group {
            display: block !important;
        }
    }

    @media (max-width: 480px) {
        .registration-modal-content {
            padding: 16px 12px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-phone-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-place-dropdown {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-place-dropdown input {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-field-actions {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .registration-welcome-title {
            font-size: 20px;
        }

        .registration-form-step h2 {
            font-size: 18px;
        }

        .registration-form-group input:not([type="checkbox"]),
        .registration-form-group select {
            padding: 14px;
            font-size: 16px;
        }
    }


    /* Hero / Introduction Section */
    .hero {
        position: relative;
        /* Match Framer-like spacing: more top space under the header, tighter sides */
        padding: 120px 48px 80px; /* top | left/right | bottom */
        background: #000000;
        min-height: 50vh;
        overflow: hidden;
    }

    .hero-inner-grid {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
        gap: 72px;
        align-items: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

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

    .hero-avatar {
        width: 56px;
        height: 56px;
        border-radius: 999px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    .hero-avatar img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: inherit;
        object-fit: contain;
        object-position: center;
    }

    .hero-persona-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .hero-persona-name {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 17px;
        font-weight: 500;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.02em;
        line-height: 1.1em;
    }

    .hero-persona-role {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #ababab;
        margin: 0;
        letter-spacing: -0.02em;
        line-height: 1.1em;
    }

    .hero-heading {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 52px;
        font-weight: 500;
        color: #f5f5f8;
        margin: 0;
        letter-spacing: -0.04em;
        line-height: 1.1;
    }

    .hero-heading-italic {
        font-family: "Instrument Serif", "Instrument Serif Placeholder", serif;
        font-style: italic;
        font-weight: 400;
    }

    .hero-heading-sparkle {
        font-family: "Instrument Serif", "Instrument Serif Placeholder", serif;
    }

    .hero-body {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #ababab;
        letter-spacing: -0.02em;
        line-height: 1.6;
        margin: 8px 0 0;
        max-width: 640px;
    }

    .hero-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .hero-image-card {
        position: relative;
        width: 420px;
        height: 520px;
        border-radius: 28px;
        overflow: hidden;
        background: radial-gradient(circle at top left, #1f2937, #000000);
        border: 1px solid #374151;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    }

    .hero-image-stars {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        pointer-events: none;
    }

    .hero-image-wrapper {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        overflow: hidden;
    }

    .hero-image-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-fit: cover;
        object-position: center bottom;
    }

    .hero-message-card {
        position: absolute;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        width: 86%;
        max-width: 280px;
        padding: 12px 16px 14px;
        border-radius: 18px;
        background: rgba(31, 41, 55, 0.96);
        border: 1px solid rgba(156, 163, 175, 0.7);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    }

    .hero-message-title,
    .hero-message-subtitle,
    .hero-message-body {
        margin: 0 0 4px;
        color: #e5e7eb;
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-message-title {
        font-weight: 600;
    }

    .hero-message-subtitle {
        font-weight: 600;
        color: #fde68a;
    }

    .hero-message-body {
        color: #d1d5db;
    }

    .hero-message-notification {
        position: absolute;
        left: 16px;
        bottom: 96px;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: #22c55e;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.75);
    }

    .hero-message-notification-inner {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        background: #f9fafb;
    }

    .hero-message-notification-badge {
        position: absolute;
        top: 6px;
        right: 5px;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #ef4444;
        border: 2px solid #0b1120;
    }

    @media (max-width: 900px) {
        .hero {
            /* Mobile hero spacing similar to Framer */
            padding: 96px 20px 64px;
        }

        .hero-inner-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

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

        .hero-image-card {
            margin: 0 auto;
        }

        .hero-heading {
            font-size: 40px;
        }

        /* Logo Carousel Mobile Fix */
        .logo-carousel-container {
            overflow: hidden;
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
            -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
        }

        .logo-carousel {
            animation: scroll-logos 30s linear infinite;
            gap: 24px;
            padding: 0;
        }

        .logo-item {
            width: 100px;
            height: 50px;
        }
    }

    /* Bottom Container Section */
    .bottom-container {
        background: transparent;
        padding: 0;
        position: relative;
        z-index: 10;
    }

    /* Top Stroke */
    .top-stroke {
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    /* Happy Clients Section */
    .happy-clients-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 10;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .happy-clients-photos {
        display: flex;
        align-items: center;
        position: relative;
    }

    .client-photo {
        position: relative;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #040313;
    }

    .client-photo-offset {
        margin-left: -15px;
    }

    .client-photo > div {
        position: absolute;
        border-radius: inherit;
        inset: 0;
    }

    .client-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: inherit;
    }

    .client-badge {
        margin-left: 10px;
        padding: 6px 12px;
        background: transparent;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .badge-text {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: rgb(255, 255, 255);
        margin: 0;
        line-height: 1em;
    }

    .happy-clients-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .stars-container {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stars-svg {
        width: 82px;
        height: 15px;
        flex-shrink: 0;
    }

    .rating-number {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: rgb(255, 255, 255);
        margin: 0;
        line-height: 1.5em;
    }

    .member-count-text {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        margin: 0;
        line-height: 1.5em;
    }

    /* AS SEEN ON Section */
    .as-seen-on-section {
        padding: 10px 20px 80px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .as-seen-on-title {
        font-family: "Open Sans", "Open Sans Placeholder", sans-serif;
        text-align: center;
        font-size: 24px;
        font-weight: 800;
        color: rgb(255, 255, 255);
        margin-bottom: 40px;
        letter-spacing: -0.02em;
        line-height: 1.1em;
    }

    .logo-carousel-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
    }

    @media (max-width: 768px) {
        .logo-carousel-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            mask-image: none;
            -webkit-mask-image: none;
        }

        .logo-carousel-container::-webkit-scrollbar {
            display: none;
        }
    }

    .logo-carousel {
        display: flex;
        gap: 38px;
        width: fit-content;
        animation: scroll-logos 30s linear infinite;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 768px) {
        .logo-carousel {
            animation: scroll-logos 30s linear infinite;
            gap: 20px;
            padding: 0;
        }

        .logo-item {
            width: 90px;
            height: 50px;
        }
    }

    .logo-item {
        flex-shrink: 0;
        width: 126px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .logo-item > div {
        position: absolute;
        border-radius: inherit;
        inset: 0;
    }

    .logo-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        border-radius: inherit;
    }

    /* Testimonial Section */
    .testimonial-section {
        padding: 80px 20px;
        background: #040313;
    }

    .testimonial-inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: #1d1d20;
        border: 1px solid #3d3d3d;
        border-radius: 20px;
        padding: 40px;
    }

    .testimonial-star-container {
        display: flex;
        gap: 8px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .testimonial-star-icon {
        position: relative;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .testimonial-star-image {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: inherit;
        object-fit: cover;
        object-position: center;
    }

    .testimonial-text-container {
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonial-title {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 150%;
        text-align: center;
        color: rgb(245, 245, 248);
        margin: 0 0 20px 0;
    }

    .testimonial-title strong {
        font-weight: 700;
    }

    .testimonial-description {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 20px;
        font-style: italic;
        font-weight: 400;
        line-height: 150%;
        text-align: center;
        color: rgb(212, 212, 212);
        margin: 0;
    }

    .testimonial-description em {
        font-style: italic;
    }

    .testimonial-author-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .testimonial-avatar-wrapper {
        position: relative;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .testimonial-avatar {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: inherit;
        object-fit: cover;
        object-position: center;
    }

    .testimonial-author-info {
        flex: 1;
    }

    .testimonial-name {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        text-align: left;
        color: rgb(245, 245, 248);
        margin: 0 0 4px 0;
    }

    .testimonial-location {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        text-align: left;
        color: rgb(189, 189, 189);
        margin: 0;
    }

    /* Features Section */
    .features-section {
        padding: 100px 20px;
        background: #040313;
    }

    .features-inner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .features-container {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        gap: 50px;
        width: 100%;
        max-width: 1134px;
        margin: 0 auto;
    }

    /* Left Side: Images */
    .features-images {
        position: relative;
        width: 100%;
        max-width: 438px;
        flex-shrink: 0;
        aspect-ratio: 438 / 548;
    }

    .features-background-image,
    .features-mobile-image,
    .features-gradient-image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
    }

    .features-background-image {
        z-index: 1;
    }

    .features-mobile-image {
        z-index: 2;
    }

    .features-gradient-image {
        z-index: 3;
    }

    .features-bg-img,
    .features-mobile-img,
    .features-gradient-img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: inherit;
        object-position: center;
    }

    .features-bg-img {
        object-fit: cover;
    }

    .features-mobile-img {
        object-fit: contain;
    }

    .features-gradient-img {
        object-fit: cover;
    }

    /* Right Side: Content */
    .features-content {
        flex: 1 0 0;
        min-width: 0;
        display: flex;
        flex-flow: column;
        place-content: flex-start;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }

    .features-heading {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 20px 0;
        text-align: left;
    }

    .features-subtitle {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: -0.02em;
        line-height: 1.5em;
        text-align: left;
        color: rgb(255, 255, 255);
        margin: 0 0 30px 0;
    }

    .features-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        position: relative;
    }

    .feature-card {
        background: #1d1d20;
        border: 1px solid rgb(29, 29, 32);
        border-radius: 20px;
        padding: 30px;
        text-align: left;
        width: 100%;
        transition: transform 0.2s, border-color 0.2s;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: #7149eb;
    }

    .feature-icon-wrapper {
        margin-bottom: 8px;
    }

    .feature-icon {
        font-size: 32px;
        display: inline-block;
        line-height: 1;
    }

    .feature-card-heading {
        margin: 0;
    }

    .feature-name {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .feature-description {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        color: rgb(148, 150, 157);
        line-height: 1.6;
        margin: 0 0 12px 0;
        text-align: left;
    }

    .feature-quote {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-style: italic;
        color: rgb(148, 150, 157);
        line-height: 1.6;
        margin: 0;
    }

    /* Capabilities Section */
    .capabilities-section {
        padding: 100px 20px;
        background: transparent;
        position: relative;
        z-index: 10;
    }

    .capabilities-inner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .capabilities-container {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: center;
        gap: 50px;
        width: 100%;
        max-width: 1134px;
        margin: 0 auto;
    }

    /* Left Side: Images */
    .capabilities-images {
        position: relative;
        width: 100%;
        max-width: 438px;
        flex-shrink: 0;
        aspect-ratio: 438 / 548;
    }

    .capabilities-background-image,
    .capabilities-main-image,
    .capabilities-gradient-image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
    }

    .capabilities-background-image {
        z-index: 1;
    }

    .capabilities-main-image {
        z-index: 2;
    }

    .capabilities-gradient-image {
        z-index: 3;
    }

    .capabilities-background-image > div,
    .capabilities-main-image > div,
    .capabilities-gradient-image > div {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
    }

    .capabilities-bg-img,
    .capabilities-main-img,
    .capabilities-gradient-img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: inherit;
        object-position: center;
    }

    .capabilities-bg-img {
        object-fit: cover;
    }

    .capabilities-main-img {
        object-fit: contain;
    }

    .capabilities-gradient-img {
        object-fit: cover;
    }

    /* Right Side: Content */
    .capabilities-content {
        flex: 1 0 0;
        min-width: 0;
        display: flex;
        flex-flow: column;
        place-content: flex-start;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }

    .capabilities-heading {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 30px 0;
        text-align: left;
    }

    .capabilities-card {
        background: #1d1d20;
        border: 1px solid rgb(29, 29, 32);
        border-radius: 20px;
        padding: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .capabilities-list-heading {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .capabilities-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .capability-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .capability-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        position: relative;
    }

    .capability-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .capability-text {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        color: rgb(148, 150, 157);
        margin: 0;
        text-align: left;
    }

    .capability-item-inactive .capability-text {
        color: rgb(98, 100, 108);
    }

    .capability-text-strikethrough {
        text-decoration: line-through;
    }

    /* Services Section */
    .services-section {
        padding: 100px 20px;
        background: #040313;
    }

    .services-inner {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .services-text-container {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .services-label-box {
        background: rgb(255, 255, 255);
        border-radius: 8px;
        padding: 8px 16px;
        display: inline-block;
    }

    .services-label {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 150%;
        color: rgb(0, 0, 0);
        margin: 0;
    }

    .services-heading {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 35px;
        font-weight: 500;
        line-height: 120%;
        text-align: center;
        color: rgb(255, 255, 255);
        margin: 0 0 40px 0;
    }

    .services-heading strong {
        font-weight: 700;
    }

    .services-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
        width: 100%;
        max-width: 800px;
        margin: 0 auto 40px auto;
        padding: 0;
        position: relative;
    }

    .service-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        transition: none;
    }

    .service-icon {
        font-family: "Mulish", "Mulish Placeholder", sans-serif;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: rgb(255, 255, 255);
        font-size: 24px;
        line-height: 1;
        margin: 0;
        display: inline-block;
        flex-shrink: 0;
    }

    .service-text {
        font-family: "Mulish", "Mulish Placeholder", sans-serif;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: rgb(255, 255, 255);
        font-size: 16px;
        margin: 0;
        text-align: left;
        display: inline-block;
    }

    .services-footer {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
        text-align: center;
        color: rgb(142, 144, 151);
        margin: 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-footer strong {
        font-weight: 700;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 100px 20px;
        background: transparent;
        position: relative;
        z-index: 10;
    }

    .pricing-inner {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .pricing-tag {
        display: inline-block;
        background: #A9A9A9;
        color: #000000;
        padding: 8px 16px;
        border-radius: 8px;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .pricing-title {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 20px 0;
    }

    .pricing-subtitle {
        font-family: "Instrument Sans", "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: rgb(171, 171, 171);
        margin: 0 auto 50px auto;
        max-width: 700px;
        line-height: 1.5;
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto 80px auto;
    }

    /* Pricing responsive for tablets */
    @media (max-width: 900px) {
        .pricing-cards {
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 500px;
        }

        .pricing-title {
            font-size: 36px;
        }

        .pricing-subtitle {
            font-size: 18px;
        }
    }

    .pricing-card {
        background: #1d1d20;
        border: 1px solid rgb(29, 29, 32);
        border-radius: 20px;
        padding: 40px 30px;
        position: relative;
        transition: transform 0.2s, border-color 0.2s;
        text-align: left;
    }

    .pricing-card.featured {
        border-color: #7149eb;
        border-width: 2px;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
        border-color: #7149eb;
    }

    .pricing-save-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #7149eb 0%, #5a3fc7 100%);
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .pricing-plan-name {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 20px 0;
    }

    .pricing-price {
        margin-bottom: 12px;
    }

    .price-amount {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #fff;
    }

    .price-period {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        color: rgb(171, 171, 171);
        margin-left: 8px;
    }

    .pricing-total {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 14px;
        color: rgb(171, 171, 171);
        margin: 0 0 20px 0;
    }

    .pricing-availability {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .availability-dot {
        width: 8px;
        height: 8px;
        background: #4ade80;
        border-radius: 50%;
        display: inline-block;
    }

    .availability-text {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 14px;
        color: #4ade80;
    }

    .pricing-cta {
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(249deg, #fff 0%, rgb(234, 230, 247) 100%);
        color: #040313;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .pricing-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(113, 73, 235, 0.3);
    }

    .pricing-cta:active {
        transform: translateY(0);
    }

    .pricing-cta:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .cta-arrow {
        font-size: 20px;
        color: #7149eb;
    }

    .pricing-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

    .pricing-disclaimer {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 12px;
        color: rgb(171, 171, 171);
        text-align: center;
        margin: 0 0 30px 0;
    }

    .pricing-features-section {
        margin-top: 30px;
    }

    .features-section-title {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 20px 0;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 15px;
        color: rgb(171, 171, 171);
        padding: 10px 0;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-included .feature-icon {
        color: #4ade80;
    }

    .feature-excluded .feature-icon {
        color: #ef4444;
    }

    .strikethrough {
        text-decoration: line-through;
    }

    /* Money-Back Guarantee Section */
    .guarantee-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 0;
    }

    @media (max-width: 900px) {
        .guarantee-section {
            flex-direction: column;
            gap: 40px;
            padding: 40px 20px;
            text-align: center;
        }

        .guarantee-content {
            text-align: center;
        }

        .guarantee-badge {
            order: -1;
        }
    }

    .guarantee-content {
        flex: 1;
        text-align: left;
    }

    .guarantee-label-container {
        margin-bottom: 20px;
    }

    .guarantee-label {
        display: inline-block;
        background: #fff;
        color: #000;
        padding: 8px 16px;
        border-radius: 8px;
        font-family: "Open Sans", "Open Sans Placeholder", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 150%;
        text-transform: uppercase;
        margin: 0;
    }

    .guarantee-title {
        font-family: "Open Sans", "Open Sans Placeholder", sans-serif;
        font-size: 28px;
        font-weight: 800;
        line-height: 110%;
        color: #fff;
        margin: 0 0 20px 0;
    }

    .guarantee-text-container {
        margin-bottom: 30px;
    }

    .guarantee-text {
        font-family: "Inter", "Inter Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
        text-align: left;
        color: rgb(153, 153, 153);
        margin: 0;
    }

    .guarantee-text strong {
        font-weight: 700;
    }

    .guarantee-cta-container {
        margin-top: 30px;
    }

    .guarantee-cta {
        display: inline-block;
        background: #fff;
        color: #000;
        padding: 16px 24px;
        border-radius: 12px;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        text-decoration: none;
        transition: transform 0.2s;
        width: 100%;
        text-align: center;
    }

    .guarantee-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    }

    .guarantee-cta:active {
        transform: translateY(0);
    }

    .guarantee-cta:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .guarantee-badge {
        width: 275px;
        height: 275px;
        flex-shrink: 0;
        position: relative;
    }

    .guarantee-badge-image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
    }

    .guarantee-badge-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

   

    /* Testimonial Grid Section */
    .testimonial-grid-section {
        padding: 80px 20px;
        background: #000000;
    }

    @media (max-width: 768px) {
        .testimonial-grid-section {
            padding: 60px 20px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-grid-section {
            padding: 40px 16px;
        }
    }

    .testimonial-grid-container {
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 60px;
        position: relative;
    }

    .testimonial-carousel-wrapper {
        position: relative;
    }

    .testimonial-grid-title {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 42px;
        font-weight: 700;
        line-height: 1em;
        text-align: center;
        color: rgb(254, 208, 90);
        margin: 0 0 60px 0;
        letter-spacing: 0em;
    }

    @media (max-width: 768px) {
        .testimonial-grid-title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .testimonial-grid-container {
            padding: 0 20px;
        }

        .testimonial-grid-item {
            flex: 0 0 260px;
            width: 260px;
            min-width: 260px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-grid-title {
            font-size: 28px;
            margin-bottom: 32px;
        }

        .testimonial-grid-container {
            padding: 0 16px;
        }

        .testimonial-grid-item {
            flex: 0 0 240px;
            width: 240px;
            min-width: 240px;
        }

        .testimonial-grid-item .testimonial-card {
            padding: 20px 16px;
        }
    }

    #rotatingTitle {
        display: inline-block;
        position: relative;
    }

    #rotatingTitle::after {
        content: '';
        display: inline-block;
        width: 2px;
        height: 0.9em;
        background-color: rgb(254, 208, 90);
        margin-left: 2px;
        animation: blink 1s infinite;
        vertical-align: baseline;
    }

    @keyframes blink {
        0%, 50% {
            opacity: 1;
        }
        51%, 100% {
            opacity: 0;
        }
    }

    .testimonial-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 24px;
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding: 0;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .testimonial-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        border: none;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease, background 0.3s ease;
        pointer-events: none;
    }

    .testimonial-carousel-wrapper:hover .testimonial-scroll-btn {
        opacity: 1;
        pointer-events: auto;
    }

    .testimonial-scroll-btn:hover {
        background: rgba(254, 208, 90, 0.3);
    }

    .testimonial-scroll-btn-prev {
        left: 10px;
    }

    .testimonial-scroll-btn-next {
        right: 10px;
    }

    .testimonial-scroll-btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .testimonial-grid-item {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .testimonial-grid-item .testimonial-card {
        background: #1d1d20;
        border: 1px solid rgb(29, 29, 32);
        border-radius: 16px;
        padding: 28px 22px;
        text-align: center;
        width: 100%;
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .testimonial-grid-item .testimonial-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }

    .testimonial-grid-item .testimonial-star-container {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-bottom: 0;
    }

    .testimonial-grid-item .testimonial-star-icon {
        width: 20px;
        height: 20px;
        position: relative;
        flex-shrink: 0;
    }

    .testimonial-grid-item .testimonial-star-icon > div {
        position: absolute;
        border-radius: inherit;
        inset: 0;
    }

    .testimonial-grid-item .testimonial-star-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.2) saturate(1.5);
    }

    .testimonial-grid-item .testimonial-text {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
        color: rgb(245, 245, 248);
        margin: 0;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        display: block;
        width: 100%;
    }

    .testimonial-grid-item .testimonial-text strong {
        font-weight: 700;
        color: rgb(245, 245, 248);
    }

    .testimonial-grid-item .testimonial-author-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        margin-top: 0;
    }

    .testimonial-grid-item .testimonial-avatar-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    .testimonial-grid-item .testimonial-avatar-wrapper > div {
        position: absolute;
        border-radius: inherit;
        inset: 0;
    }

    .testimonial-grid-item .testimonial-avatar-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-grid-item .testimonial-author-info {
        text-align: left;
        flex: 1;
    }

    .testimonial-grid-item .testimonial-name {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        text-align: left;
        color: rgb(245, 245, 248);
        margin: 0;
    }

    .testimonial-grid-item .testimonial-plan {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        text-align: left;
        color: rgb(189, 189, 189);
        margin: 0;
    }

    .testimonial-grid-item .testimonial-plan strong {
        font-weight: 700;
    }

    /* Video Carousel Section */
    .video-carousel-section {
        padding: 80px 20px;
        background: #000000;
    }

    .video-carousel-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .video-carousel {
        display: flex;
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: relative;
        padding: 10px;
        box-sizing: border-box;
        -webkit-font-smoothing: inherit;
    }

    .video-carousel-list {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
        display: flex;
        flex: 1 1 100%;
        width: 100%;
        height: 100%;
        gap: 23px;
        align-items: center;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        scroll-snap-type: x mandatory;
    }

    @media (pointer: fine) {
        .video-carousel-list[data-show-scrollbar="false"]::-webkit-scrollbar {
            display: none;
            -webkit-appearance: none;
            width: 0;
            height: 0;
        }

        .video-carousel-list[data-show-scrollbar="false"]::-webkit-scrollbar-thumb {
            display: none;
        }

        .video-carousel-list[data-show-scrollbar="false"] {
            scrollbar-width: none;
        }
    }

    .video-carousel-item {
        scroll-snap-align: center;
        flex-shrink: 0;
        scroll-snap-stop: always;
    }

    .video-wrapper {
        width: 100%;
        height: 100%;
    }

    .video-container {
        background: rgba(0, 0, 0, 0);
        height: 100%;
        width: 100%;
        border-radius: 0px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        min-width: 400px;
        max-width: 600px;
    }

    .framer-vimeo {
        width: 100%;
        height: 100%;
    }

    .framer-vimeo > div {
        padding: 177.78% 0 0 0;
        position: relative;
    }

    .framer-vimeo iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        border: 0;
        padding: 20px;
        margin: 0;
        flex-direction: row;
    }

    .video-carousel-btn {
        border: none;
        display: flex;
        place-content: center;
        place-items: center;
        overflow: hidden;
        background: transparent;
        margin: 0;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 40px;
        cursor: pointer;
        pointer-events: auto;
    }

    .video-carousel-btn-prev {
        opacity: 0;
        pointer-events: none;
    }

    .video-carousel-btn-next {
        opacity: 0;
        pointer-events: none;
    }

    .video-carousel-btn:not(:disabled):hover {
        opacity: 1;
    }

    .video-carousel-btn img {
        width: 40px;
        height: 40px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 20px;
        background: transparent;
        position: relative;
        z-index: 10;
    }

    .faq-inner {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-title {
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: -1px;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .faq-item {
        border-bottom: 1px solid #2d2d30;
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-question {
        width: 100%;
        padding: 24px 0;
        background: none;
        border: none;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.2s;
    }

    .faq-question:hover {
        color: #7149eb;
    }

    .faq-icon {
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-answer p {
        padding: 0 0 24px 0;
        color: #ababab;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

    /* Transform Your Tomorrow Section */
    .transform-tomorrow-section {
        padding: 80px 20px;
        background: transparent;
        position: relative;
        z-index: 10;
    }

    .transform-tomorrow-inner {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .transform-tomorrow-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
        position: relative;
    }

    .transform-tomorrow-text-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 0 0 auto;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
        max-width: 600px;
    }

    .transform-tomorrow-heading-container {
        margin: 0;
    }

    .transform-tomorrow-heading {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 64px;
        font-weight: 400;
        line-height: 1.1em;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.02em;
        text-align: center;
    }

    .transform-tomorrow-heading .framer-text {
        font-weight: 700;
    }

    .transform-tomorrow-button-container {
        margin: 0;
        width: 100%;
        max-width: 400px;
    }

    .transform-tomorrow-cta {
        display: inline-block;
        background-color: rgb(255, 255, 255);
        width: 100%;
        border-radius: 12px;
        padding: 16px 24px;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .transform-tomorrow-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    }

    .transform-tomorrow-cta:active {
        transform: translateY(0);
    }

    .transform-tomorrow-cta:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .transform-tomorrow-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

    .transform-tomorrow-button-text {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 150%;
        color: rgb(0, 0, 0);
        margin: 0;
        text-align: center;
    }

    .transform-tomorrow-text-container-secondary {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .transform-tomorrow-secondary-text {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5;
        color: #ffffff;
        margin: 0;
        text-align: center;
    }

    .transform-tomorrow-secondary-text .framer-text {
        font-weight: 700;
    }

    .transform-tomorrow-blurred-text {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5;
        color: #ffffff;
        margin: 0;
        text-align: center;
        opacity: 0.3;
        filter: blur(2px);
    }

    .transform-tomorrow-blurred-text .framer-text {
        font-weight: 700;
    }

    .transform-tomorrow-mobiles-container {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 30px;
        flex-shrink: 0;
        position: relative;
        width: 100%;
    }

    .transform-tomorrow-mobile {
        position: relative;
        flex-shrink: 0;
    }

    .transform-tomorrow-mobile-image {
        position: relative;
        width: 310px;
        aspect-ratio: 1 / 1;
        border-radius: 0;
    }

    .transform-tomorrow-mobile:nth-child(2) .transform-tomorrow-mobile-image {
        width: 378px;
    }

    .transform-tomorrow-mobile-image img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-position: center center;
        object-fit: contain;
    }

    .transform-tomorrow-mobile-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        border-radius: inherit;
        z-index: 1;
    }

    .transform-tomorrow-mobile-gradient.hidden {
        display: none;
    }

    /* Gradient styles */
    .transform-tomorrow-mobile-gradient-1 {
        background: linear-gradient(180deg, rgba(113, 73, 235, 0.1) 0%, transparent 100%);
    }

    .transform-tomorrow-mobile-gradient-2 {
        background: linear-gradient(180deg, transparent 0%, rgba(254, 208, 90, 0.1) 100%);
    }

    .transform-tomorrow-mobile-gradient-3 {
        background: linear-gradient(180deg, rgba(113, 73, 235, 0.15) 0%, transparent 50%);
    }

    .transform-tomorrow-mobile-gradient-4 {
        background: linear-gradient(180deg, transparent 50%, rgba(254, 208, 90, 0.15) 100%);
    }

    .transform-tomorrow-mobile-gradient-5 {
        background: linear-gradient(180deg, rgba(113, 73, 235, 0.1) 0%, transparent 100%);
    }

    .transform-tomorrow-mobile-gradient-6 {
        background: linear-gradient(180deg, transparent 0%, rgba(254, 208, 90, 0.1) 100%);
    }

    /* Footer */
    .site-footer {
        padding: 80px 20px 60px;
        background: transparent;
        position: relative;
        z-index: 10;
    }

    .footer-inner {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-logo .logo {
        font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    .footer-logo .logo-dot {
        color: #ff6b9d;
    }

    .footer-tagline {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        text-align: center;
        margin: 0;
        line-height: 1.5;
    }

    .footer-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 32px;
        background: linear-gradient(249deg, #7149eb 0%, rgb(234, 230, 247) 100%);
        color: #040313;
        text-decoration: none;
        border-radius: 12px;
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 700;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 16px rgba(113, 73, 235, 0.3);
    }

    .footer-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(113, 73, 235, 0.4);
    }

    .footer-cta:active {
        transform: translateY(0);
    }

    .footer-cta:focus {
        outline: 2px solid #7149eb;
        outline-offset: 2px;
    }

    .footer-cta-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: #7149eb;
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
    }

    .footer-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-nav-link {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-nav-link:hover {
        color: #f4c542;
    }

    .footer-nav-separator {
        color: #4a4a4a;
        font-size: 16px;
    }

    .footer-legal {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-legal-link {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-legal-link:hover {
        color: #f4c542;
    }

    .footer-manage-link {
        font-family: "Instrument Sans", "Instrument Sans Placeholder", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-manage-link:hover {
        color: #f4c542;
    }

    @media (max-width: 768px) {
        .site-footer {
            padding: 60px 20px 40px;
        }

        .footer-inner {
            gap: 28px;
        }

        .footer-logo .logo {
            font-size: 40px;
        }

        .footer-tagline {
            font-size: 16px;
        }

        .footer-cta {
            padding: 14px 28px;
            font-size: 15px;
        }

        .footer-nav-link,
        .footer-legal-link,
        .footer-manage-link {
            font-size: 15px;
        }

        .rating-inner {
            flex-direction: column;
            text-align: center;
        }

        .profile-avatars {
            justify-content: center;
        }

        .happy-clients-section {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .happy-clients-text {
            align-items: center;
        }

        .as-seen-on-title {
            font-size: 20px;
        }

        .logo-item {
            width: 100px;
            height: 30px;
        }

        .testimonial-card {
            padding: 24px 18px;
        }

        .testimonial-star-container {
            gap: 6px;
            margin-bottom: 16px;
        }

        .testimonial-star-icon {
            width: 18px;
            height: 18px;
        }

        .testimonial-title {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .testimonial-description {
            font-size: 15px;
            line-height: 1.5;
        }

        .testimonial-author-container {
            gap: 12px;
            margin-top: 16px;
        }

        .testimonial-avatar-wrapper {
            width: 45px;
            height: 45px;
        }

        .testimonial-name {
            font-size: 14px;
        }

        .testimonial-location {
            font-size: 13px;
        }

        .features-inner {
            padding: 0 20px;
        }

        .features-container {
            flex-direction: column;
            gap: 40px;
        }

        .features-images {
            max-width: 100%;
            width: 100%;
        }

        .features-heading {
            font-size: 36px;
            text-align: center;
        }

        .features-subtitle {
            font-size: 18px;
            text-align: center;
        }

        .features-content {
            align-items: center;
        }

        .features-cards-container {
            grid-template-columns: 1fr;
        }

        .capabilities-inner {
            padding: 0 20px;
        }

        .capabilities-container {
            flex-direction: column;
            gap: 40px;
        }

        .capabilities-images {
            max-width: 100%;
            width: 100%;
        }

        .capabilities-heading {
            font-size: 36px;
            text-align: center;
        }

        .capabilities-content {
            align-items: center;
        }

        .capabilities-card {
            padding: 20px;
        }

        .services-heading {
            font-size: 28px;
        }

        .services-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-width: 100%;
        }

        .service-text {
            font-size: 14px;
        }

        .services-footer {
            font-size: 16px;
        }

        .pricing-title,
        .faq-title {
            font-size: 36px;
        }

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

        .guarantee-section {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .guarantee-content {
            text-align: center;
        }

        .guarantee-badge {
            width: 200px;
            height: 200px;
        }

        .life-changing-guidance-heading {
            font-size: 32px;
            margin-bottom: 30px;
        }

        .strengthen-intuition-text {
            font-size: 20px;
        }

        .testimonial-grid-container {
            padding: 0 20px;
        }

        .testimonial-grid-title {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .testimonial-grid {
            gap: 20px;
            scroll-snap-type: x mandatory;
        }

        .testimonial-grid-item {
            flex: 0 0 calc(100% - 40px);
            width: calc(100% - 40px);
            min-width: calc(100% - 40px);
            max-width: calc(100% - 40px);
            scroll-snap-align: center;
            scroll-snap-stop: always;
        }

        .video-carousel-container {
            padding: 0 20px;
        }

        .video-container {
            min-width: 320px;
            max-width: 100%;
        }

        .faq-question {
            font-size: 16px;
            padding: 20px 0;
        }
    }

    @media (max-width: 480px) {
        .site-footer {
            padding: 50px 16px 30px;
        }

        .footer-inner {
            gap: 24px;
        }

        .footer-logo .logo {
            font-size: 36px;
        }

        .footer-tagline {
            font-size: 15px;
            padding: 0 10px;
        }

        .footer-cta {
            padding: 14px 24px;
            font-size: 14px;
            width: 100%;
            max-width: 320px;
        }

        .footer-cta-icon {
            width: 28px;
            height: 28px;
            font-size: 16px;
        }

        .footer-nav,
        .footer-legal {
            gap: 8px;
        }

        .footer-nav-link,
        .footer-legal-link,
        .footer-manage-link {
            font-size: 14px;
        }

        .footer-nav-separator {
            font-size: 14px;
        }

        .capabilities-section,
        .services-section,
        .pricing-section,
        .faq-section,
        .transform-tomorrow-section {
            padding: 40px 16px;
        }

        .capabilities-grid,
        .services-cards {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .pricing-card {
            padding: 1.5rem 1.25rem;
        }

        .pricing-title,
        .faq-title {
            font-size: 28px;
        }

        .testimonial-grid-container {
            padding: 0 16px;
        }

        .testimonial-grid-title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .testimonial-grid {
            gap: 16px;
            scroll-snap-type: x mandatory;
        }

        .testimonial-grid-item {
            flex: 0 0 calc(100% - 32px);
            width: calc(100% - 32px);
            min-width: calc(100% - 32px);
            max-width: calc(100% - 32px);
            scroll-snap-align: center;
            scroll-snap-stop: always;
        }

        .transform-tomorrow-heading {
            font-size: 1.75rem;
        }

        .transform-tomorrow-mobile {
            max-width: 240px;
        }

        .video-container {
            min-width: 280px;
        }

        .transform-tomorrow-container {
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .transform-tomorrow-text-container {
            align-items: center;
            text-align: center;
        }

        .transform-tomorrow-heading {
            font-size: 42px;
            text-align: center;
        }

        .transform-tomorrow-mobiles-container {
            flex-direction: row;
            justify-content: center;
            gap: 20px;
        }

        .transform-tomorrow-mobile-image {
            width: 200px !important;
        }

        .transform-tomorrow-mobile:nth-child(2) .transform-tomorrow-mobile-image {
            width: 240px !important;
        }
    }

    @media (max-width: 480px) {
        .transform-tomorrow-section {
            padding: 60px 20px;
        }

        .transform-tomorrow-inner {
            padding: 0 20px;
        }

        .transform-tomorrow-heading {
            font-size: 32px;
        }

        .transform-tomorrow-cta {
            padding: 14px 20px;
        }

        .transform-tomorrow-button-text {
            font-size: 16px;
        }

        .transform-tomorrow-secondary-text,
        .transform-tomorrow-blurred-text {
            font-size: 16px;
        }

        .transform-tomorrow-mobiles-container {
            gap: 15px;
        }

        .transform-tomorrow-mobile-image {
            width: 150px !important;
        }

        .transform-tomorrow-mobile:nth-child(2) .transform-tomorrow-mobile-image {
            width: 180px !important;
        }
    }

/* Extra-small phones (<= 360px) center alignment overrides */
@media (max-width: 360px) {
    html,
    body {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body {
        margin: 0;
    }

    .site-header,
    section,
    footer,
    .bottom-container {
        width: 100%;
    }

    .header-inner,
    .hero-inner-grid,
    .features-inner,
    .features-container,
    .capabilities-inner,
    .capabilities-container,
    .testimonial-inner,
    .testimonial-section,
    .testimonial-card,
    .services-inner,
    .pricing-inner,
    .pricing-section,
    .pricing-cards,
    .faq-inner,
    .faq-section,
    .transform-tomorrow-section,
    .transform-tomorrow-container,
    .transform-tomorrow-inner,
    .footer-inner {
        width: 100%;
        max-width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero,
    .features-section,
    .testimonial-section,
    .pricing-section,
    .faq-section,
    .transform-tomorrow-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner,
    .features-inner,
    .capabilities-inner,
    .services-inner,
    .pricing-inner,
    .faq-inner,
    .transform-tomorrow-inner,
    .footer-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-inner-grid,
    .hero-left,
    .hero-content,
    .intro,
    .features-content,
    .features-section,
    .testimonial-section,
    .happy-clients-section,
    .as-seen-on-section,
    .transform-tomorrow-text-container,
    .footer-inner {
        text-align: center !important;
        align-items: center !important;
    }

    .hero-description,
    .features-intro {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .social-proof,
    .hero-right,
    .features-container,
    .capabilities-container,
    .transform-tomorrow-container {
        justify-content: center !important;
    }

    .phone-mockup,
    .hero-image-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    img,
    svg,
    video,
    canvas,
    iframe {
        max-width: 100%;
        height: auto;
    }

    .video-container {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-image-card {
        width: 100% !important;
        max-width: 260px;
        height: auto !important;
    }

    .phone-frame {
        padding: 0.5rem;
    }

    .testimonial-card {
        padding: 16px;
    }

    .features-container,
    .capabilities-container,
    .transform-tomorrow-container {
        flex-direction: column;
        gap: 20px;
    }

    .services-cards,
    .pricing-cards,
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-grid-container,
    .video-carousel-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Keep registration form layout consistent on tiny screens */
    .registration-modal-overlay {
        padding: 12px;
    }

    .registration-modal-content {
        width: 100%;
        max-width: calc(100% - 24px);
        padding: 16px;
        margin: 0 auto;
        text-align: left;
    }

    .registration-form-step,
    .registration-form-group,
    .registration-form-actions,
    .registration-field-actions {
        width: 100%;
        max-width: 100%;
        text-align: left !important;
        align-items: stretch !important;
    }

    .transform-tomorrow-mobiles-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .transform-tomorrow-mobile-image {
        width: 220px !important;
        max-width: 100%;
    }

    .transform-tomorrow-mobile:nth-child(2) .transform-tomorrow-mobile-image {
        width: 240px !important;
        max-width: 100%;
    }

    /* Mobile menu full-width on tiny screens */
    .mobile-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-left: none;
    }

    .mobile-menu-overlay.active .mobile-menu {
        right: 0;
    }

    .mobile-menu-header {
        padding: 16px 20px;
    }

    .mobile-menu-logo {
        font-size: 22px;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-content {
        padding: 24px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 17px;
        padding: 16px 14px;
    }

    .mobile-menu-cta {
        font-size: 15px !important;
        padding: 16px 20px !important;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

 
 
/* ========================================
   EXIT INTENT POPUP STYLES
   ======================================== */

.exit-intent-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  display: none !important;
  visibility: hidden !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

/* Force hide until active */
#exitIntentOverlay {
  display: none !important;
  visibility: hidden !important;
  position: fixed !important;
}

#exitIntentOverlay:not(.active) {
  display: none !important;
  visibility: hidden !important;
}

.exit-intent-overlay.active,
#exitIntentOverlay.active {
  display: flex !important;
  visibility: visible !important;
  animation: fadeIn 0.4s ease forwards !important;
  opacity: 1 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exit-intent-popup {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  border-radius: 24px !important;
  max-width: 600px !important;
  width: 100% !important;
  position: relative !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  transform: scale(0.9) translateY(20px) !important;
  animation: popupSlideIn 0.4s ease forwards !important;
  overflow: hidden !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

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

.exit-intent-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
  animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.exit-intent-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.exit-intent-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  border-color: #d4af37;
}

.exit-intent-content {
  padding: 50px 40px 40px;
  text-align: center;
}

.exit-intent-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.exit-intent-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.exit-intent-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
  font-weight: 300;
}

.exit-intent-offer {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.exit-intent-offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.exit-intent-offer-title {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.exit-intent-offer-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.exit-intent-offer-description strong {
  color: #d4af37;
  font-weight: 600;
}

.exit-intent-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.exit-intent-old-price {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 300;
}

.exit-intent-new-price {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.exit-intent-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.exit-intent-cta {
  width: 100%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.exit-intent-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.exit-intent-cta-icon {
  font-size: 20px;
  animation: sparkle 1.5s ease infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(10deg); }
  75% { transform: scale(1.2) rotate(-10deg); }
}

.exit-intent-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.exit-intent-no-thanks {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 10px;
  transition: color 0.3s ease;
}

.exit-intent-no-thanks:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .exit-intent-popup { max-width: 95%; border-radius: 20px; }
  .exit-intent-content { padding: 40px 25px 30px; }
  .exit-intent-icon { font-size: 48px; }
  .exit-intent-title { font-size: 24px; }
  .exit-intent-subtitle { font-size: 16px; }
  .exit-intent-offer { padding: 25px 20px; }
  .exit-intent-offer-title { font-size: 22px; }
  .exit-intent-offer-description { font-size: 14px; }
  .exit-intent-new-price { font-size: 36px; }
  .exit-intent-cta { font-size: 16px; padding: 16px 30px; }
  .exit-intent-close { width: 36px; height: 36px; font-size: 20px; top: 15px; right: 15px; }
}

/* ========================================
   COMPREHENSIVE RESPONSIVENESS FIXES - FINAL LAYER
   Professional landing page responsive design
   Applied with high specificity to override conflicts
   ======================================== */

/* Phone Input Wrapper - Proper Responsive Layout */
.registration-phone-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.registration-phone-prefix {
    width: 120px !important;
    min-width: 100px !important;
    max-width: 120px !important;
    flex-shrink: 0 !important;
    padding: 14px !important;
    background: #09090a !important;
    border: 1px solid #3d3d3d !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

.registration-phone-input {
    flex: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px !important;
    background: #09090a !important;
    border: 1px solid #3d3d3d !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

/* Form Select Elements - Consistent Styling */
.registration-select {
    width: 100% !important;
    padding: 14px !important;
    background: #09090a !important;
    border: 1px solid #3d3d3d !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

/* Mobile Phone Wrapper - Stack on Narrow Screens */
@media (max-width: 400px) {
    .registration-phone-wrapper {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .registration-phone-prefix {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: initial !important;
    }

    .registration-phone-input {
        width: 100% !important;
    }
}

/* Desktop Form Fixes - Proper Sizing */
@media (min-width: 1024px) {
    .registration-phone-wrapper {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    .registration-phone-prefix {
        width: 130px !important;
        max-width: 130px !important;
    }
}

/* Checkbox Label - Proper Layout */
.registration-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer !important;
    font-weight: normal !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.registration-checkbox {
    margin-top: 4px !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}

.registration-checkbox-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.registration-privacy-link {
    color: #7149eb !important;
    text-decoration: underline !important;
}

/* Global Overflow Prevention - Critical */
html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}
