/* ═══════════════════════════════════════════
   CLEARCODE — style.css
   Dark techy aesthetic inspired by iAndRobot
═══════════════════════════════════════════ */

:root {
  --bg: #060910;
  --bg2: #0c1220;
  --bg3: #111827;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent-grad: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --text: #e2e8f0;
  --muted: #64748b;
  --border: rgba(255, 255, 255, 0.07);
  --card: rgba(255, 255, 255, 0.03);
  --font: 'Space Grotesk', sans-serif;
  --mono: 'Space Mono', monospace;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 2px; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, left 0.15s ease, top 0.15s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.7; color: var(--muted); }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--accent-grad);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}

.full-width { width: 100%; justify-content: center; }

/* ══════════════════════
   NAV
══════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, transform 0.35s ease;
}
nav.scrolled {
  background: rgba(6, 9, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.hidden {
  transform: translateY(-110%);
}

/* ── Orb terminal shell ── */
#orbLabel { pointer-events: none; transition: color 0.2s; }
.orb-center { cursor: pointer; }
.orb-center.orb-editing {
  border-color: rgba(0,212,255,.75);
  box-shadow: 0 0 120px rgba(0,212,255,.45), inset 0 0 60px rgba(0,212,255,.12);
  animation: none;
}
.orb-terminal {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  width: 320px;
  background: rgba(6, 9, 18, 0.97);
  border: 1px solid rgba(0,212,255,.22);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0,0,0,.7), 0 0 40px rgba(0,212,255,.07);
  font-family: var(--mono);
  font-size: .77rem;
  z-index: 10;
}
.orb-terminal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.oterm-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  user-select: none;
}
.oterm-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: filter .2s;
  cursor: pointer;
}
.oterm-dot:hover { filter: brightness(1.4); }
.oterm-red    { background: #ff5f57; }
.oterm-yellow { background: #febc2e; }
.oterm-green  { background: #28c840; }
.oterm-title {
  flex: 1; text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .68rem; letter-spacing: .06em;
}
.oterm-output {
  padding: 10px 14px;
  min-height: 100px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,.2) transparent;
}
.oterm-line { line-height: 1.55; word-break: break-all; color: rgba(220,232,255,.8); }
.oterm-out  { color: #00d4ff; }
.oterm-err  { color: #ff5f57; }
.oterm-echo { color: rgba(220,232,255,.38); }
.oterm-dim  { color: rgba(0,212,255,.4); font-size: .7rem; }
.oterm-input-row {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.oterm-prompt { color: #00d4ff; flex-shrink: 0; user-select: none; }
.oterm-input {
  flex: 1;
  background: none; border: none; outline: none;
  color: rgba(220,232,255,.9);
  font-family: var(--mono);
  font-size: .77rem;
  caret-color: #00d4ff;
}
.oterm-input::placeholder { color: rgba(255,255,255,.18); }

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo img, .logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 0.55rem 1.4rem !important;
  background: var(--accent-grad);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 2.5rem;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.5rem; line-height: 1.12; }
.hero-line { display: block; }
.hero-sub {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat .stat-num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stat span { color: var(--accent); font-size: 1.5rem; font-weight: 700; }
.stat p { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Orb */
.hero-orb {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.orb-core {
  width: 460px;
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateRing linear infinite;
  pointer-events: none;
}
.r1 {
  width: 100%; height: 100%;
  border-color: rgba(0,212,255,0.2);
  animation-duration: 20s;
}
.r2 {
  width: 75%; height: 75%;
  border-color: rgba(124,58,237,0.3);
  animation-duration: 14s;
  animation-direction: reverse;
}
.r3 {
  width: 50%; height: 50%;
  border-color: rgba(0,212,255,0.15);
  animation-duration: 10s;
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orb-center {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 2rem;
  color: var(--accent);
  animation: pulse 3s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(0,212,255,0.15), inset 0 0 40px rgba(0,212,255,0.05);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0,212,255,0.15), inset 0 0 40px rgba(0,212,255,0.05); }
  50% { box-shadow: 0 0 100px rgba(0,212,255,0.3), inset 0 0 60px rgba(0,212,255,0.1); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ══════════════════════
   MARQUEE
══════════════════════ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════
   SERVICES
══════════════════════ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.05);
}
.service-card.featured {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(124,58,237,0.05) 100%);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.service-card:hover .card-glow { opacity: 1; }
.service-card.featured .card-glow { opacity: 1; }

.featured-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.card-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px; height: 52px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 0.75rem; color: #fff; }
.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-tags li {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
}

.card-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card-link:hover { gap: 0.6rem; }

/* ══════════════════════
   PROCESS
══════════════════════ */
.process {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
}

.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.step h3 { margin-bottom: 0.5rem; color: #fff; font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

/* ══════════════════════
   WHY US
══════════════════════ */
.why-us { background: var(--bg); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left h2 { margin-bottom: 1rem; }
.why-left p { margin-bottom: 2rem; font-size: 1.05rem; }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(0,212,255,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.why-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.why-card h4 { margin-bottom: 0.5rem; color: #fff; }
.why-card p { font-size: 0.88rem; }

/* ══════════════════════
   WORK
══════════════════════ */
.work { background: var(--bg2); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.work-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.2); }
.work-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-overlay {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.work-info { padding: 1.5rem; background: var(--bg3); }
.work-info h4 { color: #fff; margin-bottom: 0.5rem; }
.work-info p { font-size: 0.88rem; margin-bottom: 1rem; }
.work-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50px;
  color: var(--accent);
}

/* ══════════════════════
   TESTIMONIALS
══════════════════════ */
.testimonials { background: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--accent-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-author strong { display: block; color: #fff; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════
   ABOUT
══════════════════════ */
.about { background: var(--bg2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-graphic {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateRing linear infinite;
}
.ar1 {
  width: 100%; height: 100%;
  border-color: rgba(0,212,255,0.12);
  animation-duration: 25s;
}
.ar2 {
  width: 65%; height: 65%;
  border-color: rgba(124,58,237,0.2);
  animation-duration: 18s;
  animation-direction: reverse;
}
.about-code {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
}
.about-code em { color: #c792ea; font-style: normal; }
.about-code .str { color: #c3e88d; }
.about-code .num { color: var(--accent); }
.code-line { white-space: nowrap; }

.about-right h2 { margin-bottom: 1rem; }
.about-right p { margin-bottom: 1rem; font-size: 1rem; }
.about-right strong { color: var(--text); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-tags span {
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: var(--accent);
}

/* ══════════════════════
   CONTACT
══════════════════════ */
.contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { font-size: 1.05rem; margin-bottom: 2rem; }
.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.contact-info a:hover { opacity: 0.8; }
.contact-info svg { width: 20px; height: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--bg3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.promo-optional { font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.promo-row { display: flex; gap: 0.6rem; }
.promo-row input { flex: 1; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-promo {
  padding: 0 1.2rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-promo:hover { background: var(--accent); color: var(--bg); }
.btn-promo:disabled { opacity: 0.5; cursor: default; }
.promo-feedback { font-size: 0.82rem; padding: 0.45rem 0.7rem; border-radius: 6px; margin-top: 0.2rem; }
.promo-valid   { background: rgba(16,185,129,0.12); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.promo-invalid { background: rgba(239,68,68,0.10);  color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand .logo { display: inline-flex; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; max-width: 240px; }

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.85rem; }
.heart { color: #ef4444; }

/* ══════════════════════
   ANIMATIONS
══════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .hero-orb { display: none; }
  .hero-content { max-width: 100%; }
  .about-graphic { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem; }
  .hero-stats { gap: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-graphic { width: 260px; height: 260px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 70px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
}
