/* 
  RelaxApp Landing Page Style System
  Aesthetic: Premium, immersive dark mode with electric pink/indigo neon accents, smooth micro-animations, and glassmorphism.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-darker: #07050e;
  --bg-dark: #0d0a1b;
  --bg-card: rgba(20, 16, 38, 0.65);
  --primary: #ff0f7b; /* Neon Pink */
  --secondary: #f53803; /* Bright Coral */
  --accent: #8a2be2; /* Electric Purple */
  --neon-blue: #00f0ff; /* Bright Cyan */
  --text-primary: #ffffff;
  --text-secondary: #a9a6c2;
  --text-muted: #676388;
  --success: #00ff87; /* Neon Green */
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Background Gradients & Glows */
.gradient-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: screen;
}

.blob-pink {
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-purple {
  background: var(--accent);
  bottom: 20%;
  left: -200px;
}

.blob-cyan {
  background: var(--neon-blue);
  top: 50%;
  right: -100px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 5, 14, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(7, 5, 14, 0.95);
  border-bottom: 1px solid rgba(255, 15, 123, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-normal);
}

header.scrolled .nav-wrapper {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-normal);
}

header.scrolled .logo img {
  height: 38px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(255, 15, 123, 0.4);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 15, 123, 0.7);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  z-index: 1001;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-family: var(--font-headings);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(255, 15, 123, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 15, 123, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Playstore Button style specifically */
.playstore-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-normal);
}

.playstore-badge-btn:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 15, 123, 0.3);
}

.playstore-badge-btn i {
  font-size: 32px;
  color: var(--neon-blue);
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-text span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.badge-text span:last-child {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-headings);
}

/* Section Common Styling */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 16px;
}

/* HERO SECTION */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 15, 123, 0.1);
  border: 1px solid rgba(255, 15, 123, 0.25);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag i {
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--text-primary);
  background: linear-gradient(135deg, #ffffff, var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* HERO VISUAL (Phone Mockup) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 
              0 0 40px rgba(138, 43, 226, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: rotate(-3deg);
  transition: var(--transition-normal);
}

.phone-container:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.95), 
              0 0 50px rgba(255, 15, 123, 0.35);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating widgets around mockup */
.floating-widget {
  position: absolute;
  z-index: 3;
  background: rgba(13, 10, 27, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.widget-1 {
  top: 15%;
  left: -40px;
  animation-delay: 0s;
}

.widget-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 2s;
}

.widget-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 15, 123, 0.15);
  color: var(--primary);
  font-size: 18px;
}

.widget-2 .widget-icon {
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-blue);
}

.widget-details h4 {
  font-size: 14px;
  font-weight: 600;
}

.widget-details p {
  font-size: 11px;
  color: var(--text-secondary);
}

.pulse-green {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--success);
  animation: pulse-glow-green 2s infinite;
}

/* LIVE CALL SIMULATOR */
.simulator-section {
  background: radial-gradient(circle at center, rgba(20, 16, 38, 0.8) 0%, var(--bg-darker) 100%);
  position: relative;
}

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

.simulator-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.sim-phone-wrapper {
  display: flex;
  justify-content: center;
}

.sim-phone {
  width: 330px;
  height: 660px;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  border: 4px solid #1c1a27;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.sim-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Screen state styles */
.sim-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 20px;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.sim-state.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Ringing State */
.sim-ringing {
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #2d1847 0%, #0d0a1b 100%);
  gap: 40px;
}

.caller-avatar {
  position: relative;
  margin-bottom: 20px;
}

.caller-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: 0 0 30px rgba(255, 15, 123, 0.5);
  position: relative;
  z-index: 2;
}

.ring-wave {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ring-ripple 2s infinite;
  opacity: 0;
  z-index: 1;
}

.ring-wave:nth-child(2) {
  animation-delay: 0.6s;
}

.ring-wave:nth-child(3) {
  animation-delay: 1.2s;
}

.caller-info {
  text-align: center;
}

.caller-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.caller-status {
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  width: 100%;
}

.action-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  transition: var(--transition-normal);
}

.decline-btn {
  background: #ff3b30;
  box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
}

.decline-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.7);
}

.accept-btn {
  background: var(--success);
  box-shadow: 0 5px 15px rgba(0, 255, 135, 0.4);
  animation: accept-pulse 1.5s infinite;
}

.accept-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 255, 135, 0.7);
}

