/* =========================================================
   Makro CNC Makina — Light Theme
   ========================================================= */

:root {
  --bg-0: #ffffff;
  --bg-1: #f8fafc;
  --bg-2: #eef2f7;
  --surface: #ffffff;
  --surface-hi: #f1f5f9;
  --border: #e2e8f0;
  --border-hi: #28abe3;
  --brand: #28abe3;
  --brand-dk: #1d8fc4;
  --neon: #06b6d4;
  --neon-soft: rgba(40, 171, 227, 0.25);
  --accent: #0ea5e9;
  --text: #0f172a;
  --text-dim: #475569;
  --text-mute: #94a3b8;
  --success: #16a34a;
  --danger: #dc2626;

  --grad-metal: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  --grad-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --grad-cta: linear-gradient(135deg, #28abe3 0%, #06b6d4 100%);

  --shadow-glow: 0 10px 30px -10px rgba(40, 171, 227, 0.35);
  --shadow-glow-hi: 0 18px 50px -15px rgba(40, 171, 227, 0.55);
  --shadow-card: 0 10px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.06);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle background grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 171, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 171, 227, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--brand-dk); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--text-dim); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =====================  NAVIGATION  ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.1);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-brand span small {
  display: block;
  font-size: 0.62rem;
  color: var(--brand);
  letter-spacing: 0.22em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: rgba(40, 171, 227, 0.08);
}

.nav-cta {
  background: var(--grad-cta);
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 20px !important;
  border-radius: 8px;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-hi);
  background: var(--grad-cta) !important;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    gap: 4px;
    box-shadow: var(--shadow-card);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; }
  .nav-toggle { display: inline-flex; }
}

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-cta);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hi);
  color: #ffffff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(40, 171, 227, 0.06);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* =====================  SECTIONS  ===================== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--brand);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(40, 171, 227, 0.3);
  border-radius: 999px;
  background: rgba(40, 171, 227, 0.06);
  margin-bottom: 18px;
  font-weight: 500;
}

.section-head p {
  font-size: 1.05rem;
  margin-top: 14px;
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Video background hero */
.hero-video { background: #0a0e1a; }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.92) 100%),
    radial-gradient(ellipse at center, rgba(40,171,227,0.15), transparent 60%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 171, 227, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.9;  transform: translateX(-50%) scale(1.08); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
  animation: blink 2s ease-in-out infinite;
}

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

.hero h1 {
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-dim);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stage {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-soft);
}

.hero-stage .stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}

.hero-stage .stage-dot.active {
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
}

/* =====================  STAT STRIP  ===================== */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 8px;
}

/* =====================  CARDS  ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(40, 171, 227, 0.10),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-4px);
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-cta);
  color: #ffffff;
  margin-bottom: 22px;
  box-shadow: var(--shadow-glow);
}

.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 12px; color: var(--text); }
.card p { font-size: 0.95rem; margin-bottom: 20px; }

.card-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.card-link::after { content: "→"; transition: transform 0.2s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* =====================  ABOUT SPLIT  ===================== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.split h2 { margin-bottom: 20px; }
.split p  { margin-bottom: 16px; font-size: 1.02rem; }

.split-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 80px -30px var(--neon-soft);
}

.split-visual svg { width: 100%; height: 100%; }

/* =====================  REFERENCES  ===================== */
.refs {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.ref-item {
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.ref-item:hover {
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* =====================  VISION / MISSION  ===================== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }

.vm {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.vm::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-cta);
}

.vm h3 {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}

/* =====================  CTA BAND  ===================== */
.cta-band {
  text-align: center;
  padding: 80px 40px;
  background: var(--grad-cta);
  color: #ffffff;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow-hi), var(--shadow-card);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
}

.cta-band h2,
.cta-band p { color: #ffffff; position: relative; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.95; }
.cta-band .eyebrow {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

.cta-band .btn-primary {
  background: #ffffff;
  color: var(--brand);
}
.cta-band .btn-primary:hover { color: var(--brand-dk); }
.cta-band .btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: #ffffff;
}

/* =====================  FOOTER  ===================== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p   { font-size: 0.92rem; max-width: 320px; color: var(--text-dim); }

footer h4 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
  font-weight: 600;
}

footer ul { list-style: none; }
footer li { margin-bottom: 10px; color: var(--text-dim); font-size: 0.92rem; }
footer a { color: var(--text-dim); font-size: 0.92rem; }
footer a:hover { color: var(--brand); }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

/* =====================  TIMELINE  ===================== */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--brand), transparent);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 30px;
}

.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }

.tl-item::before {
  content: "";
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 4px rgba(40, 171, 227, 0.15);
}

.tl-item:nth-child(odd)::before  { right: -8px; }
.tl-item:nth-child(even)::before { left: -8px; }

.tl-year {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-bottom: 8px;
  font-weight: 600;
}

.tl-item h3 { margin-bottom: 8px; }

@media (max-width: 720px) {
  .timeline::before { left: 20px; }
  .tl-item, .tl-item:nth-child(even) {
    width: 100%; left: 0; padding-left: 50px; text-align: left;
  }
  .tl-item::before, .tl-item:nth-child(odd)::before, .tl-item:nth-child(even)::before {
    left: 12px; right: auto;
  }
}

/* =====================  GALLERY  ===================== */
.gal-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gal-filter button {
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.gal-filter button:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.gal-filter button.active {
  background: var(--grad-cta);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-2px);
}

.gal-item:hover img { transform: scale(1.06); }

.gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent 55%);
  padding: 16px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay .t {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.gal-overlay .c {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: #67e8f9;
  text-transform: uppercase;
}

.gal-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  border: 1px dashed var(--border);
  border-radius: 12px;
}

/* =====================  CONTACT  ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.form .row { margin-bottom: 18px; }
.form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(40, 171, 227, 0.15);
}

.form textarea { resize: vertical; min-height: 130px; }

.honey { position: absolute; left: -9999px; opacity: 0; }

.contact-info {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-info h3 { margin-bottom: 18px; }

.ci-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.ci-item:last-child { border-bottom: none; }

.ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-cta);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.ci-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
  font-weight: 600;
}

.ci-text strong { color: var(--text); font-weight: 600; }
.ci-text strong a { color: var(--text); }
.ci-text strong a:hover { color: var(--brand); }

.map-embed {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 260px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* =====================  VALUES GRID  ===================== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.value {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.value:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.value .vicon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--grad-cta);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.value h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.value p  { font-size: 0.88rem; color: var(--text-dim); }

/* =====================  PAGE HERO (alt sayfalar)  ===================== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(40, 171, 227, 0.12), transparent 60%);
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* =====================  SERVICE DETAIL  ===================== */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; } }

.svc-features {
  margin: 24px 0;
  list-style: none;
}

.svc-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text);
}

.svc-features li::before {
  content: "▸";
  position: absolute;
  left: 8px;
  color: var(--brand);
  font-weight: bold;
}

.svc-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 80px -30px var(--neon-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-visual svg { width: 70%; height: 70%; }

/* =====================  REVEAL ANIMATION  ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================  UTIL  ===================== */
.mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
