/* ========================================
   HOME PAGE - Additional Styles
   ======================================== */

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0D0520 0%, #1A0A3E 35%, #2D1060 60%, #0D0520 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--accent-cyan); top: 30%; left: 20%; opacity: 0.15; }
.shape-4 { width: 200px; height: 200px; background: var(--accent-yellow); bottom: 20%; right: 30%; opacity: 0.1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid white; margin-right: -10px;
  background: #2a2a3e;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; }
.trust-stars { color: var(--accent-yellow); font-size: 0.85rem; letter-spacing: 2px; }
.trust-text span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.trust-text strong { color: white; }

/* ===== PHONE MOCKUP ===== */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.phone-mockup { position: relative; z-index: 1; }

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2a2a4e, #1a1a2e);
  border-radius: 44px;
  padding: 16px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(107, 70, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-cyan));
  border-radius: 44px 44px 0 0;
}

.phone-screen {
  width: 100%; height: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
}

.profile-card {
  height: 100%;
  background: linear-gradient(135deg, #F0EEFF 0%, #E8E0FF 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  gap: 8px;
}

.profile-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(107, 70, 255, 0.35);
  margin-bottom: 4px;
}

.profile-name { font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.profile-bio { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 8px; }

.link-buttons { width: 100%; display: flex; flex-direction: column; gap: 10px; }

.link-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.link-btn .fa-arrow-right { margin-left: auto; opacity: 0.5; font-size: 0.7rem; }
.link-btn-1 { background: var(--primary); color: white; }
.link-btn-2 { background: white; color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.link-btn-3 { background: var(--accent-green); color: white; }
.link-btn-4 { background: white; color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.phone-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 40px;
  background: var(--primary);
  filter: blur(30px);
  opacity: 0.5;
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: floatUpDown 3s ease-in-out infinite;
}
.float-card i { font-size: 1.4rem; }
.float-num { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.float-label { font-size: 0.72rem; color: var(--text-secondary); }

.float-1 { left: -60px; top: 20%; animation-delay: 0s; }
.float-1 i { color: var(--accent-green); }
.float-2 { right: -60px; bottom: 25%; animation-delay: 1s; }
.float-2 i { color: var(--primary); }

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

/* ===== BRANDS ===== */
.brands-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-inner { text-align: center; }
.brands-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; font-weight: 500; }
.brands-marquee { overflow: hidden; position: relative; }
.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1;
}
.brands-marquee::before { left: 0; background: linear-gradient(90deg, white, transparent); }
.brands-marquee::after { right: 0; background: linear-gradient(-90deg, white, transparent); }

.brands-track {
  display: flex; gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.brand-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem; color: var(--text-muted);
  white-space: nowrap; transition: var(--transition);
}
.brand-item:hover { color: var(--primary); }
.brand-item i { font-size: 1.2rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 70, 255, 0.2);
}

.feature-main {
  grid-column: span 2;
  background: linear-gradient(135deg, #F0EEFF 0%, #E8E0FF 100%);
  border-color: rgba(107, 70, 255, 0.2);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.feature-icon-purple { background: rgba(107, 70, 255, 0.12); color: var(--primary); }
.feature-icon-pink { background: rgba(255, 107, 157, 0.12); color: var(--secondary); }
.feature-icon-green { background: rgba(38, 208, 124, 0.12); color: var(--accent-green); }
.feature-icon-orange { background: rgba(255, 107, 53, 0.12); color: var(--accent-orange); }
.feature-icon-blue { background: rgba(0, 212, 255, 0.12); color: #0099BB; }

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

.feature-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
}

/* ===== SHOWCASE ===== */
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.showcase-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-secondary);
}
.showcase-list li i { color: var(--accent-green); font-size: 1.1rem; }

.showcase-phones {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-phone {
  position: absolute;
  width: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.8);
}

.phone-a { left: 50%; transform: translateX(-50%); top: 0; z-index: 3; animation: floatUpDown 3.5s ease-in-out infinite; }
.phone-b { left: 20%; top: 30%; transform: translateY(-50%); z-index: 2; animation: floatUpDown 4s ease-in-out infinite 0.5s; }
.phone-c { right: -10%; top: 50%; transform: translateY(-50%); z-index: 2; animation: floatUpDown 3.8s ease-in-out infinite 1s; }

