/* =====================================================
   DESAPP — Premium Design System
   Concept: "Noir Precision" — Pure black canvas with
   electric teal accents. Oversized typography.
   Architectural layouts. Zero clutter.
   ===================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=cabinet-grotesk@400,500,700,800&display=swap');

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

:root {
  --black: #000000;
  --black-2: #060606;
  --black-3: #0a0a0a;
  --black-4: #111111;
  --black-5: #181818;
  --black-6: #222222;

  --teal: #009999;
  --teal-bright: #00cccc;
  --sky: #5BC8DC;
  --mint: #00e5cc;

  --white: #ffffff;
  --white-90: rgba(255,255,255,.9);
  --white-70: rgba(255,255,255,.7);
  --white-50: rgba(255,255,255,.5);
  --white-30: rgba(255,255,255,.3);
  --white-15: rgba(255,255,255,.15);
  --white-08: rgba(255,255,255,.08);
  --white-04: rgba(255,255,255,.04);
  --white-02: rgba(255,255,255,.02);

  --grad: linear-gradient(135deg, #5BC8DC, #009999);
  --grad-r: linear-gradient(135deg, #009999, #5BC8DC);
  --grad-glow: linear-gradient(135deg, rgba(91,200,220,.12), rgba(0,153,153,.06));
  --grad-border: linear-gradient(135deg, rgba(91,200,220,.3), rgba(0,153,153,.1), rgba(91,200,220,.3));

  --font-display: 'Clash Display', 'Cabinet Grotesk', system-ui, sans-serif;
  --font-body: 'Cabinet Grotesk', 'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur: .5s;
  --dur-fast: .3s;

  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 10px;

  --px: clamp(20px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 99999;
  pointer-events: none; opacity: .03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

a { text-decoration: none; color: inherit; }
::selection { background: rgba(0,153,153,.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* =====================================================
   NAVBAR — Minimal, invisible until scroll
   ===================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: transparent;
  transition: all .6s var(--ease);
}
nav.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--white-08);
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; letter-spacing: 3px;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  transition: transform .6s var(--ease-spring);
}
.nav-logo .logo-icon img { width: 100%; height: 100%; }
.nav-logo:hover .logo-icon { transform: rotate(20deg) scale(1.1); }
.nav-logo span em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: .8rem; font-weight: 500; color: var(--white-50);
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--white-15);
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--white); letter-spacing: 1px; text-transform: uppercase;
  transition: all var(--dur) var(--ease);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-1px);
}

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--white);
  display: block; transition: all var(--dur) var(--ease);
}

/* =====================================================
   HERO — Cinematic, oversized typography
   ===================================================== */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 140px var(--px) 100px;
}

/* Ambient light */
.hero::before {
  content: ''; position: absolute;
  width: 800px; height: 800px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(0,153,153,.07) 0%, transparent 60%);
  pointer-events: none;
  animation: ambientDrift 30s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(91,200,220,.04) 0%, transparent 60%);
  pointer-events: none;
  animation: ambientDrift 25s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--white-02) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,0,0,.3) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,0,0,.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  font-size: .68rem; font-weight: 600; color: var(--sky);
  margin-bottom: 40px; letter-spacing: 2.5px; text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(0,229,204,.6);
  animation: pulse 3s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -3px; margin-bottom: 32px;
  color: var(--white);
}
.hero h1 .gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem; color: var(--white-50); line-height: 1.85;
  max-width: 480px; margin-bottom: 48px; font-weight: 400;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  padding: 18px 40px;
  background: var(--grad);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 600;
  color: var(--black); letter-spacing: .5px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 0 40px rgba(0,153,153,.2), 0 8px 32px rgba(0,0,0,.3);
  display: inline-flex; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 50%);
  opacity: 0; transition: opacity var(--dur-fast);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(0,153,153,.35), 0 16px 48px rgba(0,0,0,.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(.99); }

.btn-secondary {
  padding: 18px 40px; border-radius: 100px;
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 500;
  color: var(--white-70);
  border: 1px solid var(--white-15);
  background: transparent;
  transition: all var(--dur) var(--ease);
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: var(--white-30);
  transform: translateY(-3px);
  background: var(--white-04);
}

/* Hero visual */
.hero-visual {
  position: absolute; right: var(--px); top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(0,153,153,.08));
  animation: float 10s var(--ease) infinite;
}

