/* ============================================================
   GenZode — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:      #080a0f;
  --surface: #0d1017;
  --surface2:#131720;
  --border:  rgba(255,255,255,0.07);
  --text:    #e8eaf0;
  --muted:   #5a6070;
  --accent:  #00f5a0;
  --accent2: #00c8ff;
  --accent3: #b06fff;
  --glow:    rgba(0,245,160,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ───────────────────────────────────────────── */
#cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,245,160,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
}

/* ── Noise Overlay ───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.4;
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(8,10,15,0.9);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  cursor: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: none;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: none;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.nav-cta:hover { background: #00ffa8; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,10,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 490;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .m-cta {
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  text-align: center;
  cursor: none;
  margin-top: 8px;
  transition: background 0.25s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 160px 60px 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.blob { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.blob-1 { width: 500px; height: 500px; background: rgba(0,245,160,0.08); top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(0,200,255,0.07); bottom: 0; right: 200px; }
.blob-3 { width: 350px; height: 350px; background: rgba(176,111,255,0.06); top: 40%; left: -100px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,245,160,0.3);
  background: rgba(0,245,160,0.05);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.04em; max-width: 900px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-headline .line    { display: block; overflow: hidden; }
.hero-headline .accent-word { color: var(--accent); }
.hero-headline .stroke-word {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-sub {
  margin-top: 32px; max-width: 480px;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted); font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px;
  margin-top: 48px; align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.95rem; padding: 14px 32px;
  border: none; border-radius: 4px; cursor: none;
  letter-spacing: 0.01em; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,245,160,0.25); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.95rem; padding: 14px 28px;
  border: 1px solid var(--border); border-radius: 4px;
  cursor: none; letter-spacing: 0.01em; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.btn-ghost svg   { transition: transform 0.25s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 60px;
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 0.8rem; color: var(--muted);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-top: 4px;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface); padding: 16px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 120px 60px; }
.section-label {
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; max-width: 600px;
}
.section-title .dim { color: var(--muted); }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s; cursor: none;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--glow), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: var(--surface2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-size: 1.4rem;
  background: rgba(0,245,160,0.08);
  border: 1px solid rgba(0,245,160,0.15);
}
.service-card:nth-child(2) .service-icon { background: rgba(0,200,255,0.08); border-color: rgba(0,200,255,0.15); }
.service-card:nth-child(3) .service-icon { background: rgba(176,111,255,0.08); border-color: rgba(176,111,255,0.15); }
.service-card:nth-child(4) .service-icon { background: rgba(0,200,255,0.08); border-color: rgba(0,200,255,0.15); }
.service-card:nth-child(5) .service-icon { background: rgba(176,111,255,0.08); border-color: rgba(176,111,255,0.15); }
.service-card:nth-child(6) .service-icon { background: rgba(0,245,160,0.08); border-color: rgba(0,245,160,0.15); }
.service-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.service-desc { font-size: 0.875rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.service-arrow {
  margin-top: 24px; color: var(--accent); font-size: 1.2rem;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s; display: block;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── Process Section ─────────────────────────────────────────── */
.process-section {
  padding: 120px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; margin-top: 80px; align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  cursor: none; transition: all 0.3s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .step-num { color: var(--accent); border-color: rgba(0,245,160,0.3); }
.step-num {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
  color: var(--muted); width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; letter-spacing: 0;
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.step-desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.process-visual {
  position: sticky; top: 120px;
  aspect-ratio: 1; border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.orbit-container { position: relative; width: 280px; height: 280px; }
.orbit-ring {
  position: absolute; border: 1px solid var(--border);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 100%; height: 100%; border-color: rgba(0,245,160,0.15); animation: spin 20s linear infinite; }
.orbit-ring-2 { width: 70%;  height: 70%;  border-color: rgba(0,200,255,0.15); animation: spin 14s linear infinite reverse; }
.orbit-ring-3 { width: 40%;  height: 40%;  border-color: rgba(176,111,255,0.2);animation: spin 8s linear infinite; }
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--bg); box-shadow: 0 0 40px rgba(0,245,160,0.3);
}
.orbit-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; top: 0; left: 50%; margin-left: -4px; margin-top: -4px; }
.dot-accent { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.dot-blue   { background: var(--accent2); box-shadow: 0 0 10px var(--accent2); }
.dot-purple { background: var(--accent3); box-shadow: 0 0 10px var(--accent3); }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── Tech Stack ──────────────────────────────────────────────── */
.tech-section { padding: 100px 60px; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.tech-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 20px; border-radius: 100px;
  font-size: 0.85rem; color: var(--muted);
  font-weight: 400; transition: all 0.25s; cursor: none;
}
.tech-pill:hover { border-color: rgba(0,245,160,0.4); color: var(--accent); background: rgba(0,245,160,0.05); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials { padding: 100px 0; overflow: hidden; }
.testimonials-header { padding: 0 60px; margin-bottom: 60px; }
.cards-track {
  display: flex; gap: 20px;
  animation: marquee2 30s linear infinite;
  width: max-content; padding: 0 20px;
}
.cards-track:hover { animation-play-state: paused; }
@keyframes marquee2 { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card {
  width: 340px; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
  transition: border-color 0.3s; cursor: none;
}
.testimonial-card:hover { border-color: rgba(0,245,160,0.2); }
.t-stars  { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text   { font-size: 0.9rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.t-author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; color: var(--bg);
}
.t-name { font-weight: 500; font-size: 0.875rem; }
.t-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section { padding: 120px 60px; position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,160,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.cta-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; max-width: 700px; margin: 0 auto 24px; }
.cta-sub   { font-size: 1rem; color: var(--muted); max-width: 460px; margin: 0 auto 48px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  padding: 60px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
}
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.875rem; color: var(--muted); max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; cursor: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem; transition: all 0.2s; cursor: none;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Contact Form Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,10,15,0.92);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  width: 100%; max-width: 540px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted); font-size: 1.2rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.modal-tag {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.modal-sub { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 32px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,245,160,0.5); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--surface2); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 500;
  font-size: 1rem; padding: 14px;
  border: none; border-radius: 8px; cursor: none;
  margin-top: 8px; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-submit:hover { background: #00ffa8; transform: translateY(-1px); box-shadow: 0 16px 32px rgba(0,245,160,0.25); }
.btn-submit:disabled { opacity: 0.6; cursor: none; transform: none; }

.form-msg { text-align: center; font-size: 0.875rem; margin-top: 16px; min-height: 20px; }
.form-msg.success { color: var(--accent); }
.form-msg.error   { color: #ff6b6b; }

/* ── Professional Input Validation ──────────────────────────── */
.form-group input[type="tel"]:not(:placeholder-shown):invalid,
.form-group input[type="email"]:not(:placeholder-shown):invalid {
  border-color: rgba(255, 107, 107, 0.5);
}
.form-group input[type="tel"]:not(:placeholder-shown):valid,
.form-group input[type="email"]:not(:placeholder-shown):valid {
  border-color: rgba(0, 245, 160, 0.4);
}
.input-hint {
  font-size: 0.72rem; color: var(--muted);
  margin-top: 4px; line-height: 1.4;
}


/* ── Responsive ──────────────────────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  #cursor, #cursor-ring { display: none !important; }
  * { cursor: auto !important; }
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 140px 24px 80px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .section, .process-section, .tech-section, .cta-section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; gap: 60px; }
  .process-visual { display: none; }
  footer { padding: 48px 24px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 16px; text-align: center; }
  .modal-card { padding: 32px 24px; margin: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
