/* ═══════════════════════════════════════════════════
   FUTURE LOGIC STUDIOS — styles.css
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --bg:       hsl(222 47% 5%);
  --fg:       hsl(210 40% 98%);
  --card:     hsl(222 47% 8%);
  --border:   hsl(222 30% 18%);
  --muted:    hsl(215 20% 55%);
  --secondary:hsl(222 30% 14%);
  --primary:  hsl(192 95% 55%);
  --accent:   hsl(262 83% 65%);
  --radius:   0.75rem;
  --font-h:   'Space Grotesk', sans-serif;
  --font-b:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }

/* ── Gradient text ── */
.grad {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow ── */
.glow { box-shadow: 0 0 40px -10px hsl(192 95% 55% / 0.4); }
.glow-sm { box-shadow: 0 0 20px -5px hsl(192 95% 55% / 0.3); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: hsl(222 47% 5%);
  font-family: var(--font-h); font-weight: 600;
  padding: 10px 24px; border-radius: 9999px;
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--fg);
  font-family: var(--font-h); font-weight: 600;
  padding: 10px 24px; border-radius: 9999px;
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: var(--secondary); border-color: var(--primary); }

.btn-lg { padding: 14px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── Container / Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.services-section { background: none; }
.services-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg), hsl(222 30% 10% / .4), var(--bg));
  pointer-events: none;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.items-center { align-items: center; }

/* ── Blobs ── */
.blob {
  position: absolute; border-radius: 9999px; filter: blur(80px); pointer-events: none;
  width: 384px; height: 384px; background: hsl(192 95% 55% / 0.05);
}
.blob-tr { top: 0; right: 0; }
.blob-bl { bottom: 0; left: 0; }
.blob-tl { top: 0; left: 25%; }
.blob-br { bottom: 0; right: 25%; }
.blob-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; }
.accent-blob { background: hsl(262 83% 65% / 0.05); }

