/* =============================================
   TALKING TALKING — Landing Page Styles
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e1b3a;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #1e1b3a;
}

.section-title--left {
  text-align: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.btn--primary {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.btn--submit-rating {
  background: linear-gradient(135deg, #e879f9, #a855f7);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.75rem;
  border-radius: 20px;
  width: 100%;
  margin-top: 8px;
}

.btn--go-premium {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.7rem;
  border-radius: 20px;
  width: 100%;
  margin-top: 8px;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Sparkles Background ---------- */
.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #fce7f3 0%, #e9d5ff 25%, #c084fc 50%, #a855f7 75%, #9333ea 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

/* Floating decorative elements */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  z-index: 2;
}

.hero__content {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero__app-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__app-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e1b3a;
  letter-spacing: -0.01em;
}

.hero__app-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.3);
}

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

.hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1e1b3a;
  margin-bottom: 20px;
  position: relative;
}

.hero__title em {
  font-style: italic;
}

.hero__heart {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: #3b2a5e;
  margin-bottom: 32px;
  max-width: 380px;
}

.hero__link {
  display: inline-block;
  margin-top: 16px;
  margin-left: 8px;
  font-size: 0.9rem;
  color: #5b21b6;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.hero__link:hover {
  border-bottom-color: #5b21b6;
}

/* Screenshot carousel in hero */
.hero__phones {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* =============================================
   PHONE MOCKUPS
   ============================================= */
.phone__frame {
  background: #ffffff;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(88, 28, 135, 0.2),
    0 8px 24px rgba(88, 28, 135, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  width: 220px;
}

.phone__frame--small {
  width: 180px;
  border-radius: 22px;
}

.phone__notch {
  width: 80px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin: 4px auto 8px;
}

.phone__screen {
  background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
  border-radius: 20px;
  padding: 12px;
  min-height: 340px;
}

.phone__frame--small .phone__screen {
  border-radius: 16px;
  min-height: 260px;
  padding: 8px;
}

/* Screen header */
.screen-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7c3aed;
}

.screen-header--sm {
  font-size: 0.65rem;
  padding: 2px 4px 6px;
}

.screen-header__icon {
  color: #f59e0b;
}

/* Chat card */
.chat-card {
  padding: 4px;
}

.chat-card__badge {
  background: linear-gradient(135deg, #fce7f3, #e9d5ff);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 8px;
}

.chat-card__info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.chat-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  flex-shrink: 0;
}

.chat-card__details {
  font-size: 0.6rem;
  color: #6b7280;
  line-height: 1.4;
}

.chat-card__time {
  font-weight: 500;
  color: #4b5563;
}

.chat-card__date {
  color: #a855f7;
  font-weight: 500;
}

/* Chat bubbles */
.chat-bubble {
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 0.62rem;
  line-height: 1.5;
  margin-bottom: 6px;
  max-width: 90%;
}

.chat-bubble--received {
  background: #ede9fe;
  color: #4c1d95;
  border-bottom-left-radius: 4px;
}

.chat-bubble--sent {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-bubble--emoji {
  background: transparent;
  font-size: 1rem;
  padding: 4px;
  text-align: center;
}

.chat-bubble--small {
  font-size: 0.58rem;
  padding: 6px 10px;
  background: #ede9fe;
  color: #4c1d95;
  border-radius: 10px;
}

.chat-bubble--mini {
  font-size: 0.55rem;
  padding: 4px 8px;
  background: #ede9fe;
  color: #4c1d95;
  border-radius: 8px;
}

/* Meeting card */
.meeting-card {
  padding: 12px 8px;
  text-align: center;
}

.meeting-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  margin: 0 auto 8px;
}

.meeting-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4c1d95;
  margin-bottom: 4px;
}

.meeting-card__text {
  font-size: 0.58rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 12px;
}

.meeting-card__chat {
  margin-top: 8px;
}

/* Rating card */
.rating-card {
  padding: 8px;
  text-align: center;
}

.rating-card--small {
  padding: 4px;
}

.rating-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4c1d95;
  margin-bottom: 4px;
}

.rating-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rating-card__list {
  text-align: left;
  padding: 0 4px;
}

.rating-card__list li {
  font-size: 0.6rem;
  color: #4b5563;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-card__list--compact li {
  font-size: 0.55rem;
  padding: 2px 0;
}

.check.green {
  color: #34d399;
  font-size: 0.7rem;
}

/* Phone positioning in hero */
.phone--1 {
  transform: translateY(20px);
  z-index: 3;
  animation: phoneFloat1 6s ease-in-out infinite;
}

.phone--2 {
  transform: translateY(-20px);
  z-index: 2;
  animation: phoneFloat2 7s ease-in-out infinite;
}

.phone--3 {
  transform: translateY(10px);
  z-index: 1;
  animation: phoneFloat3 8s ease-in-out infinite;
}

@keyframes phoneFloat1 {
  0%, 100% { transform: translateY(20px); }
  50% { transform: translateY(8px); }
}

@keyframes phoneFloat2 {
  0%, 100% { transform: translateY(-20px); }
  50% { transform: translateY(-32px); }
}

@keyframes phoneFloat3 {
  0%, 100% { transform: translateY(10px); }
  50% { transform: translateY(-2px); }
}

/* Phone positioning in why section */
.phone--premium {
  animation: phoneFloat1 6s ease-in-out infinite;
}

.phone--rating-small {
  animation: phoneFloat2 7s ease-in-out infinite;
}

/* Premium screen */
.premium-screen {
  text-align: center;
  padding: 8px;
}

