:root {
  --bg: #0a0f1a;
  --bg2: #0f1525;
  --surf: #131b2e;
  --card: #1a2540;
  --teal: #00f5d4;
  --cyan: #00d4ff;
  --gold: #ffd700;
  --white: #f0f8ff;
  --text-muted: #8fa3bf;
  --border: rgba(0, 245, 212, 0.1);
  --glow-teal: 0 0 30px rgba(0, 245, 212, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatPhoto { 0%, 100% { transform: translateY(0) scale(1) rotate(0deg); } 50% { transform: translateY(-20px) scale(1.03) rotate(1deg); } }
@keyframes floatPhotoAwards { 0%, 100% { transform: translateY(0) scale(1.03) rotate(0deg); } 50% { transform: translateY(-8px) scale(1.05) rotate(0.4deg); } }
@keyframes glowSweep { 0% { transform: translateX(-100%) skewX(-15deg); } 100% { transform: translateX(200%) skewX(-15deg); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 212, 0.3); } 50% { box-shadow: 0 0 40px rgba(0, 245, 212, 0.6); } }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 26, 0.75);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 12px 5%;
  background: rgba(10, 15, 26, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.4)); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 28px; border: 1px solid var(--teal); border-radius: 8px; background: transparent; color: var(--teal); font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.nav-cta:hover { background: rgba(0, 245, 212, 0.1); box-shadow: var(--glow-teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--teal); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(80%, 320px);
  height: 100vh;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.4s ease;
  list-style: none;
}
.nav-mobile-menu.active { right: 0; }
.nav-mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.nav-mobile-menu a:hover { color: var(--teal); }
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile-overlay.active { opacity: 1; pointer-events: auto; }

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2a4a 25%, #131b2e 50%, #1a2a4a 75%, #0a0f1a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-photo-mini {
  position: fixed;
  z-index: 40;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(0, 245, 212, 0.4);
  pointer-events: none;
  will-change: top, left, width, height, border-radius, opacity;
}
.hero-photo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 5%;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-content h1 .grad {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-cursor {
  display: inline-block;
  width: 3px;
  margin-left: 4px;
  background: var(--gold);
  animation: cursorBlink 0.8s step-end infinite;
  vertical-align: baseline;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-desc strong { color: var(--teal); font-weight: 600; }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.8s backwards;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0, 245, 212, 0.5); }

.btn-secondary {
  padding: 14px 36px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: rgba(0, 245, 212, 0.08);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(0, 245, 212, 0.18); box-shadow: var(--glow-teal); transform: translateY(-2px); }

.widget-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.eddyai-widget {
  position: relative;
}

.askeddy-widget { position: relative; }
.askeddy-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.askeddy-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,215,0,0.25); }
.askeddy-btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.askeddy-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 260px;
  padding: 20px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.25s ease;
}
.askeddy-panel.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.askeddy-panel h4 { font-family: 'Syne', sans-serif; font-size: 1rem; margin-bottom: 8px; color: var(--gold); }
.askeddy-panel p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.askeddy-panel .askeddy-close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; }

.eddyai-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 245, 212, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.eddyai-btn:hover { transform: translateY(-3px) scale(1.03); }

.eddyai-btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg);
  opacity: 0.7;
}

.eddyai-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 280px;
  max-width: calc(100vw - 32px);
  padding: 0;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.eddyai-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.eddyai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 245, 212, 0.04);
}

.eddyai-header-title { display: flex; align-items: center; gap: 8px; }
.eddyai-header-title .dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }

.eddyai-panel h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--teal);
  margin: 0;
}

.eddyai-panel .eddyai-close {
  position: static;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.eddyai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  min-height: 160px;
}

.eddyai-msg { max-width: 88%; padding: 8px 12px; border-radius: 12px; font-size: 0.78rem; line-height: 1.5; }
.eddyai-msg.bot { align-self: flex-start; background: rgba(255,255,255,0.05); color: var(--white); border: 1px solid var(--border); border-bottom-left-radius: 2px; }
.eddyai-msg.user { align-self: flex-end; background: linear-gradient(135deg, var(--teal), var(--cyan)); color: var(--bg); font-weight: 600; border-bottom-right-radius: 2px; }