/* ── Section headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.overline {
  font-family: var(--font-h); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .15em; color: var(--primary);
}
h2 {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-top: 16px;
}
h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.body-text { color: var(--muted); margin-top: 16px; font-size: 1.05rem; line-height: 1.75; }

/* ── Reveal animations ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1; transform: translate(0, 0); }

/* ══════════════════════════ NAVBAR ══════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
#navbar.scrolled {
  background: hsl(222 47% 5% / .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--font-h); font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { border-radius: 9999px; padding: 8px 20px; color: hsl(222 47% 5%) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 16px; padding: 24px;
  background: hsl(222 47% 5% / .97); border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--muted); transition: color .2s; }
.mobile-menu a:hover { color: var(--fg); }

/* ══════════════════════════ HERO ══════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-1 { position: absolute; inset: 0; background: hsl(222 47% 5% / .7); }
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsl(222 47% 5% / .4), transparent, var(--bg));
}
.hero-grid {
  position: absolute; inset: 0; opacity: .1;
  background-image:
    linear-gradient(hsl(192 95% 55% / .15) 1px, transparent 1px),
    linear-gradient(90deg, hsl(192 95% 55% / .15) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 0 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9999px;
  border: 1px solid hsl(192 95% 55% / .3);
  background: hsl(192 95% 55% / .05);
  backdrop-filter: blur(8px);
  font-size: .9rem; color: var(--primary); font-weight: 500;
  margin-bottom: 32px;
}
.pulse-dot { position: relative; display: inline-flex; width: 10px; height: 10px; }
.ping {
  position: absolute; inset: 0; border-radius: 9999px;
  background: var(--primary); opacity: .75;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.dot { position: relative; width: 10px; height: 10px; border-radius: 9999px; background: var(--primary); }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero h1 {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.arrow { display: inline-block; transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-mouse {
  width: 24px; height: 40px; border-radius: 12px;
  border: 2px solid hsl(215 20% 55% / .4);
  display: flex; align-items: flex-start; justify-content: center; padding: 6px;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 9999px; background: var(--primary);
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

/* ══════════════════════════ ABOUT ══════════════════════════ */
.about-img-wrap { position: relative; }
.about-img-inner { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 0 40px -10px hsl(192 95% 55% / 0.4); }
.about-img-inner img { width: 100%; height: auto; }
.about-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(222 47% 5% / .6), transparent, transparent);
}
.float-card {
  position: absolute; bottom: -24px; right: -24px;
  background: hsl(222 47% 8% / .9); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 12px; padding: 20px;
  box-shadow: 0 0 20px -5px hsl(192 95% 55% / 0.3);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-num { font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; }
.float-label { font-size: .85rem; color: var(--muted); margin-top: 4px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.stat-item { border-left: 2px solid hsl(192 95% 55% / .4); padding-left: 16px; }
.stat-val { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: .85rem; color: var(--muted); }

/* ══════════════════════════ SERVICES ══════════════════════════ */
.service-card {
  position: relative; background: hsl(222 47% 8% / .5);
  backdrop-filter: blur(8px); border: 1px solid hsl(222 30% 18% / .5);
  border-radius: 16px; padding: 32px;
  transition: border-color .4s, background .4s, box-shadow .4s;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, hsl(192 95% 55% / .05), hsl(262 83% 65% / .05));
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { border-color: hsl(192 95% 55% / .3); background: var(--card); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: hsl(192 95% 55% / .1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--primary);
  transition: box-shadow .4s;
}
.service-card:hover .service-icon { box-shadow: 0 0 20px -5px hsl(192 95% 55% / 0.3); }
.service-card p { color: var(--muted); line-height: 1.7; position: relative; }
.service-card h3 { position: relative; }

/* ══════════════════════════ PROCESS ══════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 24px; left: 60%;
  width: calc(100% - 0px); height: 1px;
  background: linear-gradient(to right, hsl(192 95% 55% / .4), transparent);
}
.process-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.process-icon {
  width: 48px; height: 48px; border-radius: 12px; shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .4s;
}
.process-step:hover .process-icon { box-shadow: 0 0 40px -10px hsl(192 95% 55% / 0.4); }
.process-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; color: hsl(222 30% 18%); }
.process-step p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ══════════════════════════ PROJECTS ══════════════════════════ */
.filter-tabs {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.filter-btn {
  position: relative; padding: 10px 24px; border-radius: 9999px;
  font-family: var(--font-h); font-weight: 600; font-size: .875rem;
  color: var(--muted); border: 1px solid hsl(222 30% 18% / .5);
  transition: color .3s, border-color .3s;
  overflow: hidden;
}
.filter-btn:hover { border-color: hsl(192 95% 55% / .4); color: var(--fg); }
.filter-btn.active {
  color: hsl(222 47% 5%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
}

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.project-card:hover { transform: translateY(-6px); border-color: hsl(192 95% 55% / .3); box-shadow: 0 20px 40px hsl(0 0% 0% / .3); }
.project-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-cat {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-h); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  background: hsl(222 47% 5% / .85); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 9999px; color: var(--primary);
  backdrop-filter: blur(8px);
}
.project-info { padding: 20px; }
.project-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.project-tagline { color: var(--muted); font-size: .85rem; margin-bottom: 12px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.project-tag {
  font-size: .75rem; padding: 2px 10px; border-radius: 9999px;
  background: var(--secondary); color: var(--muted); border: 1px solid var(--border);
}
.project-result {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .8rem; font-weight: 600;
  color: var(--primary); padding-top: 12px; border-top: 1px solid var(--border);
}

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center; padding: 16px;
}
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: hsl(222 47% 5% / .85); backdrop-filter: blur(8px); }
.lightbox-panel {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; max-width: 820px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.lightbox-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 9999px;
  background: var(--secondary); color: var(--fg); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: hsl(222 30% 22%); }
.lb-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: 20px 20px 0 0; }
.lb-body { padding: 32px; }
.lb-cat { font-family: var(--font-h); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); }
.lb-title { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; margin: 8px 0; }
.lb-tagline { color: var(--muted); margin-bottom: 20px; }
.lb-desc { color: hsl(210 40% 80%); line-height: 1.75; margin-bottom: 24px; }
.lb-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.lb-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--secondary); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 9999px; font-size: .8rem; color: var(--muted);
}
.lb-badge strong { color: var(--fg); }
.lb-highlights-title { font-family: var(--font-h); font-weight: 600; margin-bottom: 12px; }
.lb-highlights { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lb-highlights li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: hsl(210 40% 80%);
}
.lb-highlights li::before {
  content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ══════════════════════════ TEAM ══════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-img-wrap { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 20px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(222 47% 5% / .6), transparent);
}
.team-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; }
.team-role { color: var(--primary); font-size: .85rem; font-weight: 500; margin: 4px 0; }
.team-bio { color: var(--muted); font-size: .85rem; line-height: 1.6; }

