@charset "utf-8";

:root {
  --primary: #f472b6;
  --primary-dark: #ec4899;
  --accent: #f9a8d4;
  --dark: #0d0d0d;
  --dark-surface: #1a1a1a;
  --dark-card: #242424;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --gradient-hero: linear-gradient(135deg, #f472b6 0%, #f9a8d4 50%, #fce7f3 100%);
  --gradient-cta: linear-gradient(90deg, #ec4899 0%, #f472b6 100%);
  --shadow-glow: 0 0 60px rgba(244, 114, 182, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== HERO ========== */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
}

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

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

.hero-badge {
  display: inline-block;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0px auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-cta);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(167, 139, 250, 0.5);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.home-b-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin:40px auto 40px;
}

.cta-highlight {
  display: inline-block;
  gap: 12px;
  background: rgba(74, 222, 128, 0.2);
  color:#4ade80!important;
  width:300px;
  padding: 14px 0px;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  margin:0 auto;
}

.cta-highlight a{
  color:#4ade80!important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-visual {
    order: -1;
  }

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

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 50px 30px;
  }

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