/* Shareide - Shared Components (Sections, Cards, Reusable Elements) - Modern V5 */

/* ========== SECTION STYLES ========== */
section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 14px;
  background: linear-gradient(135deg, rgba(245,184,0,0.1), rgba(245,184,0,0.03));
  border: 1px solid rgba(245,184,0,0.2);
  color: #C47B00;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Dot before tag text */
.section__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5B800;
  flex-shrink: 0;
}

.section__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0A0A1A;
}

.section__desc {
  font-size: 17.5px;
  color: #5A6A7A;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section__header { margin-bottom: 40px; }
  .section__tag { font-size: 11px; padding: 6px 16px; letter-spacing: 1px; margin-bottom: 14px; }
  .section__desc { font-size: 15px; }
}

@media (max-width: 480px) {
  section { padding: 45px 0; }
  .section__header { margin-bottom: 30px; }
  .section__tag { font-size: 10px; padding: 5px 14px; }
  .section__desc { font-size: 14px; }
}

/* ========== FEATURE CARDS ========== */
.features {
  background: var(--bg-alt, #f9fafb);
  position: relative;
}

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

.feature-card {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  padding: 40px 32px;
  border-radius: 24px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

/* Top gold accent line */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary, #F5B800), rgba(255,140,0,0.5), transparent);
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,184,0,0.22);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.06),
    0 24px 56px rgba(0,0,0,0.06),
    0 0 0 1px rgba(245,184,0,0.1),
    0 0 24px rgba(245,184,0,0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__glow {
  display: none;
}

.feature-card__icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.13), rgba(245,184,0,0.05));
  border-radius: 18px;
  margin-bottom: 28px;
  color: #C47B00;
  font-size: 24px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(245,184,0,0.1);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(245,184,0,0.2);
}

.feature-card__icon--orange,
.feature-card__icon--green,
.feature-card__icon--purple,
.feature-card__icon--blue,
.feature-card__icon--pink,
.feature-card__icon--red,
.feature-card__icon--teal {
  background: rgba(245,184,0,0.1);
  color: #D4900A;
  box-shadow: 0 4px 12px rgba(245,184,0,0.12);
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #0A0A1A;
}

.feature-card__desc {
  font-size: 15px;
  color: #5A6A7A;
  line-height: 1.75;
}

.feature-card__tag {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 14px;
  background: linear-gradient(135deg, rgba(245,184,0,0.1), rgba(245,184,0,0.04));
  border: 1px solid rgba(245,184,0,0.2);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 22px; }
}

/* ========== HOW IT WORKS ========== */
.how {
  background: var(--bg, #fff);
  position: relative;
}

.how__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.how__timeline-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.how__timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  transition: width 1.5s var(--ease-out);
}

.how__step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.how__step-marker {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.how__step-number {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--black);
  font-size: 26px;
  font-weight: 800;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(245,184,0,0.3);
}

.how__step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border: 2px solid rgba(245,184,0,0.25);
  border-radius: 50%;
  animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
  0% { width: 68px; height: 68px; opacity: 1; }
  100% { width: 110px; height: 110px; opacity: 0; }
}

.how__step-card {
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 22px;
  padding: 36px 28px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}

.how__step-card:hover {
  border-color: rgba(245,184,0,0.22);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06), 0 24px 56px rgba(0,0,0,0.06), 0 0 0 1px rgba(245,184,0,0.1);
}

.how__step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.1), rgba(245,184,0,0.04));
  border-radius: 14px;
  color: var(--primary-dark);
  font-size: 18px;
  margin: 0 auto 14px;
}

.how__step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.how__step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .how__timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how__timeline-line { display: none; }
}

@media (max-width: 576px) {
  .how__timeline { grid-template-columns: 1fr; gap: 25px; }
  .how__step-number { width: 55px; height: 55px; font-size: 22px; }
  .how__step-pulse { width: 55px; height: 55px; }
  .how__step-card { padding: 22px 16px; }
  .how__step-card h3 { font-size: 15px; }
  .how__step-card p { font-size: 12px; }
}

