/* ─── Reset & Variables ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #34D399;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  --bg-dark: #080b0a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.06);
  --glass-border-hover: rgba(255,255,255,0.12);
  --text-primary: #f0faf5;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --section-pad: clamp(80px, 12vh, 140px);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: var(--emerald); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 3px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Particles ─── */
#particle-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,11,10,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(8,11,10,0.92); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald), #047857);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.nav-logo span { color: #fff; -webkit-text-fill-color: #fff; }
.nav-links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--emerald-light); background: rgba(16,185,129,0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)) !important;
  color: #fff !important; font-weight: 600 !important;
  box-shadow: 0 0 20px var(--emerald-glow);
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 30px var(--emerald-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span {
  width: 26px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s; display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── Containers & Sections ─── */
section { position: relative; z-index: 1; padding: var(--section-pad) 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 12px;
  background: rgba(16,185,129,0.1); padding: 6px 18px; border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem; max-width: 600px; line-height: 1.7;
}

/* ─── Glass Card ─── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s ease;
}
.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: 100px; cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px var(--emerald-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 50px var(--emerald-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary); font-weight: 500; font-size: 0.95rem;
  border: 1px solid var(--glass-border-hover); border-radius: 100px; cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-secondary:hover { border-color: var(--emerald); background: rgba(16,185,129,0.05); transform: translateY(-3px); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 24px;
  position: relative; z-index: 1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; color: var(--emerald-light); margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald), #047857, var(--emerald-light));
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero h1 .outline-text {
  -webkit-text-stroke: 1.5px var(--text-primary);
  -webkit-text-fill-color: transparent;
  text-stroke: 1.5px var(--text-primary);
}
.hero p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-avatar-frame {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #047857, #064e3b);
  padding: 4px;
  position: relative;
}
.hero-avatar-frame img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.hero-avatar-frame .ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.15);
  animation: ring-expand 4s ease-in-out infinite;
}
.hero-avatar-frame .ring:nth-child(1) { inset: -20px; animation-delay: 0s; }
.hero-avatar-frame .ring:nth-child(2) { inset: -40px; animation-delay: 1s; }
.hero-avatar-frame .ring:nth-child(3) { inset: -60px; animation-delay: 2s; }
@keyframes ring-expand {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.1; }
}
.floating-badge {
  position: absolute;
  background: rgba(8,11,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 12px 20px; border-radius: 14px;
  font-size: 0.8rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  animation: float 5s ease-in-out infinite;
}
.floating-badge .badge-icon { color: var(--emerald); font-size: 1.2rem; }
.floating-badge.b1 { top: 10%; right: -5%; animation-delay: 0s; }
.floating-badge.b2 { bottom: 15%; left: -8%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.hero-stat h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--emerald-light); }
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── About ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap {
  position: relative;
  border-radius: 24px; overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}
.about-image-wrap .exp-badge {
  position: absolute; bottom: -10px; right: -10px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  padding: 20px 28px; border-radius: 16px;
  text-align: center; color: #fff;
}
.about-image-wrap .exp-badge h4 { font-size: 2.2rem; font-weight: 800; font-family: var(--font-display); }
.about-image-wrap .exp-badge p { font-size: 0.75rem; opacity: 0.85; }
.about-text h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-tags span {
  padding: 8px 18px; border-radius: 100px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.15);
  color: var(--emerald-light); font-size: 0.8rem; font-weight: 500;
}

/* ─── Skills ─── */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 48px; }
.skill-card {
  padding: 28px 20px; text-align: center;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease; cursor: default;
  position: relative; overflow: hidden;
}
.skill-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.05), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.skill-card:hover::before { opacity: 1; }
.skill-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(16,185,129,0.1); }
.skill-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.skill-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.skill-bar-bg {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden; margin-top: 8px;
}
.skill-bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  width: 0; transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}

/* ─── FLM Modules ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.module-card {
  display: block; text-decoration: none; color: inherit;
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
}
.module-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 20px 60px rgba(16,185,129,0.08);
}
.module-card .module-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800;
  color: rgba(16,185,129,0.06);
  position: absolute; top: 8px; right: 16px;
  line-height: 1;
  transition: all 0.4s;
}
.module-card:hover .module-number { color: rgba(16,185,129,0.12); transform: scale(1.1); }
.module-card .module-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.module-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.module-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Image Slider ─── */
.slider-section { position: relative; z-index: 1; }
.slider-container {
  margin-top: 48px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--glass-border);
}
.slider-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.slider-slide {
  min-width: 100%; height: 100%;
  position: relative;
  flex-shrink: 0;
}
.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,11,10,0.7), rgba(8,11,10,0.2));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px;
}
.slider-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.slider-overlay p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(8,11,10,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #fff; font-size: 1.3rem;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.slider-btn:hover { background: var(--emerald); border-color: var(--emerald); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 20px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; transition: all 0.3s;
}
.slider-dot.active { background: var(--emerald); width: 30px; border-radius: 5px; }

