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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #06b6d4;
  --accent: #f97316;
  --accent-2: #ec4899;
  --dark: #0a0e1a;
  --dark-2: #111827;
  --dark-3: #1f2937;
  --light: #f9fafb;
  --gray: #9ca3af;
  --gray-2: #6b7280;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-cta: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ============ FLOATING BACKGROUND ============ */
.bg-decor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  top: 40%;
  right: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--secondary);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 60%;
  left: 60%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-cta);
  border-radius: 10px;
  font-size: 1.25rem;
  color: white;
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}

.logo:hover .logo-icon {
  transform: rotate(180deg);
}

.logo .accent {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass-bg);
  border-color: var(--primary);
  color: white;
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.glow-btn:hover::before {
  width: 400px;
  height: 400px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-title {
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-title::first-line {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.highlight-card {
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.highlight-card h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.highlight-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Statistics */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}

.stat-label {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .floating-cards {
    display: block;
  }
}

.float-card {
  position: absolute;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  animation: floatCard 6s infinite ease-in-out;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.float-card .fc-icon {
  font-size: 1.25rem;
}

.card-1 {
  top: 25%;
  right: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 2%;
  animation-delay: -2s;
}

.card-3 {
  top: 70%;
  right: 10%;
  animation-delay: -4s;
}

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

/* ============ GLASS EFFECT ============ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

/* ============ SERVICES ============ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  border-radius: 16px;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  padding: 0.4rem 0;
  color: var(--light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.card-cta {
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease;
}

.card-cta:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

/* ============ PROCESS TIMELINE ============ */
.process {
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent-2));
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--dark), var(--shadow-glow);
}

.timeline-content {
  flex: 1;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(8px);
  border-color: var(--primary);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-1 {
  background: 
    radial-gradient(circle at 30% 40%, #667eea 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, #ec4899 0%, transparent 50%),
    linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.portfolio-2 {
  background: 
    radial-gradient(circle at 60% 30%, #f59e0b 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, #10b981 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.portfolio-3 {
  background: 
    radial-gradient(circle at 40% 50%, #06b6d4 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, #6366f1 0%, transparent 50%),
    linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.portfolio-4 {
  background: 
    radial-gradient(circle at 50% 30%, #f43f5e 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, #8b5cf6 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.portfolio-5 {
  background: 
    radial-gradient(circle at 30% 60%, #fbbf24 0%, transparent 50%),
    radial-gradient(circle at 70% 40%, #14b8a6 0%, transparent 50%),
    linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.portfolio-6 {
  background: 
    radial-gradient(circle at 50% 40%, #a855f7 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, #3b82f6 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.portfolio-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.portfolio-overlay p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============ ARTICLE ============ */
.article {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.article-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.article-header h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 1rem 0;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.article-meta {
  color: var(--gray);
  font-size: 1.1rem;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.8;
}

.article-body h2 {
  margin: 3rem 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  padding-left: 1rem;
  border-left: 4px solid;
  border-image: var(--gradient-cta) 1;
}

.article-body h3 {
  margin: 2rem 0 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--secondary);
}

.article-body a {
  color: var(--secondary);
  border-bottom: 1px dashed var(--secondary);
  padding-bottom: 2px;
}

.article-body a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.lead-paragraph {
  font-size: 1.2rem !important;
  color: var(--light);
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.callout-box, .tip-box, .warning-box, .final-cta {
  padding: 1.75rem;
  border-radius: 16px;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.callout-icon, .warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.callout-box {
  border-left: 4px solid var(--primary);
}

.callout-box h4, .tip-box h4, .warning-box h4, .final-cta h3 {
  margin-bottom: 0.5rem;
}

.callout-box p, .tip-box p, .warning-box p, .final-cta p {
  margin-bottom: 0;
  color: var(--gray);
}

.tip-box {
  border-left: 4px solid var(--success);
}

.warning-box {
  border-left: 4px solid var(--warning);
}

.final-cta {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
}

.final-cta h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.final-cta p {
  margin-bottom: 2rem;
  color: var(--gray);
  font-size: 1.1rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.benefit-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 1.5rem 0;
}

.checklist li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gradient-cta);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-table {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.comparison-table th {
  padding: 1rem;
  background: var(--gradient-cta);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1rem;
  border-top: 1px solid var(--glass-border);
  color: var(--light);
  font-size: 0.95rem;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Cost Range */
.cost-range {
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.cost-range h4 {
  margin-bottom: 1.25rem;
  text-align: center;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-value {
  color: var(--secondary);
  font-weight: 600;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pros, .cons {
  padding: 1.75rem;
  border-radius: 16px;
}

.pros {
  border-top: 4px solid var(--success);
}

.cons {
  border-top: 4px solid var(--warning);
}

.pros h3, .cons h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pros ul, .cons ul {
  list-style: none;
}

.pros li, .cons li {
  padding: 0.5rem 0;
  color: var(--light);
  font-size: 0.95rem;
}

/* Mistakes List */
.mistakes-list {
  margin: 2rem 0;
}

.mistake-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mistake-item:hover {
  transform: translateX(8px);
  border-color: var(--primary);
}

.mistake-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mistake-item h4 {
  margin-bottom: 0.25rem;
}

.mistake-item p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Checklist Box */
.checklist-box {
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.checklist-box h4 {
  margin-bottom: 1.25rem;
}

.checklist-box ul {
  list-style: none;
}

.checklist-box li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
}

.checklist-box li:last-child {
  border-bottom: none;
}

.checklist-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.initials {
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-footer h4 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.testimonial-footer p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.testimonial-footer .location {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2rem;
}

.contact-info, .contact-form {
  padding: 2.5rem;
  border-radius: 24px;
}

.contact-info h3, .contact-form h3 {
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item span {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.info-item a, .info-item p {
  color: var(--light);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--secondary);
}

.contact-cta-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-cta-group .btn {
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--light);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-group option {
  background: var(--dark-2);
  color: var(--light);
}

/* ============ FOOTER ============ */
.footer {
  padding: 4rem 0 2rem;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col p {
  color: var(--gray);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.footer-col h4 {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 0.35rem 0;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.contact-list li {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.contact-list a {
  color: var(--light);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-cta);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.25rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

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

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info, .contact-form {
    padding: 1.75rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .callout-box, .tip-box, .warning-box {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .mistake-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .mistake-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-cta);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}