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

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  --accent-2: #ec4899;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --light: #f8fafc;
  --light-2: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #475569;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --gradient-mesh: 
    radial-gradient(at 20% 20%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 10%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(236, 72, 153, 0.1) 0px, transparent 50%),
    radial-gradient(at 90% 90%, rgba(6, 182, 212, 0.12) 0px, transparent 50%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #f8fafc;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== ANIMATED BACKGROUND ========== */
.bg-gradient {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-mesh);
  z-index: -3;
  pointer-events: none;
}

.floating-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -2;
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px; height: 400px;
  background: #0ea5e9;
  top: -100px; left: -100px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: #8b5cf6;
  top: 40%; right: -150px;
  animation-delay: -5s;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #ec4899;
  bottom: -100px; left: 20%;
  animation-delay: -10s;
}
.shape-4 {
  width: 250px; height: 250px;
  background: #06b6d4;
  top: 70%; left: 60%;
  animation-delay: -15s;
}

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

/* ========== NAVIGATION ========== */
.glass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
}

.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.logo-text em {
  font-style: normal;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.nav-links a:hover {
  color: var(--primary-dark);
}

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

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  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); }

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); }
}

.hero-h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.hero-h1::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 80px; height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.hero-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 720px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1.5px solid var(--light-2);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  color: var(--primary-dark);
}

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

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

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

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

.highlight-card {
  padding: 1.5rem;
  text-align: center;
}

.highlight-card i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
  display: block;
}

.highlight-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-2);
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.plus, .percent {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========== SECTION HEADER ========== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 1rem 0;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.tag-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 0;
  position: relative;
}

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

.service-card {
  background: white;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 60px; height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.feature-list i {
  color: var(--success);
  font-size: 0.85rem;
}

.service-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.8rem;
  color: var(--accent);
}

/* ========== PROCESS TIMELINE ========== */
.process {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.03), transparent);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), 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-primary);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
  z-index: 2;
}

.timeline-card {
  flex: 1;
  padding: 1.8rem;
  background: white;
  border: 1px solid var(--light-2);
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

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

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

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

.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.article-body .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
}

.article-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 3rem 0 1rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 0.8rem;
}

.article-body h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.article-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--dark-2);
}

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

.article-body a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(14, 165, 233, 0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.article-body a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* Callout Boxes */
.callout-box, .warning-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  align-items: flex-start;
}

.callout-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.05));
  border-left: 4px solid var(--primary);
}

.warning-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.05));
  border-left: 4px solid var(--warning);
}

.callout-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.warning-box .callout-icon { color: var(--warning); }

.callout-box h4, .warning-box h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.callout-box p, .warning-box p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

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

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

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(14, 165, 233, 0.03); }

/* Checklist */
.checklist {
  background: white;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-2);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: var(--text-light);
}

.checklist li i {
  color: var(--success);
  font-size: 1.1rem;
}

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

.pros, .cons {
  padding: 1.8rem;
  border-radius: var(--radius-md);
}

.pros {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros h4, .cons h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros h4 i { color: var(--success); }
.cons h4 i { color: var(--danger); }

.pros ul li, .cons ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pros ul li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0.4rem;
  color: var(--success);
  font-weight: 700;
}

.cons ul li::before {
  content: '−';
  position: absolute;
  left: 0; top: 0.4rem;
  color: var(--danger);
  font-weight: 700;
}

/* Stats Box */
.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
}

.stats-box-item {
  text-align: center;
  padding: 1rem;
}

.stats-box-item h4 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.stats-box-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Blockquote */
.article-body blockquote {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
  border-left: 4px solid var(--accent);
  padding: 2rem 2rem 1.5rem;
  margin: 2.5rem 0;
  border-radius: var(--radius-md);
  position: relative;
}

.article-body blockquote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 15px;
  font-size: 4rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}

.article-body blockquote p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  padding-top: 1rem;
}

.article-body blockquote cite {
  display: block;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA Box */
.cta-article-box {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.cta-article-box h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.cta-article-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.cta-article-box .btn-primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-article-box .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.cta-article-box .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03));
}

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

.testimonial-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--light-2);
}

.testimonial-rating {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-2);
}

.initials {
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========== FAQ ========== */
.faq {
  padding: 6rem 0;
  background: white;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.04));
}

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

.contact-info, .contact-form {
  padding: 2.5rem;
  background: white;
  border: 1px solid var(--light-2);
}

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

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px; height: 44px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-item a, .info-item p {
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

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

.contact-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--light-2);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: white;
  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 4px rgba(14, 165, 233, 0.1);
}

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

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

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

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

.footer-logo {
  margin-bottom: 1.2rem;
}

.footer-logo .logo-text {
  color: white;
}

.brand-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-list li i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-primary);
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5);
  z-index: 999;
  animation: pulse 2s infinite;
  overflow: hidden;
}

.floating-call span {
  display: none;
}

.floating-call:hover {
  width: auto;
  border-radius: 100px;
  padding: 0 1.5rem;
  gap: 0.5rem;
  animation: none;
}

.floating-call:hover span {
  display: inline;
}

.floating-call {
  transition: all 0.3s ease;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5), 0 0 0 0 rgba(14, 165, 233, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(14, 165, 233, 0.5), 0 0 0 20px rgba(14, 165, 233, 0); }
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    align-items: flex-start;
    gap: 1.2rem;
    border-left: 1px solid var(--light-2);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

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

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

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

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

  .timeline-item {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 8rem 1rem 3rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

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

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

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

  .article-body {
    font-size: 0.98rem;
  }

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

  .cta-article-box {
    padding: 2rem 1.5rem;
  }

  .floating-call {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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