/* ══════════════════════════ TESTIMONIALS ══════════════════════════ */
.testimonial-card {
  background: hsl(222 47% 8% / .5); backdrop-filter: blur(8px);
  border: 1px solid hsl(222 30% 18% / .5); border-radius: 24px;
  padding: 48px; text-align: center;
}
.quote-icon { color: hsl(192 95% 55% / .3); margin: 0 auto 24px; }
.testimonial-slides { min-height: 220px; position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeSlide .4s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.t-quote { font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.75; color: hsl(210 40% 90%); margin-bottom: 32px; }
.t-avatar {
  width: 56px; height: 56px; border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; color: hsl(222 47% 5%);
}
.t-name { font-family: var(--font-h); font-weight: 600; font-size: 1.1rem; }
.t-role { color: var(--muted); font-size: .85rem; margin-top: 4px; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.ctrl-btn {
  width: 40px; height: 40px; border-radius: 9999px;
  border: 1px solid var(--border); color: var(--fg); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.ctrl-btn:hover { border-color: var(--primary); background: hsl(192 95% 55% / .1); }
.testimonial-dots { display: flex; gap: 8px; }
.t-dot {
  height: 8px; border-radius: 9999px; background: hsl(215 20% 55% / .3);
  transition: width .3s, background .3s; width: 8px;
}
.t-dot.active { width: 32px; background: var(--primary); }

/* ══════════════════════════ RESOURCES ══════════════════════════ */
.resource-card {
  background: hsl(222 47% 8% / .6); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer; transition: transform .3s, box-shadow .3s;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px hsl(192 95% 55% / .08); }
.resource-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cyan-icon { background: hsl(192 95% 55% / .15); color: var(--primary); border: 1px solid hsl(192 95% 55% / .3); }
.purple-icon { background: hsl(262 83% 65% / .15); color: var(--accent); border: 1px solid hsl(262 83% 65% / .3); }
.green-icon { background: hsl(150 60% 50% / .15); color: hsl(150 60% 50%); border: 1px solid hsl(150 60% 50% / .3); }
.resource-badge {
  font-family: var(--font-h); font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
}
.cyan-badge { color: var(--primary); }
.purple-badge { color: var(--accent); }
.green-badge { color: hsl(150 60% 50%); }
.resource-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin: 6px 0; }
.resource-card p { color: var(--muted); font-size: .875rem; line-height: 1.65; }
.resource-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid hsl(222 30% 18% / .5);
  margin-top: auto;
}
.resource-pages { font-size: .8rem; color: var(--muted); }
.resource-cta { font-family: var(--font-h); font-size: .8rem; font-weight: 600; }
.cyan-text { color: var(--primary); }
.purple-text { color: var(--accent); }
.green-text { color: hsl(150 60% 50%); }

/* ── Lead Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  align-items: center; justify-content: center; padding: 16px;
  background: hsl(222 47% 5% / .8); backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 32px; max-width: 440px; width: 100%;
  animation: modalIn .3s ease;
}
.modal-icon { font-size: 2rem; margin-bottom: 16px; }
.modal-box h3 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
  width: 100%; background: hsl(222 30% 14% / .5);
  border: 1px solid hsl(222 30% 18% / .5); border-radius: 12px;
  padding: 12px 16px; color: var(--fg); font-family: var(--font-b); font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.modal-form input:focus { border-color: hsl(192 95% 55% / .5); box-shadow: 0 0 0 3px hsl(192 95% 55% / .1); }
.modal-error { color: hsl(0 84% 60%); font-size: .8rem; min-height: 16px; }
.modal-fine { text-align: center; font-size: .75rem; color: var(--muted); margin-top: 12px; }
.modal-done { text-align: center; padding: 16px 0; }
.modal-check {
  width: 64px; height: 64px; border-radius: 9999px;
  background: hsl(192 95% 55% / .1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}

/* ══════════════════════════ CONTACT ══════════════════════════ */
.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg), hsl(222 30% 10% / .4), var(--bg));
  pointer-events: none;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-item { display: flex; align-items: center; gap: 16px; transition: color .2s; }
.contact-item:hover .contact-val { color: var(--primary); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: hsl(192 95% 55% / .1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .3s;
}
.contact-item:hover .contact-icon { box-shadow: 0 0 20px -5px hsl(192 95% 55% / 0.3); }
.contact-label { font-size: .8rem; color: var(--muted); }
.contact-val { font-weight: 500; transition: color .2s; }

.contact-form-wrap {
  background: hsl(222 47% 8% / .5); backdrop-filter: blur(8px);
  border: 1px solid hsl(222 30% 18% / .5); border-radius: 24px; padding: 40px;
}
.contact-form-wrap h3 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; color: var(--muted); }
.form-group input, .form-group textarea {
  background: hsl(222 30% 14% / .5);
  border: 1px solid hsl(222 30% 18% / .5); border-radius: 12px;
  padding: 12px 16px; color: var(--fg); font-family: var(--font-b); font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s; resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: hsl(192 95% 55% / .5);
  box-shadow: 0 0 0 3px hsl(192 95% 55% / .1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: hsl(215 20% 55% / .5); }

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer {
  border-top: 1px solid hsl(222 30% 18% / .5);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
}
.footer-tagline { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 24px; border-top: 1px solid hsl(222 30% 18% / .3);
  font-size: .75rem; color: var(--muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--fg); }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .float-card { bottom: -12px; right: -12px; }
  .about-img-wrap { margin-bottom: 40px; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .testimonial-card { padding: 28px 20px; }
}