.premium-screen__badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.premium-screen__content p {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4c1d95;
  margin-bottom: 8px;
}

.premium-screen__chat {
  margin-top: 8px;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  z-index: 2;
}

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

.step {
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.step__icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.step__icon-inner {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.step__icon-deco {
  position: absolute;
}

.step__icon-deco--coffee {
  bottom: -10px;
  right: -10px;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e1b3a;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =============================================
   WHY TALKING TALKING SECTION
   ============================================= */
.why {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #fce7f3 0%, #e9d5ff 30%, #c084fc 60%, #a855f7 85%, #9333ea 100%);
  overflow: hidden;
  z-index: 1;
}

.why__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(236,72,153,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.why__container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.why__content {
  flex: 1;
}

.why__content .section-title {
  color: #1e1b3a;
}

.why__list {
  margin-bottom: 24px;
}

.why__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e1b3a;
  padding: 10px 0;
}

.why__check {
  flex-shrink: 0;
}

.why__privacy {
  font-size: 0.85rem;
  color: #4c1d95;
  font-style: italic;
  margin-top: 8px;
}

.why__phones {
  display: flex;
  gap: 16px;
  align-items: center;
}

.why__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.why__cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e1b3a;
}

.why__cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why__cta-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =============================================
   DOWNLOAD / CTA SECTION
   ============================================= */
.download {
  padding: 80px 0 60px;
  background: #fff;
  text-align: center;
}

.download__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1b3a;
  margin-bottom: 40px;
}

.download__title em {
  font-style: italic;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download__badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.store-badge__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e1b3a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  min-width: 200px;
}

.store-badge__icon {
  flex-shrink: 0;
  color: #fff;
}

.store-badge__text {
  text-align: left;
}

.store-badge__label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.store-badge__store {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(160deg, #a855f7 0%, #7c3aed 50%, #5b21b6 100%);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

.footer__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.footer__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet — ≤1024px */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    align-items: center;
  }

  .hero__content {
    flex: none;
    width: 100%;
    max-width: 560px;
  }

  .hero__subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__phones {
    width: 100%;
    max-width: 100%;
  }

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

  .why__content {
    width: 100%;
  }

  .why__content .section-title {
    text-align: center;
  }

  .why__list {
    display: inline-block;
    text-align: left;
  }

  .why__phones {
    justify-content: center;
    width: 100%;
  }

  .why__cta {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .steps {
    gap: 24px;
  }
}

/* Mobile — ≤768px */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero__container {
    padding-top: 48px;
    padding-bottom: 24px;
    gap: 32px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__phones {
    width: 100%;
    max-width: 100%;
  }

  .hero-carousel__item img {
    height: 320px;
  }

  .phone__frame {
    width: 148px;
    border-radius: 20px;
  }

  .phone__screen {
    min-height: 240px;
    border-radius: 14px;
    padding: 8px;
  }

  /* Hide 3rd phone — keep layout clean */
  .phone--3 {
    display: none;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 36px;
  }

  .how-it-works {
    padding: 60px 0 72px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 400px;
    margin: 0 auto;
  }

  .why {
    padding: 60px 0 72px;
  }

  .why__phones {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .download {
    padding: 60px 0 48px;
  }

  .download__title {
    font-size: 1.75rem;
  }

  .footer__title {
    font-size: 1.5rem;
  }
}

/* Small mobile — ≤480px */
@media (max-width: 480px) {
  .hero__container {
    padding-top: 40px;
    gap: 24px;
  }

  .hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 0.875rem;
  }

  .hero__heart svg {
    width: 36px;
    height: 36px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .hero__phones {
    width: 100%;
    max-width: 100%;
    padding: 0 36px;
  }

  .phone__notch {
    width: 50px;
    height: 4px;
    margin: 3px auto 5px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .step__icon-inner {
    width: 100px;
    height: 100px;
  }

  /* Why section phones stacked on small screens */
  .why__phones {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .phone__frame--small {
    width: 148px;
  }

  .download__title {
    font-size: 1.5rem;
    padding: 0 8px;
  }

  .download__badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge__inner {
    min-width: 200px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer {
    padding: 48px 0 32px;
  }

  .footer__title {
    font-size: 1.3rem;
    padding: 0 16px;
  }

  .footer__links {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}

/* Very small mobile — ≤375px */
@media (max-width: 375px) {
  .hero__title {
    font-size: 1.65rem;
  }

  .hero__subtitle {
    font-size: 0.825rem;
  }

  .btn--primary {
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero__link {
    display: block;
    margin-left: 0;
    text-align: center;
  }

  .phone__frame {
    width: 140px;
  }

  .phone__screen {
    min-height: 200px;
  }
}

/* =============================================
   HERO SCREENSHOT CAROUSEL
   ============================================= */

.hero-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

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

.hero-carousel__window {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
}

.hero-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-carousel__item {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 48px rgba(107, 33, 168, 0.25);
}

.hero-carousel__item img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
}

.hero-carousel__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(107, 33, 168, 0.85);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(107, 33, 168, 0.4);
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel__arrow:hover {
  background: #a855f7;
  transform: scale(1.08);
}

.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 33, 168, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.hero-carousel__dot--active {
  background: #7c3aed;
  transform: scale(1.35);
}

/* =============================================
   COMING SOON MODAL
   ============================================= */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-overlay.is-open .modal {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
}

.modal__close:hover {
  color: #374151;
}

.modal__icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.modal__text {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal__btn {
  width: auto;
  padding: 12px 32px;
  display: inline-block;
}
