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

:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --secondary: #F59E0B;
  --accent: #EC4899;
  --bg-dark: #0F172A;
  --bg-light: #F8FAFC;
  --bg-cream: #FFFBF5;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-bg-light: rgba(255, 255, 255, 0.7);
  --glass-border-light: rgba(255, 255, 255, 0.9);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-med: 0 20px 60px rgba(79, 70, 229, 0.15);
  --shadow-strong: 0 25px 80px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

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

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ====== DECORATIVE ORBS ====== */
.decor-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

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

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 40%;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--secondary);
  bottom: 10%;
  right: -150px;
  animation: float 30s ease-in-out infinite;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: #10B981;
  bottom: 40%;
  left: 30%;
  animation: float 22s ease-in-out infinite reverse;
}

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

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1280px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-light);
  border-radius: 24px;
  padding: 14px 28px;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  top: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 12px;
  transition: var(--transition);
}

.nav-links a:hover {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.btn-secondary:hover {
  background: rgba(79, 70, 229, 0.15);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

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

.glow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.glow-btn:hover::before {
  transform: translateX(100%);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ====== HERO ====== */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  animation: slideDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(79, 70, 229, 0); }
}

.hero-title {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Trust Row */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1.2rem;
}

/* Floating Cards */
.floating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.f-card {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.f-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.f-card-1 { animation: floatCard 6s ease-in-out infinite; }
.f-card-2 { animation: floatCard 6s ease-in-out infinite 1s; }
.f-card-3 { animation: floatCard 6s ease-in-out infinite 2s; }

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

.f-card:hover {
  animation-play-state: paused;
}

.f-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.f-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* ====== SECTIONS ====== */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ====== STATS ====== */
.stats {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
  opacity: 0;
  transition: var(--transition);
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  margin-top: 8px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ====== GLASS ====== */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) perspective(1000px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.service-cta {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-cta:hover {
  gap: 12px;
}

/* ====== PROCESS TIMELINE ====== */
.process {
  background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.03) 50%, transparent 100%);
}

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

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

.timeline-item {
  position: relative;
  padding-left: 110px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-num {
  position: absolute;
  left: 20px;
  top: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
  border: 4px solid var(--bg-cream);
  z-index: 2;
}

.timeline-content {
  padding: 24px 28px;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.portfolio-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2);
}

.portfolio-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.placeholder-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.p-shape {
  position: relative;
}

.p-shape-arch {
  width: 140px;
  height: 180px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 70px 70px 8px 8px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.p-shape-grid {
  width: 140px;
  height: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.p-shape-grid::before,
.p-shape-grid::after {
  content: '';
  grid-column: span 3;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.p-shape-circles {
  position: relative;
  width: 140px;
  height: 140px;
}

.p-shape-circles::before,
.p-shape-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.p-shape-circles::before {
  width: 90px;
  height: 90px;
  top: 0;
  left: 0;
}

.p-shape-circles::after {
  width: 70px;
  height: 70px;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
}

.p-shape-triangle {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h4 {
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.portfolio-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ====== ARTICLE ====== */
.article-section {
  background: white;
  padding: 100px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-header h1 {
  margin: 20px 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.article-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-body {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.article-body h2 {
  margin: 48px 0 20px;
  padding-top: 24px;
  position: relative;
}

.article-body h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.article-body h3 {
  margin: 32px 0 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 18px;
  color: #334155;
  line-height: 1.8;
}

.article-body a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary);
  transition: var(--transition);
}

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

.article-body ul, .article-body ol {
  margin: 20px 0;
  padding-left: 28px;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Callout Boxes */
.callout-box {
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(236, 72, 153, 0.05));
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.callout-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.callout-box p {
  margin: 0;
  line-height: 1.7;
}

.tip-box {
  padding: 20px 24px;
  background: #FEF3C7;
  border-left: 4px solid var(--secondary);
  border-radius: 12px;
  margin: 32px 0;
}

.tip-header {
  font-weight: 700;
  color: #92400E;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.warning-box {
  padding: 20px 24px;
  background: #FEE2E2;
  border-left: 4px solid #EF4444;
  border-radius: 12px;
  margin: 32px 0;
}

.warning-header {
  font-weight: 700;
  color: #991B1B;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.quote-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(245, 158, 11, 0.05));
  border-radius: 16px;
  margin: 32px 0;
  text-align: center;
  position: relative;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}

.quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-box cite {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: normal;
}

.feature-card {
  padding: 28px;
  background: rgba(79, 70, 229, 0.04);
  border-radius: 16px;
  margin: 28px 0;
  border: 1px solid rgba(79, 70, 229, 0.08);
}

.feature-card h4 {
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.feature-box {
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(79, 70, 229, 0.1);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
}

.feature-box h4 {
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.comparison-table {
  margin: 32px 0;
  overflow-x: auto;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(79, 70, 229, 0.02);
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.stat-mini {
  padding: 24px 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(236, 72, 153, 0.05));
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(79, 70, 229, 0.08);
}

.stat-mini strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-mini span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.budget-table {
  padding: 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(236, 72, 153, 0.05));
  border-radius: 16px;
  margin: 32px 0;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.budget-table h4 {
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

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

.budget-row span:last-child {
  color: var(--primary);
  font-weight: 700;
}

.process-list {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin: 28px 0;
}

.process-list li {
  counter-increment: step;
  padding: 14px 14px 14px 60px;
  position: relative;
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(79, 70, 229, 0.08);
  transition: var(--transition);
}

.process-list li:hover {
  border-color: rgba(79, 70, 229, 0.2);
  transform: translateX(4px);
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.mistake-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.mistake-list li {
  padding: 14px 16px;
  background: #FEF2F2;
  border-left: 3px solid #EF4444;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #7F1D1D;
}

.summary-cta {
  margin-top: 48px;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.summary-cta h4 {
  color: white;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
}

.summary-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.summary-cta .btn-primary {
  background: white;
  color: var(--primary);
}

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

.faq-item {
  margin-bottom: 14px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(79, 70, 229, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-plus {
  width: 28px;
  height: 28px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-plus {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-content p {
  margin: 0;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.04) 50%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(79, 70, 229, 0.15);
}

.stars {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.98rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-initials {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.author-info h4 {
  margin-bottom: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3, .contact-form-wrap h3 {
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a, .contact-item p {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-form-wrap {
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

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

/* ====== FOOTER ====== */
.footer {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #F1F5F9 100%);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(79, 70, 229, 0.1);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ====== ANIMATIONS ====== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    padding-left: 90px;
  }
  .timeline-num {
    left: 0;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 18px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero {
    padding: 140px 0 60px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trust-row {
    gap: 10px;
  }
  
  .trust-item {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-plus {
    font-size: 2rem;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .timeline-num {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .article-body {
    font-size: 0.95rem;
  }
  
  .comparison-table {
    font-size: 0.85rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
  
  .contact-form-wrap {
    padding: 24px;
  }
  
  .summary-cta {
    padding: 28px 20px;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 10px;
}

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

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