/* ─── Projects ─── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.project-card {
  border-radius: 20px; overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover { transform: translateY(-8px); border-color: rgba(16,185,129,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.project-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-thumb .overlay {
  position: absolute; inset: 0;
  background: rgba(8,11,10,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.project-card:hover .overlay { opacity: 1; }
.project-body { padding: 24px; }
.project-body .project-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 8px;
}
.project-body h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.project-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.project-body .project-links { display: flex; gap: 12px; }
.project-body .project-links a { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; transition: color 0.3s; }
.project-body .project-links a:hover { color: var(--emerald-light); }

/* ─── Certifications ─── */
.certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.cert-card {
  padding: 28px 24px; text-align: center;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.4s;
}
.cert-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.2); }
.cert-card .cert-icon { font-size: 2.6rem; margin-bottom: 12px; display: block; }
.cert-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Testimonials Carousel ─── */
.testimonial-section { position: relative; z-index: 1; }
.testimonial-carousel {
  margin-top: 48px;
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 340px; flex-shrink: 0;
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  scroll-snap-align: start;
  transition: all 0.4s;
}
.testimonial-card:hover { border-color: rgba(16,185,129,0.2); transform: translateY(-4px); }
.testimonial-card .quote {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card .author .avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #047857);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-card .author h5 { font-size: 0.9rem; font-weight: 600; }
.testimonial-card .author p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.carousel-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; transition: all 0.3s;
}
.carousel-dots .dot.active { background: var(--emerald); width: 28px; border-radius: 4px; }

/* ─── Service Pages ─── */
.service-hero {
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; z-index: 1;
}
.service-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-hero h1 .highlight {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-hero .service-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--emerald-light); margin-bottom: 20px;
}
.service-hero p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; max-width: 520px; }
.service-hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.service-hero-visual .service-img {
  width: 100%; max-width: 480px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.service-section { padding: var(--section-pad) 24px; }
.service-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.service-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 28px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  transition: all 0.4s;
}
.service-card:hover { border-color: rgba(16,185,129,0.25); transform: translateY(-4px); }
.service-card .sc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.service-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.service-tools span {
  padding: 6px 14px; border-radius: 100px;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.12);
  color: var(--text-secondary); font-size: 0.78rem; font-weight: 500;
}
.service-process-step {
  display: flex; gap: 20px; margin-bottom: 28px;
  padding: 24px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  transition: all 0.4s;
}
.service-process-step:hover { border-color: rgba(16,185,129,0.2); transform: translateX(6px); }
.service-process-step .step-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--emerald);
  min-width: 50px;
  line-height: 1;
}
.service-process-step h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.service-process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.service-result-card {
  padding: 32px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(8,11,10,0.6));
  border: 1px solid rgba(16,185,129,0.15);
  text-align: center;
}
.service-result-card .big-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--emerald-light);
}
.service-result-card p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 4px; }

.service-cta {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--glass-border);
  position: relative; z-index: 1;
}
.service-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; margin-bottom: 16px;
}
.service-cta p { color: var(--text-secondary); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.service-cta .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.service-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
  margin-bottom: 24px; transition: color 0.3s;
}
.service-back-link:hover { color: var(--emerald-light); }
.service-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }

@media (max-width: 768px) {
  .service-hero .container { grid-template-columns: 1fr; text-align: center; }
  .service-hero p { margin: 0 auto 28px; }
  .service-hero-visual { display: none; }
  .service-grid-2 { grid-template-columns: 1fr; }
  .service-grid-3 { grid-template-columns: 1fr; }
  .service-metrics { grid-template-columns: 1fr; }
}

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-info-card {
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}
.contact-info-card h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 16px; }
.contact-info-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.contact-item .ci-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h5 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.contact-item a:hover { color: var(--emerald-light); }
.contact-form {
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: 100px; cursor: pointer;
  transition: all 0.4s;
  width: 100%;
  box-shadow: 0 0 30px var(--emerald-glow);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--emerald-glow); }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}
.whatsapp-float .tooltip {
  position: absolute; right: 70px;
  background: rgba(8,11,10,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 500;
  white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .tooltip { opacity: 1; transform: translateX(0); }

/* ─── Footer ─── */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  position: relative; z-index: 1;
}
footer .social-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
footer .social-links a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-secondary);
  font-size: 1.1rem; transition: all 0.3s;
}
footer .social-links a:hover { border-color: var(--emerald); color: var(--emerald-light); transform: translateY(-3px); }
footer p { color: var(--text-muted); font-size: 0.85rem; }

/* ─── Scroll Animations ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero .container { gap: 40px; }
  .hero-avatar-frame { width: 300px; height: 300px; }
  .floating-badge.b1 { top: 5%; right: 0; }
  .floating-badge.b2 { bottom: 10%; left: 0; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; padding: 20px;
    background: rgba(8,11,10,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }
  .hero-avatar-frame { width: 220px; height: 220px; }
  .floating-badge { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 280px; }
  .projects-grid { grid-template-columns: 1fr; }
  .slider-container { aspect-ratio: 16/9; }
  .slider-overlay { padding: 24px; }
  .slider-btn { width: 40px; height: 40px; font-size: 1rem; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.6rem; bottom: 16px; right: 16px; }
}

/* ─── Pulse dot (Hero badge) ─── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-badge .dot { animation: pulse-dot 2s infinite; }