/* Floating stats */
.hero-stat {
  position: absolute;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  z-index: 3;
}
.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat .stat-label {
  font-size: .7rem; color: var(--white-30);
  margin-top: 4px; letter-spacing: 1px; text-transform: uppercase;
}
.stat-1 { top: 18%; right: calc(var(--px) + min(420px,38vw) + 40px); }
.stat-2 { bottom: 25%; right: calc(var(--px) - 20px); }

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: .65rem; color: var(--white-30); z-index: 2;
  letter-spacing: 3px; text-transform: uppercase;
}
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1px solid var(--white-30);
  border-bottom: 1px solid var(--white-30);
  transform: rotate(45deg);
  animation: bounce 2.5s var(--ease) infinite;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  padding: 52px var(--px);
  border-top: 1px solid var(--white-04);
  border-bottom: 1px solid var(--white-04);
  text-align: center;
}
.trust-bar p {
  font-size: .65rem; color: var(--white-30);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px;
}
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 52px; }
.trust-logo {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 500; color: var(--white-15);
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .8s var(--ease);
}
.trust-logo:hover { color: var(--teal); }

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
section { padding: 140px var(--px); position: relative; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 18px; border-radius: 100px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  font-size: .65rem; font-weight: 700; color: var(--teal);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; line-height: 1.05; letter-spacing: -2px;
}
.section-title .gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1rem; color: var(--white-50); line-height: 1.85;
  max-width: 520px; margin-top: 24px;
}

/* =====================================================
   SERVICES — Bento Grid with featured card
   ===================================================== */
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .section-desc { margin: 24px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px; margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--black-3);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: all .6s var(--ease);
  cursor: default;
}

/* Top accent line */
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
/* Hover glow */
.service-card::after {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0,153,153,.04) 0%, transparent 50%);
  opacity: 0; transition: opacity .6s var(--ease);
  pointer-events: none;
}
.service-card:hover { background: var(--black-4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.service-icon img { width: 28px; height: 28px; }
.icon-mobile { background: rgba(0,153,153,.08); border: 1px solid rgba(0,153,153,.12); }
.icon-web { background: rgba(91,200,220,.08); border: 1px solid rgba(91,200,220,.12); }
.icon-server { background: rgba(0,229,204,.08); border: 1px solid rgba(0,229,204,.12); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; margin-bottom: 16px;
  position: relative; z-index: 1; letter-spacing: -.5px;
}
.service-card p {
  font-size: .88rem; color: var(--white-50); line-height: 1.75;
  position: relative; z-index: 1;
}

.service-features {
  list-style: none; margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.service-features li {
  font-size: .82rem; color: var(--white-50);
  display: flex; align-items: center; gap: 14px;
  transition: color var(--dur-fast);
}
.service-card:hover .service-features li { color: var(--white-70); }
.service-features li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,153,153,.4);
}

.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px; font-size: .8rem; font-weight: 600;
  color: var(--teal); letter-spacing: .5px;
  transition: all var(--dur) var(--ease);
  position: relative; z-index: 1;
}
.service-link:hover { gap: 16px; color: var(--sky); }
.service-link svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  border-top: 1px solid var(--white-04);
  overflow: hidden;
}

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 120px; align-items: center;
  position: relative;
}