/* ========== SAFETY SECTION ========== */
.safety {
  background: var(--bg-alt, #f9fafb);
}

.safety__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.safety__desc {
  font-size: 17px;
  color: #5A6A7A;
  margin-bottom: 35px;
  line-height: 1.8;
}

.safety__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.safety__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.safety__feature:hover {
  border-color: rgba(245,184,0,0.22);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(245,184,0,0.1);
}

.safety__feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  border-radius: 12px;
  color: var(--green);
  font-size: 17px;
}

.safety__feature-icon--blue,
.safety__feature-icon--red,
.safety__feature-icon--purple,
.safety__feature-icon--teal,
.safety__feature-icon--orange { background: rgba(245,184,0,0.1); color: #D4900A; }

.safety__feature-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text);
}

.safety__feature-content span {
  font-size: 12px;
  color: var(--text-secondary);
}

.safety__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety__visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  max-width: 400px;
}

.safety__visual-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.04);
}

.safety__visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
  border-color: rgba(245,184,0,0.15);
}

.safety__visual-card--highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
}

.safety__visual-card--highlight .safety__visual-card-icon {
  background: rgba(0,0,0,0.15);
  color: var(--black);
}

.safety__visual-card--highlight .safety__visual-card-number {
  background: none;
  -webkit-text-fill-color: var(--black);
  color: var(--black);
}

.safety__visual-card--highlight .safety__visual-card-label {
  color: rgba(0,0,0,0.7);
}

.safety__visual-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,184,0,0.1), rgba(245,184,0,0.04));
  border-radius: 14px;
  color: var(--primary-dark);
  font-size: 18px;
  margin: 0 auto 12px;
}

.safety__visual-card-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #F5B800;
  margin-bottom: 4px;
}

.safety__visual-card-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .safety__grid { grid-template-columns: 1fr; gap: 50px; }
  .safety__visual { order: -1; }
}

@media (max-width: 768px) {
  .safety__grid { gap: 35px; }
  .safety__desc { font-size: 15px; margin-bottom: 25px; }
}