.eddyai-suggestions { display: flex; flex-wrap: wrap; gap: 5px; padding: 0 14px 10px; }
.eddyai-suggestion {
  background: rgba(0,245,212,0.08); border: 1px solid var(--border); color: var(--teal);
  font-size: 0.68rem; padding: 5px 9px; border-radius: 999px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; transition: all 0.2s ease;
}
.eddyai-suggestion:hover { background: rgba(0,245,212,0.18); }

.eddyai-input-row { display: flex; gap: 6px; padding: 10px 14px; border-top: 1px solid var(--border); }
.eddyai-input-row input {
  flex: 1; background: var(--surf); border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 10px; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; outline: none;
}
.eddyai-input-row input:focus { border-color: var(--teal); }
.eddyai-send-btn {
  background: linear-gradient(135deg, var(--teal), var(--cyan)); border: none; color: var(--bg);
  width: 34px; height: 34px; border-radius: 10px; cursor: pointer; font-size: 0.9rem; flex-shrink: 0;
}
.eddyai-send-btn:hover { transform: scale(1.05); }
.eddyai-disclaimer { font-size: 0.6rem; color: var(--text-muted); text-align: center; padding: 0 14px 10px; opacity: 0.7; }

@media (max-width: 640px) {
  .widget-stack { right: 16px; bottom: 16px; }
  .eddyai-panel { width: calc(100vw - 32px); right: -8px; }

  /* Shrink floating widget buttons to icon-only circles on mobile so they
     no longer sit as a wide bar over content (e.g. hero stats) while scrolling */
  .eddyai-btn, .askeddy-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    justify-content: center;
    gap: 0;
  }
  .eddyai-btn span:not(.dot), .askeddy-btn span:not(.dot) { display: none; }
  .eddyai-btn::after { content: '💬'; font-size: 1.2rem; line-height: 1; }
  .askeddy-btn::after { content: '🛒'; font-size: 1.2rem; line-height: 1; }
  .eddyai-btn .dot, .askeddy-btn .dot {
    position: absolute;
    top: 6px;
    right: 6px;
  }
  .eddyai-btn, .askeddy-btn { position: relative; }
}

.upwork-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease 0.9s backwards;
}

.opportunity-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px;
  margin-left: 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 245, 212, 0.35);
  border-radius: 30px;
  background: rgba(0, 245, 212, 0.08);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease 1s backwards;
}
.opportunity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: opportunity-pulse 1.8s ease-in-out infinite;
}
@keyframes opportunity-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; }
  50% { opacity: 0.4; box-shadow: 0 0 14px #22c55e; }
}

.blink-text { animation: soft-blink 2.2s ease-in-out infinite; }
@keyframes soft-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@media (prefers-reduced-motion: reduce) {
  .blink-text { animation: none; }
}

.testimonial-tag-accent {
  color: var(--teal) !important;
  font-weight: 700;
  border-color: rgba(0,245,212,0.35) !important;
}

.notify-pulse-btn {
  animation: notify-glow-pulse 2s ease-in-out infinite;
}
@keyframes notify-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0,245,212,0); }
  50% { box-shadow: 0 0 18px rgba(0,245,212,0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .notify-pulse-btn { animation: none; }
}

.testimonial-shot { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,8,15,0.92);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 4%;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  border: 1px solid var(--border);
}

.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 1s backwards;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

.marquee-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--bg) 0%, var(--surf) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.marquee {
  display: flex;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
  gap: 40px;
}

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600; color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0; }

section { position: relative; padding: 100px 5%; }
.container { max-width: 1400px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--teal); }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 50px;
}
.section-title em { font-style: normal; background: linear-gradient(135deg, var(--teal), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

#about { background: linear-gradient(180deg, var(--bg) 0%, var(--surf) 50%, var(--bg) 100%); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/12;
  max-width: 420px;
  margin: 0 auto;
  animation: slideInLeft 0.8s ease backwards;
  will-change: transform, opacity;
  transition: transform 0.1s ease, opacity 0.1s ease;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: floatPhoto 3.5s ease-in-out infinite; }
.about-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.15), transparent);
  animation: glowSweep 4s ease-in-out infinite 2s;
  pointer-events: none;
  z-index: 2;
}