.about-visual { position: relative; }
.about-code-block {
  background: var(--black-3);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  padding: 36px;
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: .8rem; line-height: 1.9;
  position: relative; overflow: hidden;
}
.about-code-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
}
.about-code-block .code-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
}
.dot-red   { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; }
.dot-yellow{ width: 12px; height: 12px; border-radius: 50%; background: #ffbd2e; }
.dot-green { width: 12px; height: 12px; border-radius: 50%; background: #28ca41; }
.code-kw  { color: #c792ea; }
.code-fn  { color: #82aaff; }
.code-str { color: #c3e88d; }
.code-cm  { color: #444; }
.code-num { color: #f78c6c; }

.about-badge-float {
  position: absolute; bottom: -28px; right: -20px;
  background: var(--grad);
  border-radius: var(--radius-sm); padding: 20px 32px;
  box-shadow: 0 16px 48px rgba(0,153,153,.3);
}
.about-badge-float .num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--black);
}
.about-badge-float .lbl { font-size: .7rem; color: rgba(0,0,0,.6); letter-spacing: .5px; }

.about-content h2 { margin-bottom: 28px; }

.process-steps { margin-top: 52px; display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-xs);
  background: var(--white-04);
  border: 1px solid var(--white-08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 600; color: var(--teal);
  transition: all var(--dur) var(--ease);
}
.step:hover .step-num {
  background: rgba(0,153,153,.08);
  border-color: rgba(0,153,153,.2);
}
.step-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; margin-bottom: 8px;
}
.step-text p { font-size: .88rem; color: var(--white-50); line-height: 1.65; }

/* =====================================================
   TECHNOLOGIES
   ===================================================== */
.tech-header { text-align: center; margin-bottom: 72px; }
.tech-header .section-desc { margin: 24px auto 0; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px; border-radius: var(--radius-sm); overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.tech-item {
  background: var(--black-3);
  padding: 32px 16px;
  text-align: center;
  transition: all .5s var(--ease);
}
.tech-item:hover {
  background: var(--black-4);
}
.tech-item .tech-icon {
  font-size: 2rem; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  height: 40px;
}
.tech-item .tech-icon svg { width: 32px; height: 32px; }
.tech-item .tech-name {
  font-size: .72rem; font-weight: 600; color: var(--white-30);
  letter-spacing: .5px; text-transform: uppercase;
  transition: color .5s;
}
.tech-item:hover .tech-name { color: var(--white-70); }

/* =====================================================
   STATS
   ===================================================== */
.stats-section {
  padding: 100px var(--px);
  border-top: 1px solid var(--white-04);
  border-bottom: 1px solid var(--white-04);
  position: relative;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center; position: relative;
}
.stat-item { padding: 20px 0; }
.stat-item + .stat-item { border-left: 1px solid var(--white-04); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600; letter-spacing: -3px;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .78rem; color: var(--white-30); margin-top: 8px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { border-bottom: 1px solid var(--white-04); }
.testimonials-header { text-align: center; margin-bottom: 72px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border-radius: var(--radius); overflow: hidden;
}

.testimonial-card {
  background: var(--black-3);
  padding: 44px;
  transition: all .5s var(--ease);
  position: relative;
}
.testimonial-card:hover { background: var(--black-4); }

.stars { color: var(--teal); font-size: .85rem; margin-bottom: 24px; letter-spacing: 4px; }

.testimonial-text {
  font-size: .92rem; color: var(--white-70); line-height: 1.85;
  font-style: italic; margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--black);
  font-family: var(--font-display);
}
.av-1 { background: var(--grad); }
.av-2 { background: linear-gradient(135deg, #5BC8DC, #00BBBB); }
.av-3 { background: linear-gradient(135deg, #00e5cc, #009999); }
.author-info .name {
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 600;
}
.author-info .role { font-size: .75rem; color: var(--white-30); margin-top: 2px; }

/* =====================================================
   CTA
   ===================================================== */
.cta-section {
  padding: 160px var(--px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; top: 0; left: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0,153,153,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600; letter-spacing: -2.5px;
  margin-bottom: 24px; position: relative;
}
.cta-section p {
  font-size: 1rem; color: var(--white-50);
  max-width: 480px; margin: 0 auto 52px;
  line-height: 1.85; position: relative;
}
.cta-buttons {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; position: relative;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { border-top: 1px solid var(--white-04); }

.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 100px; align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p {
  font-size: .95rem; color: var(--white-50); line-height: 1.85; margin-bottom: 48px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: center; gap: 20px; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xs);
  background: var(--white-04);
  border: 1px solid var(--white-08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.contact-item:hover .contact-item-icon {
  background: rgba(0,153,153,.06);
  border-color: rgba(0,153,153,.15);
}
.contact-item-text .label {
  font-size: .65rem; color: var(--white-30);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px;
}
.contact-item-text .value { font-size: .9rem; font-weight: 500; }

/* Form */
.contact-form {
  background: var(--black-3);
  border: 1px solid var(--white-08);
  border-radius: var(--radius);
  padding: 52px;
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 600;
  color: var(--white-30); margin-bottom: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 20px;
  background: var(--white-02);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xs);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  transition: all var(--dur) var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(0,153,153,.03);
  box-shadow: 0 0 0 4px rgba(0,153,153,.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-15); }
.form-group select option { background: var(--black-4); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%; padding: 18px;
  background: var(--grad);
  border: none; border-radius: 100px;
  color: var(--black); font-size: .88rem; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer; letter-spacing: .5px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 0 40px rgba(0,153,153,.15), 0 8px 32px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0,153,153,.25), 0 16px 48px rgba(0,0,0,.3);
}
.form-submit svg { width: 16px; height: 16px; }
.form-message {
  text-align: center; margin-top: 16px;
  font-size: .85rem; color: var(--mint);
  min-height: 24px;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  border-top: 1px solid var(--white-04);
  padding: 80px var(--px) 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 72px;
}
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand p {
  font-size: .85rem; color: var(--white-30); line-height: 1.8;
  margin: 20px 0 16px; max-width: 260px;
}
.footer-brand .tagline,
.footer-tagline {
  font-family: var(--font-display);
  font-size: .65rem; color: var(--teal);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 8px; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--radius-xs);
  background: var(--white-04);
  border: 1px solid var(--white-08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.social-link svg { width: 16px; height: 16px; color: var(--white-30); transition: color .3s; }
.social-link:hover {
  background: rgba(0,153,153,.08);
  border-color: rgba(0,153,153,.2);
  transform: translateY(-2px);
}
.social-link:hover svg { color: var(--sky); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; margin-bottom: 28px;
  color: var(--white-50); letter-spacing: 1px; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-col ul li a {
  font-size: .85rem; color: var(--white-30);
  transition: color var(--dur) var(--ease);
}
.footer-col ul li a:hover { color: var(--white-70); }

.footer-bottom {
  border-top: 1px solid var(--white-04);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .72rem; color: var(--white-15); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a {
  font-size: .72rem; color: var(--white-15);
  transition: color var(--dur);
}
.footer-bottom-links a:hover { color: var(--white-50); }

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(24px);
  padding: 32px var(--px);
  z-index: 999;
  border-bottom: 1px solid var(--white-08);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem; font-weight: 500; color: var(--white-50);
  padding: 16px 0; border-bottom: 1px solid var(--white-04);
  transition: color .3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn-primary {
  text-align: center; justify-content: center; margin-top: 16px;
  border-bottom: none; padding: 16px 32px;
}