@media (max-width: 768px) {
.phone-a { left: 28%; transform: translateX(-50%); top: -10%; z-index: 3; animation: floatUpDown 3.5s ease-in-out infinite; }
.phone-b { left: -2%; top: 30%; transform: translateY(-50%); z-index: 2; animation: floatUpDown 4s ease-in-out infinite 0.5s; }
.phone-c { right: -2%; top: 50%; transform: translateY(-50%); z-index: 2; animation: floatUpDown 3.8s ease-in-out infinite 1s; }
}
.sp-screen { padding: 20px; background: #F8F7FF; min-height: 280px; }
.sp-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.sp-name { text-align: center; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.sp-links { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.sp-link {
  padding: 10px 14px; border-radius: 12px;
  background: white; font-size: 0.75rem; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07); cursor: pointer;
  transition: var(--transition);
}
.sp-link:hover { transform: translateX(4px); }

/* ===== STATS ===== */
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card .stat-number { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.stat-card .stat-icon {
  position: absolute; top: 16px; right: 16px; font-size: 1.5rem; opacity: 0.4;
}

/* ===== UGC SECTION ===== */
.ugc-section { position: relative; }
.ugc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ugc-card-stack { position: relative; height: 380px; }
.ugc-card {
  position: absolute;
  width: 280px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.ugc-card:hover { background: rgba(255,255,255,0.12); transform: translateX(8px); }
.ugc-c1 { top: 0; left: 20px; }
.ugc-c2 { top: 110px; left: 40px; }
.ugc-c3 { top: 220px; left: 20px; }

.ugc-thumb {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.ugc-title { font-weight: 600; font-size: 0.9rem; color: white; margin-bottom: 4px; }
.ugc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.ugc-arrow { margin-left: auto; color: rgba(255,255,255,0.4); }

.ugc-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.ugc-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
}
.ugc-list li i {
  width: 24px; height: 24px;
  background: rgba(38, 208, 124, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green); font-size: 0.75rem; flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-featured {
  background: linear-gradient(135deg, #F0EEFF, #E8E0FF);
  border-color: rgba(107,70,255,0.2);
}

.testimonial-quote {
  font-size: 4rem; line-height: 1;
  color: var(--primary); opacity: 0.2;
  font-weight: 900; margin-bottom: -16px;
}

.testimonial-card p {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--accent-yellow); font-size: 0.9rem; letter-spacing: 2px; }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #1A0A3E 0%, #0D0520 100%); }
.cta-inner {
  text-align: center;
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107,70,255,0.3), rgba(255,107,157,0.2));
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-bg-blur {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107,70,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .float-1 { left: -30px; }
  .float-2 { right: -30px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-main { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: 1; }

  .showcase-inner { grid-template-columns: 1fr; gap: 48px; }
  .showcase-phones { height: 320px; }

  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .ugc-inner { grid-template-columns: 1fr; gap: 48px; }
  .ugc-card-stack { height: 280px; }
  .ugc-card { width: 240px; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .cta-inner { padding: 48px 24px; }
  
  .phone-frame { width: 240px; height: 480px; }
}

/* ===== HERO + TECH BAND IN SAME SECTION ===== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0D0520 0%, #1A0A3E 35%, #2D1060 60%, #0D0520 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 420px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.hero-tech-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  pointer-events: none;
  padding: 70px 24px 44px;
  gap: 22px;
}

.hero-tech-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 5, 32, 0) 0%,
      rgba(13, 5, 32, 0.12) 14%,
      rgba(13, 5, 32, 0.34) 30%,
      rgba(13, 5, 32, 0.72) 56%,
      rgba(13, 5, 32, 0.96) 100%
    );
  z-index: -2;
}

.hero-tech-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 107, 157, 0.16) 0%, transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(107, 70, 255, 0.24) 0%, transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(107, 70, 255, 0.14) 0%, transparent 22%);
  filter: blur(42px);
  z-index: -1;
  opacity: 0.95;
}

.hero-tech-band__center {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tech-band__center p {
  font-size: clamp(20px, 2.1vw, 22px);
  font-weight: 400;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.96);
}

.hero-tech-band__center h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.98);
  white-space: nowrap;
}

.hero-tech-band__center h2 .digit-wrapper {
  overflow: hidden;
  height: 0.95em;
  position: relative;
  display: inline-block;
  padding-top: 0.08em;
}

.hero-tech-band__center h2 .digit-list {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.hero-tech-band__center h2 .digit-list span {
  height: 1em;
  line-height: 1em;
}

.hero-tech-band__center h2 .comma {
  display: inline-flex;
  align-items: flex-end;
  padding: 0 0.04em;
  line-height: 1;
}

.hero-tech-band__bottom {
  position: static;
  transform: none;
  width: min(92vw, 980px);
  text-align: center;
  margin-top: 6px;
}

.hero-tech-band__bottom h3 {
  font-size: clamp(26px, 2vw, 40px);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 12px;
  color: #fff;
}

.hero-tech-band__bottom p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.hero-tech-band__bottom span {
  display: inline-block;
  font-size: 38px;
  line-height: 1;
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-bottom: 360px;
  }

  .hero-tech-band {
    min-height: 360px;
    padding: 56px 20px 30px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-bottom: 280px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 80px 0 0;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

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

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

  .hero-visual {
    display: none;
  }

  .hero-tech-band {
    min-height: 280px;
    padding: 42px 16px 22px;
    gap: 14px;
  }

  .hero-tech-band__center p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero-tech-band__center h2 {
    font-size: clamp(34px, 11vw, 64px);
  }

  .hero-tech-band__bottom h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hero-tech-band__bottom p {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hero-tech-band__bottom span {
    font-size: 28px;
  }
}