@media (max-width: 480px) {
  .safety__grid { gap: 25px; }
  .safety__desc { font-size: 14px; }
  .safety__feature { padding: 14px 16px; gap: 12px; }
  .safety__feature-icon { width: 38px; height: 38px; min-width: 38px; font-size: 15px; border-radius: 10px; }
  .safety__feature-content strong { font-size: 14px; }
  .safety__feature-content span { font-size: 11px; }
  .safety__visual-card { padding: 22px 14px; }
  .safety__visual-card-number { font-size: 22px; }
  .safety__visual-card-label { font-size: 10px; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--bg, #fff);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(245,184,0,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.06);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(245,184,0,0.04), rgba(245,166,35,0.04));
  border-color: rgba(245,184,0,0.2);
  border-top: 3px solid var(--primary);
}

.testimonial-card__quote {
  color: rgba(245,184,0,0.2);
  font-size: 30px;
  margin-bottom: 15px;
}

.testimonial-card__stars {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-card__stars i {
  margin-right: 0;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-card__author span i {
  color: var(--primary);
  margin-right: 4px;
}

@media (max-width: 992px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ========== DOWNLOAD CTA ========== */
.download-cta {
  background: linear-gradient(135deg, #0F0F1A 0%, #1A1A2E 50%, #0F0F1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(245,184,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.download-cta__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.download-cta__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,184,0,0.06);
}

.download-cta__circle--1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.download-cta__circle--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -80px;
}

.download-cta__content {
  position: relative;
  z-index: 2;
}

.download-cta__logo {
  width: 70px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.download-cta__title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.download-cta__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.download-cta__desc strong {
  color: var(--primary);
}

.download-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(4px);
}

.store-button:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 16px rgba(245,184,0,0.08);
}

.store-button i {
  font-size: 30px;
  color: var(--white);
}

.store-button span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.store-button strong {
  display: block;
  font-size: 17px;
  color: var(--white);
}

/* APK button */
.store-button--apk {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(61, 220, 132, 0.35);
}

.store-button--apk:hover {
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-color: #3DDC84;
  box-shadow: 0 10px 30px rgba(61, 220, 132, 0.2);
  transform: translateY(-3px);
}

.store-button--apk i { color: #3DDC84; }
.store-button--apk span { color: rgba(255,255,255,0.6); }
.store-button--apk strong { color: #fff; }

/* Store buttons inside download cards */
.download-app-card .store-button {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(245,184,0,0.25);
}

.download-app-card .store-button:hover {
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(245,184,0,0.15);
}

.download-app-card .store-button i { color: #fff; }
.download-app-card .store-button span { color: rgba(255,255,255,0.6); }
.download-app-card .store-button strong { color: #fff; }

.download-app-card .store-button--apk {
  border-color: rgba(61, 220, 132, 0.35);
}

.download-app-card .store-button--apk:hover {
  border-color: #3DDC84;
  box-shadow: 0 10px 30px rgba(61, 220, 132, 0.2);
}

.download-cta__trust {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.download-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.download-cta__trust-item i {
  color: var(--primary);
}

/* ========== DRIVE CTA ========== */
.drive-cta {
  padding: 100px 0;
  background: var(--bg, #fff);
}

.drive-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background: #0A0A1A;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(245,184,0,0.15);
}

.drive-cta__card--centered {
  justify-content: center;
  padding: 72px 60px;
}

.drive-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(245,184,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.drive-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245,184,0,0.12);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #F5B800;
  margin-bottom: 20px;
}

.drive-cta__content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.drive-cta__content h2 .gradient-text-dark {
  color: #F5B800;
}

.drive-cta__content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 25px;
  max-width: 420px;
  line-height: 1.7;
}

.drive-cta__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.drive-cta__stat {
  text-align: center;
}

.drive-cta__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #F5B800;
}

.drive-cta__stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.drive-cta__visual {
  display: flex;
  align-items: center;
}

.drive-cta__icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.drive-cta__icon-item {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,184,0,0.08);
  border: 1px solid rgba(245,184,0,0.15);
  border-radius: 22px;
  font-size: 28px;
  color: #F5B800;
  transition: all 0.3s ease;
}

.drive-cta__icon-item:hover {
  background: rgba(245,184,0,0.15);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(245,184,0,0.15);
}

@media (max-width: 768px) {
  .drive-cta { padding: 60px 0; }
  .drive-cta__card { flex-direction: column; text-align: center; padding: 40px 30px; }
  .drive-cta__content p { max-width: 100%; }
  .drive-cta__content h2 { font-size: 28px; }
  .drive-cta__stats { justify-content: center; flex-wrap: wrap; }
  .drive-cta__visual { margin-top: 30px; }
  .download-cta__buttons { flex-direction: column; align-items: center; gap: 12px; }
  .store-button { width: 100%; max-width: 280px; justify-content: center; padding: 14px 24px; }
  .store-button i { font-size: 26px; }
  .store-button strong { font-size: 15px; }
  .download-cta__trust { gap: 20px; }
  .download-cta__trust-item { font-size: 12px; }
}

@media (max-width: 480px) {
  .drive-cta { padding: 45px 0; }
  .drive-cta__card { padding: 30px 20px; }
  .drive-cta__content h2 { font-size: 24px; }
  .drive-cta__content p { font-size: 15px; }
  .drive-cta__icon-grid { gap: 10px; }
  .drive-cta__icon-item { width: 60px; height: 60px; font-size: 22px; border-radius: 14px; }
  .store-button { padding: 12px 20px; gap: 12px; border-radius: 12px; }
  .store-button i { font-size: 24px; }
  .store-button strong { font-size: 14px; }
  .download-cta__desc { font-size: 15px; margin-bottom: 30px; }
  .download-cta__trust { gap: 15px; }
  .download-cta__trust-item { font-size: 11px; gap: 5px; }
  .testimonial-card { padding: 25px 20px; }
  .testimonial-card__text { font-size: 14px; }
}


/* ═══════════════════════════════════════════
   WAITLIST MODAL + FORM (Global - all pages)
   ═══════════════════════════════════════════ */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.wl-modal--open {
  opacity: 1;
  visibility: visible;
}

.wl-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wl-modal__container {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #0F172A 0%, #1A1A2E 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 36px;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 16px;
}

.wl-modal--open .wl-modal__container {
  transform: translateY(0) scale(1);
}

.wl-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wl-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.wl-modal__header {
  margin-bottom: 28px;
}

.wl-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,184,0,0.12);
  color: #F5B800;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.wl-modal__header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.wl-modal__header p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.wl-modal__form .waitlist__field label { display: none; }

.wl-modal__success {
  text-align: center;
  padding: 24px 0;
}

.wl-modal__success .waitlist__success-icon { font-size: 48px; color: #22C55E; margin-bottom: 16px; }
.wl-modal__success h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.wl-modal__success p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* Waitlist form fields (shared between modal + inline) */
.wl-modal__form .waitlist__field,
.wl-modal__form .waitlist__input-wrap,
.wl-modal__form .waitlist__row,
.wl-modal__form .waitlist__types,
.wl-modal__form .waitlist__type,
.wl-modal__form .waitlist__submit,
.wl-modal__form .waitlist__privacy { /* inherit from home.css on homepage, need standalone here */ }

.wl-modal__form .waitlist__field {
  margin-bottom: 16px;
}

.wl-modal__form .waitlist__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.wl-modal__form .waitlist__input-wrap i {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 1;
}

.wl-modal__form .waitlist__input-wrap input,
.wl-modal__form .waitlist__input-wrap select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.wl-modal__form .waitlist__input-wrap input::placeholder {
  color: rgba(255,255,255,0.3);
}

.wl-modal__form .waitlist__input-wrap select {
  cursor: pointer;
}

.wl-modal__form .waitlist__input-wrap select option {
  background: #1A1A2E;
  color: #fff;
}

.wl-modal__form .waitlist__input-wrap input:focus,
.wl-modal__form .waitlist__input-wrap select:focus {
  border-color: rgba(245,184,0,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.1);
}

.wl-modal__form .waitlist__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wl-modal__form .waitlist__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.wl-modal__form .waitlist__type {
  cursor: pointer;
}

.wl-modal__form .waitlist__type input { display: none; }

.wl-modal__form .waitlist__type span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wl-modal__form .waitlist__type input:checked + span {
  background: rgba(245,184,0,0.12);
  border-color: rgba(245,184,0,0.4);
  color: #F5B800;
}

.wl-modal__form .waitlist__type:hover span {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.wl-modal__form .waitlist__submit {
  width: 100%;
  padding: 14px 24px;
  background: #F5B800;
  border: none;
  border-radius: 14px;
  color: #0A0A1A;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245,184,0,0.3);
  margin-bottom: 12px;
}

.wl-modal__form .waitlist__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245,184,0,0.4);
}

.wl-modal__form .waitlist__submit:active { transform: translateY(0); }

.wl-modal__form .waitlist__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.wl-modal__form .waitlist__submit-text,
.wl-modal__form .waitlist__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wl-modal__form .waitlist__privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

@media(max-width:480px) {
  .wl-modal__container { padding: 28px 24px; border-radius: 20px; }
  .wl-modal__form .waitlist__row { grid-template-columns: 1fr; }
  .wl-modal__form .waitlist__types { grid-template-columns: 1fr; }
}