.about-content h2 { animation: slideInLeft 0.8s ease 0.1s backwards; }
.about-text { color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; animation: slideInLeft 0.8s ease 0.2s backwards; }
.about-text strong { color: var(--teal); font-weight: 600; }

#services { background: var(--surf); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease backwards;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 20px 60px rgba(0, 245, 212, 0.15), var(--glow-teal);
  transform: translateY(-8px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  animation: float 4s ease-in-out infinite;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#awards { background: var(--bg); position: relative; }
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.awards-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 245, 212, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--glow-teal);
  animation: slideInRight 0.8s ease backwards;
  will-change: transform, opacity;
  transition: transform 0.1s ease, opacity 0.1s ease, box-shadow 0.4s ease;
}
.awards-photo:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 245, 212, 0.5);
}
.awards-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; animation: floatPhotoAwards 4s ease-in-out infinite 0.3s; }
.awards-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.6), transparent 60%);
  pointer-events: none;
}
.awards-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.15), transparent);
  animation: glowSweep 4.5s ease-in-out infinite 3s;
  pointer-events: none;
  z-index: 2;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
  animation: slideInRight 0.8s ease 0.3s backwards;
}

.cert {
  padding: 24px 16px;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.08), rgba(0, 212, 255, 0.03));
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cert::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.2) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cert:hover::before { opacity: 1; }

.cert:hover {
  border-color: var(--teal);
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 245, 212, 0.25);
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.18), rgba(0, 212, 255, 0.08));
}

.cert-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.cert:nth-child(2) .cert-icon { animation-delay: 0.3s; }
.cert:nth-child(3) .cert-icon { animation-delay: 0.6s; }
.cert:nth-child(4) .cert-icon { animation-delay: 0.9s; }
.cert:nth-child(5) .cert-icon { animation-delay: 1.2s; }
.cert:nth-child(6) .cert-icon { animation-delay: 1.5s; }

.cert-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cert-by {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

#contact { text-align: center; }
.contact-content { max-width: 800px; margin: 0 auto; }
.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  line-height: 1.9;
}
.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-link {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.contact-link:hover {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: var(--glow-teal);
  transform: translateY(-4px);
}
.contact-icon { font-size: 1.8rem; margin-bottom: 8px; }
.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
}