/* Connecting State */
.sim-connecting {
  align-items: center;
  justify-content: center;
  background: #0d0a1b;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

.connecting-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Active Video Call State */
.sim-active {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.active-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.active-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 16px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.call-timer {
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
}

.call-header-name {
  font-size: 14px;
  font-weight: 600;
}

.host-badge-small {
  background: var(--success);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.pip-window {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 80px;
  height: 120px;
  background: #333;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 3;
}

.pip-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-controls {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.control-btn.end-btn {
  background: #ff3b30;
}

.control-btn.end-btn:hover {
  background: #ff2d20;
}

/* HOST SHOWCASE SECTION */
.hosts-section {
  background: var(--bg-dark);
}

.host-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-normal);
}

.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 15, 123, 0.3);
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.host-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  position: relative;
}

.host-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 15, 123, 0.3);
  box-shadow: 0 15px 40px rgba(255, 15, 123, 0.15);
}

.host-card-img-wrapper {
  position: relative;
  height: 320px;
  width: 100%;
}

.host-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.host-card:hover .host-card-img {
  transform: scale(1.05);
}

.host-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.status-online {
  background: rgba(0, 255, 135, 0.2);
  border: 1px solid rgba(0, 255, 135, 0.4);
  backdrop-filter: blur(6px);
}

.status-busy {
  background: rgba(255, 165, 0, 0.2);
  border: 1px solid rgba(255, 165, 0, 0.4);
  backdrop-filter: blur(6px);
}

.verified-badge {
  background: rgba(0, 240, 255, 0.2);
  border: 1px solid rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.rating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #ffb703;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.host-card-info {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.host-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.host-name {
  font-size: 20px;
  font-weight: 700;
}

.host-age {
  font-size: 15px;
  color: var(--text-secondary);
}

.host-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.host-actions {
  display: flex;
  gap: 12px;
}

.host-call-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition-normal);
}

.host-call-btn:hover {
  box-shadow: 0 0 15px rgba(255, 15, 123, 0.4);
}

.host-chat-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

.host-chat-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* APP FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 15, 123, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 15, 123, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border: 1px solid rgba(255, 15, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border-color: rgba(0, 240, 255, 0.2);
  color: var(--neon-blue);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  position: relative;
  z-index: 2;
}

/* HOW IT WORKS SECTION */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon-blue));
  z-index: 1;
  opacity: 0.3;
}

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

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 auto 30px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-normal);
}

.step-card:hover .step-num {
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(255, 15, 123, 0.5);
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #ffb703;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 30px;
}

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

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-meta h4 {
  font-size: 15px;
  font-weight: 600;
}

.user-meta span {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ SECTION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
  transition: var(--transition-normal);
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--neon-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 30px;
  color: var(--text-secondary);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* DOWNLOAD CTA BANNER */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(20, 16, 38, 0.95), rgba(7, 5, 14, 0.95)), 
              radial-gradient(circle at top right, rgba(255, 15, 123, 0.25), transparent 60%);
  border: 1px solid rgba(255, 15, 123, 0.2);
  border-radius: 40px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(0, 240, 255, 0.15), transparent 50%);
  z-index: -1;
}

.cta-banner h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 60%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* FOOTER */
footer {
  background: #040308;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-info p {
  margin-top: 20px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links-title {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 15, 123, 0.5);
}

.copyright {
  color: var(--text-muted);
}

/* ANIMATIONS */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 15, 123, 0.7); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(255, 15, 123, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 15, 123, 0); }
}

@keyframes pulse-glow-green {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(0, 255, 135, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

@keyframes accept-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0, 255, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

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

@keyframes ring-ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .simulator-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
  .features-grid, .steps-wrapper, .testimonials-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-darker);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 40px;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .phone-container {
    transform: rotate(0deg);
    margin: 0 auto;
    max-width: 290px;
    height: 580px;
  }
  
  .floating-widget {
    display: none; /* Hide floating absolute elements to prevent mobile horizontal scroll overflow */
  }
  
  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .simulator-box {
    padding: 24px;
  }
  
  .sim-phone {
    margin: 0 auto;
    max-width: 290px;
    height: 580px;
  }
  
  .features-grid, .steps-wrapper, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .steps-wrapper::before {
    display: none;
  }
  
  .cta-banner {
    padding: 60px 24px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  .phone-container, .sim-phone {
    max-width: 260px;
    height: 520px;
  }
  .btn {
    width: 100%;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
