/* ========================================
   CREATIVA - ULTRA PREMIUM WELCOME PAGE CSS
   Complete Premium Styles - Version 2.0
   ======================================== */

/* ========================================
   VARIABLES
   ======================================== */
:root {
  --primary: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-dark: #7C3AED;
  --secondary: #EC4899;
  --secondary-light: #F472B6;
  --secondary-dark: #DB2777;
  --accent-1: #F59E0B;
  --accent-2: #10B981;
  --bg-dark: #0F172A;
  --bg-light: #FFFFFF;
  --bg-creative: #FDF2F8;
  --bg-gray: #F8FAFC;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent-1));
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-3xl: 48px;
  --radius-full: 9999px;
  --font-display: 'Clash Display', sans-serif;
  --font-primary: 'Inter', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ========================================
   ANIMATIONS - UPDATED
   ======================================== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  75% {
    transform: translateY(15px) rotate(-2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }

  50% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }

  75% {
    transform: translate(-30px, -20px) rotate(3deg);
  }
}

/* ========================================
   LOADER
   ======================================== */
.premium-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-creative);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.premium-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: pulse 2s ease infinite;
}

.loader-progress {
  width: 300px;
  height: 4px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: var(--gradient-primary);
  animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ========================================
   HERO SECTION - CINEMATIC
   ======================================== */
.hero-section {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-creative) 0%, white 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -200px;
  animation: float 20s ease infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -200px;
  left: -200px;
  animation: float 15s ease infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-1);
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease infinite;
}

/* Floating Shapes - New */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  opacity: 0.1;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: 10%;
  right: 5%;
  opacity: 0.1;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-1);
  top: 30%;
  right: 20%;
  opacity: 0.1;
  animation-delay: -2s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: var(--accent-2);
  bottom: 20%;
  left: 15%;
  opacity: 0.1;
  animation-delay: -7s;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 60% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 20%);
  animation: pulse 10s ease infinite;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 60px;
}

.hero-badge {
  margin-bottom: 2rem;
  animation: slideInDown 0.8s ease;
}

.badge-glow {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
  animation: slideInUp 0.8s ease;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  animation: slideInUp 0.8s ease 0.1s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease 0.2s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-primary i {
  transition: transform 0.2s ease;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:hover i {
  transform: translateX(5px);
}

.btn-outline i {
  transition: transform 0.2s ease;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.hero-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInUp 0.8s ease 0.3s both;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.avatar-group img:hover {
  transform: scale(1.1);
  z-index: 10;
}

.avatar-group img:not(:first-child) {
  margin-left: -15px;
}

.avatar-group span {
  margin-left: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ========================================
   WHY BUY SECTION - NEW
   ======================================== */
.why-buy-section {
  padding: 80px 0;
  background: white;
}

.why-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.why-card:hover .why-icon {
  background: var(--gradient-primary);
}

.why-card:hover .why-icon i {
  color: white;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.why-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.why-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.why-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

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

@media (max-width: 576px) {
  .why-buy-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   USE CASES SECTION - NEW
   ======================================== */
.use-cases-section {
  padding: 80px 0;
  background: var(--bg-creative);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.use-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.use-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.use-card:hover .use-icon {
  background: var(--gradient-primary);
}

.use-card:hover .use-icon i {
  color: white;
}

.use-icon {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.use-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.use-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.use-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.use-tags span {
  background: rgba(139, 92, 246, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
}

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

@media (max-width: 576px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  padding: 60px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
}

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

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SHOWCASE SECTION - BIGGER CARDS
   ======================================== */
.showcase-section {
  padding: 80px 0;
  background: var(--bg-creative);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.showcase-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-2xl);
  z-index: 10;
}

.showcase-card:hover .card-overlay {
  opacity: 1;
}

.showcase-card:hover img {
  transform: scale(1.15);
}

.card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.98), rgba(236, 72, 153, 0.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
}

.page-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.15;
  color: white;
  font-family: var(--font-display);
}

.card-overlay h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.card-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  max-width: 80%;
}

.card-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.card-features span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.card-link:hover {
  background: white;
  color: var(--primary);
  transform: scale(1.05);
}

.card-link:hover i {
  transform: translateX(5px);
}

.card-link i {
  transition: transform 0.2s ease;
}

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

@media (max-width: 576px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TECH STACK SECTION
   ======================================== */
.tech-section {
  padding: 80px 0;
  background: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.tech-item i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tech-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.tech-item small {
  color: var(--text-gray);
  font-size: 0.75rem;
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 80px 0;
  background: var(--bg-creative);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CUSTOMIZATION SECTION
   ======================================== */
.customization-section {
  padding: 80px 0;
  background: white;
}

.customization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.customization-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.customization-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.customization-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.customization-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.code-block {
  background: #1E293B;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  color: #E2E8F0;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .customization-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   HOW TO SECTION
   ======================================== */
.howto-section {
  padding: 80px 0;
  background: var(--bg-creative);
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.howto-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.howto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.1);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.howto-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.howto-card p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .howto-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FAQ SECTION - MINIMAL
   ======================================== */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-grid {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-question i {
  color: var(--text-gray);
  transition: transform 0.2s ease;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
}

.faq-answer p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer.show {
  display: block;
}

/* ========================================
   CTA SECTION - PREMIUM
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-creative);
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gradient-primary);
  padding: 4rem;
  border-radius: var(--radius-3xl);
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-card h2 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-card .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.trust-badge {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.trust-badge i {
  color: var(--accent-2);
  margin-right: 0.5rem;
}

.trust-badge a {
  color: white;
  text-decoration: underline;
  opacity: 0.9;
}

.trust-badge a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ========================================
   FOOTER - PREMIUM
   ======================================== */
.welcome-footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.support-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.support-email i {
  color: var(--secondary);
}

.support-email a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.support-email a:hover {
  color: var(--secondary);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-copyright {
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-copyright .credit i {
  color: var(--secondary);
  animation: pulse 1.5s ease infinite;
}

.footer-copyright .credit strong {
  color: white;
}

@media (max-width: 768px) {
  .footer-copyright {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* ========================================
   RESPONSIVE FIXES
   ======================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

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

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}