footer {
  padding: 40px 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.3));
}
.back-to-top {
  cursor: pointer;
  color: var(--teal);
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-to-top:hover { transform: translateY(-2px); }

@media (max-width: 1200px) {
  .about-grid, .awards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-links { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 768px) {
  nav { padding: 14px 5%; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 60px 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns, .hero-stats { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }

  .hero-video-bg { height: 55vh; }

  #hero { padding-top: 170px; }

  footer { padding-bottom: 170px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-desc { font-size: 0.95rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .certs-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cert { padding: 16px 10px; }
  .marquee-item { font-size: 0.8rem; }
}

.cs-intro { color: var(--text-muted); line-height: 1.9; max-width: 620px; margin-bottom: 40px; }
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cs-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--glow-teal); border-color: rgba(0,245,212,0.3); }
.cs-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cs-card-icon { font-size: 1.8rem; }
.cs-card-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.cs-card-title { font-family: 'Syne', sans-serif; font-size: 1.4rem; margin-bottom: 12px; color: var(--white); }
.cs-card-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; flex-grow: 1; }
.cs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cs-metric { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cs-metric-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--teal); }
.cs-metric-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.cs-read-btn {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.cs-read-btn:hover { background: rgba(0,245,212,0.12); box-shadow: var(--glow-teal); }

.cs-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 5%;
}
.cs-modal-overlay.active { display: flex; }
.cs-modal {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.cs-modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.06); border: none; color: var(--white);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem;
}
.cs-modal-close:hover { background: rgba(0,245,212,0.2); }
.cs-modal h3 { font-family: 'Syne', sans-serif; font-size: 1.6rem; margin-bottom: 8px; color: var(--white); padding-right: 40px; }
.cs-modal .cs-modal-sub { color: var(--teal); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.cs-accordion-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.cs-accordion-header {
  width: 100%; background: rgba(255,255,255,0.02); border: none; color: var(--white);
  padding: 16px 20px; text-align: left; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 0.95rem;
}
.cs-accordion-header:hover { background: rgba(0,245,212,0.06); }
.cs-accordion-header .chev { transition: transform 0.3s ease; color: var(--teal); }
.cs-accordion-item.open .cs-accordion-header .chev { transform: rotate(180deg); }
.cs-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.cs-accordion-item.open .cs-accordion-body { max-height: 600px; }
.cs-accordion-body-inner { padding: 4px 20px 18px; color: var(--text-muted); line-height: 1.8; font-size: 0.92rem; }
.cs-accordion-body-inner ul { padding-left: 20px; margin-top: 6px; }
.cs-takeaways { margin-top: 24px; padding: 20px; border-radius: 12px; background: rgba(0,245,212,0.06); border: 1px solid var(--border); }
.cs-takeaways h4 { color: var(--gold); font-family: 'Syne', sans-serif; margin-bottom: 10px; font-size: 1rem; }
.cs-takeaways ul { padding-left: 20px; color: var(--text-muted); line-height: 1.8; }

.tech-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.tech-group { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.tech-group-title { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--teal); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-badge {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--white); font-size: 0.85rem; cursor: default;
  transition: all 0.25s ease;
}
.tech-badge:hover { background: linear-gradient(135deg, rgba(0,245,212,0.2), rgba(0,212,255,0.15)); border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--glow-teal); }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(0,245,212,0.08); border: 1px solid var(--border);
  color: var(--cyan); font-size: 0.72rem; letter-spacing: 0.02em;
}

.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 14px; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--glow-teal); }
.testimonial-shot { width: 100%; border-radius: 12px; display: block; border: 1px solid var(--border); }
.testimonial-tag-edit {
  margin-top: 12px; text-align: center; font-size: 0.8rem; color: var(--teal);
  padding: 8px 10px; border: 1px dashed var(--border); border-radius: 8px; background: rgba(0,245,212,0.05);
  cursor: text; caret-color: var(--teal); outline: none;
}
.testimonial-tag-edit:focus { border-style: solid; border-color: var(--teal); background: rgba(0,245,212,0.1); }
.upwork-badge-wrap {
  display: flex; flex-direction: column; align-items: center;
  max-width: 480px; margin: 0 auto 40px;
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.upwork-badge-wrap:hover { transform: translateY(-6px); box-shadow: var(--glow-teal); }
.upwork-badge-img { width: 100%; border-radius: 12px; display: block; border: 1px solid var(--border); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.askeddy-card {
  position: relative;
  max-width: 688px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(255,215,0,0.1), rgba(0,245,212,0.07)), var(--card);
  border-color: rgba(255,215,0,0.3);
}
.askeddy-highlight-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  display: inline-block;
  background: #0b1220;
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.copy-email-btn {
  display: inline-flex; align-items: center; gap: 4px; margin-left: 10px;
  background: rgba(0,245,212,0.1); border: 1px solid var(--border); color: var(--teal);
  font-size: 0.7rem; padding: 4px 9px; border-radius: 6px; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; transition: all 0.25s ease; vertical-align: middle;
}
.copy-email-btn:hover { background: rgba(0,245,212,0.22); box-shadow: var(--glow-teal); }
.copy-email-btn.copied { background: var(--teal); color: var(--bg); border-color: var(--teal); }
.contact-form { margin-top: 48px; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color 0.25s ease, box-shadow 0.25s ease; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: var(--glow-teal); }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: -6px; }

@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; }
  .tech-groups { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: repeat(3, 1fr); }
}
