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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #f59e0b;
  --accent-glow: #fbbf24;
  --dark: #0f0f1e;
  --dark-2: #1a1a2e;
  --dark-3: #252540;
  --light: #f8fafc;
  --gray: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.4);
}

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

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

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--accent-glow);
}

img { max-width: 100%; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

.glow {
  position: relative;
}

.glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
  border-radius: inherit;
  z-index: -1;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glow:hover::before {
  opacity: 0.7;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 30, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.logo-icon {
  font-size: 1.8rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

.navbar .cta-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

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

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 30px 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
  animation: blobFloat 20s ease-in-out infinite;
}

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

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  bottom: -200px;
  right: -200px;
  animation-delay: -10s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: #a855f7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

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

.floating-shape {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--gradient-2);
  top: 15%;
  left: 8%;
  opacity: 0.3;
  animation: shapeFloat 15s ease-in-out infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: var(--gradient-3);
  bottom: 20%;
  right: 10%;
  opacity: 0.3;
  animation: shapeFloat 12s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(180deg); }
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

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

.counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

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

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

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

.service-card {
  padding: 35px 30px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card ul li {
  padding: 6px 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.card-cta {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}

/* ===== STATS ===== */
.stats-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.stat-card {
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
}

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

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-card p {
  color: var(--gray);
  font-weight: 500;
}

/* ===== PROCESS / TIMELINE ===== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-1);
  border-radius: 3px;
}

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

.step-number {
  position: absolute;
  left: 0;
  top: 15px;
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  z-index: 2;
}

.timeline-content {
  padding: 25px 30px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

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

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

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

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.placeholder::before,
.placeholder::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: placeholderMove 8s ease-in-out infinite;
}

.placeholder-1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.placeholder-1::before { width: 200px; height: 200px; background: rgba(255,255,255,0.2); top: -50px; right: -50px; }
.placeholder-1::after { width: 120px; height: 120px; background: rgba(245,158,11,0.4); bottom: 20px; left: 20px; }

.placeholder-2 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.placeholder-2::before { width: 250px; height: 250px; background: rgba(255,255,255,0.15); top: -80px; left: -80px; }
.placeholder-2::after { width: 100px; height: 100px; background: rgba(251,191,36,0.5); bottom: -30px; right: 30px; }

.placeholder-3 { background: linear-gradient(135deg, #059669, #06b6d4); }
.placeholder-3::before { width: 180px; height: 180px; background: rgba(255,255,255,0.2); top: 20px; right: 20px; }
.placeholder-3::after { width: 140px; height: 140px; background: rgba(139,92,246,0.4); bottom: -40px; left: -30px; }

.placeholder-4 { background: linear-gradient(135deg, #dc2626, #f59e0b); }
.placeholder-4::before { width: 200px; height: 200px; background: rgba(255,255,255,0.15); top: -40px; left: 50px; }
.placeholder-4::after { width: 120px; height: 120px; background: rgba(16,185,129,0.4); bottom: 20px; right: 20px; }

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h3 {
  margin-bottom: 5px;
  color: white;
}

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

/* ===== ARTICLE ===== */
.article {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.15);
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

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

.article-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gradient-1);
  border-radius: 50px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 50px 0 20px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  color: white;
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 25px 0 15px;
  color: var(--accent);
}

.article-content p {
  margin-bottom: 20px;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.lead {
  font-size: 1.2rem !important;
  color: #f1f5f9 !important;
  font-weight: 500;
}

.article-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.article-content ul li {
  padding: 8px 0;
  color: #e2e8f0;
}

.callout-box, .tip-box, .warning-box, .quote-box, .stats-box, .feature-list, .comparison-table {
  padding: 25px 30px;
  margin: 30px 0;
}

.callout-box {
  border-left: 4px solid #3b82f6;
}

.tip-box {
  border-left: 4px solid #10b981;
}

.warning-box {
  border-left: 4px solid #f59e0b;
}

.quote-box blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #f1f5f9;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.callout-box h4, .tip-box h4, .warning-box h4 {
  margin-bottom: 10px;
  color: white;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.stats-box .stat strong {
  display: block;
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stats-box .stat span {
  color: var(--gray);
  font-size: 0.9rem;
}

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

.comparison-table {
  overflow-x: auto;
}

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

.comparison-table th, .comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
  background: rgba(99, 102, 241, 0.15);
  color: white;
}

.comparison-table td {
  color: #e2e8f0;
}

/* ===== FAQ ===== */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

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

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

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: rgba(0, 0, 0, 0.2);
}

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

.testimonial-card {
  padding: 35px 30px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.initials {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.testimonial-author strong {
  display: block;
  color: white;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  padding: 40px;
}

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

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item .icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: white;
  margin-bottom: 3px;
}

.info-item a, .info-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-form .btn {
  width: 100%;
  padding: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 70px 0 30px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-col h3, .footer-col h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-col h4 {
  font-size: 1.1rem;
}

.footer-col p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

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

.footer-col ul li {
  padding: 6px 0;
  color: var(--gray);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: var(--accent);
}

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

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

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  transition: all 0.3s ease;
}

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

.footer-website {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent);
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .navbar .cta-btn {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 55px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-container {
    padding: 0 20px;
  }
  
  section {
    padding: 70px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}