/* ===== North Aestech — kurumsal site stilleri ===== */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --ink: #10233d;       /* North Aestech lacivert */
  --ink-soft: #55647a;
  --line: #e3e7ee;
  --accent-1: #c9a227;   /* North Aestech altın/gold (koyulaştırılmış, daha yüksek kontrast) */
  --accent-2: #e4c765;   /* açık altın */
  --accent-navy: #133963;
  --accent-grad: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  --dark-bg: #0a1930;
  --dark-ink: #f5f6fa;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 35, 61, 0.1);
  --max-w: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- Giriş animasyonu: logo amblemi altın çizgiyle "çizilerek" belirir ---------- */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity .7s ease;
}
.page-intro.is-opening { opacity: 0; }
.page-intro.is-done { display: none; }
.page-intro-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-mark-svg { overflow: visible; width: 104px; height: 120px; }
.intro-mark-outline {
  fill: none;
  stroke: var(--accent-1);
  stroke-width: 7;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: intro-mark-draw 1.1s cubic-bezier(.65,0,.35,1) .2s forwards;
}
.intro-mark-fill {
  fill: var(--ink);
  opacity: 0;
  animation: intro-fade-in .5s ease 1.15s forwards;
}
.intro-mark-wing {
  fill: var(--accent-1);
  opacity: 0;
  animation: intro-fade-in .45s ease 1.4s forwards;
}
@keyframes intro-mark-draw { to { stroke-dashoffset: 0; } }
@keyframes intro-fade-in { to { opacity: 1; } }
.page-intro-word {
  display: block;
  margin-top: 20px;
  width: 280px;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: intro-word-in .6s ease 1.55s forwards;
}
@keyframes intro-word-in { to { opacity: 1; transform: translateY(0); } }
.page-intro-underline {
  --intro-underline-w: 92px;
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  margin: 14px auto 0;
  animation: intro-underline-grow .5s ease 1.95s forwards;
}
@keyframes intro-underline-grow { to { width: var(--intro-underline-w, 92px); } }
@media (max-width: 720px) {
  .intro-mark-svg { width: 66px; height: 76px; }
  .page-intro-word {
    margin-top: 14px;
    width: 182px;
  }
  .page-intro-underline {
    --intro-underline-w: 64px;
    margin: 10px auto 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-intro { display: none; }
}

/* ---------- Placeholder içerik uyarısı ---------- */
.placeholder-banner {
  background: #fdf7e8;
  border-bottom: 1px solid #eddcae;
  color: #7a5c0a;
  font-size: 13.5px;
  text-align: center;
  padding: 8px 16px;
}
.placeholder-banner strong { font-weight: 600; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand img {
  height: 40px;
  width: auto;
  display: block;
}
.brand.brand-lg img { height: 54px; }
.footer-tagline {
  color: var(--accent-1);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 10px 0 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:active { transform: scale(.95); }
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary:active { transform: scale(.95); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline:active { transform: scale(.95); }
.btn-gradient {
  background: var(--accent-grad);
  color: #241c02;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,162,39,.35); }
.btn-gradient:active { transform: scale(.95); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- Hero / Background Paths ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
  padding: 168px 24px 120px;
}
/* ---------- Hero arka planı: yumuşak ışık kütleleri + radar/kapsama halkaları ---------- */
.hero-orbit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orbit-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .6;
  animation: blob-float 20s ease-in-out infinite;
  will-change: transform;
}
.hero-orbit-bg .blob-1 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,162,39,.38), transparent 70%);
  top: -100px; left: -80px;
  animation-duration: 22s;
}
.hero-orbit-bg .blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(19,57,99,.4), transparent 70%);
  bottom: -140px; right: -100px;
  animation-duration: 26s;
  animation-delay: -7s;
}
.hero-orbit-bg .blob-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,162,39,.24), transparent 70%);
  top: 38%; left: 58%;
  animation-duration: 17s;
  animation-delay: -3s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(34px, -26px) scale(1.08); }
  66% { transform: translate(-24px, 22px) scale(0.95); }
}
.hero-orbit-bg .radar {
  position: absolute;
  top: 50%; left: 50%;
  width: 230px; height: 230px;
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0.3);
  opacity: 0;
  animation: radar-pulse 4.5s ease-out infinite;
}
.hero-orbit-bg .radar-2 { animation-delay: 1.5s; }
.hero-orbit-bg .radar-3 { animation-delay: 3s; }
@keyframes radar-pulse {
  0% { transform: translate(-50%,-50%) scale(0.3); opacity: .75; }
  100% { transform: translate(-50%,-50%) scale(4.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit-bg .blob, .hero-orbit-bg .radar { animation: none; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Hero (two-column) ---------- */
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.hero-grid .hero-content { max-width: 560px; margin: 0; text-align: left; }
.hero-grid .hero-actions { justify-content: flex-start; }
.hero-grid .lead { margin: 0 0 36px; }
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media .glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), rgba(201,162,39,0) 70%);
  filter: blur(10px);
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  max-height: 480px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 30px 45px rgba(16, 35, 61, 0.18));
}

.device-shot { text-align: center; }
.device-shot img {
  max-height: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 34px rgba(16, 35, 61, 0.14));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-1);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
}
.hero-grid h1.split-title {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}
/* ---------- Ana başlık: perde açılışı + altın parıltı taraması ---------- */
.hero h1 .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.28em;
  padding: 0.1em 0.04em 0.16em;
  margin-top: -0.1em;
  margin-bottom: -0.16em;
}
.hero h1 .word-inner {
  display: inline-block;
  background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 36%, var(--accent-1) 45%, #f6dfa0 50%, var(--accent-1) 55%, var(--ink) 64%, var(--ink) 100%);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(112%) rotate(2deg);
  opacity: 0;
  animation: word-reveal 3.2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes word-reveal {
  0% { transform: translateY(112%) rotate(2deg); opacity: 0; background-position: 0% 0; }
  28% { transform: translateY(0) rotate(0deg); opacity: 1; background-position: 0% 0; }
  92% { background-position: 100% 0; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; background-position: 100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .word-inner {
    animation: none;
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    background-position: 0 0;
  }
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin: 0; }

.bg-soft { background: var(--bg-soft); }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.grid.grid-center-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid.grid-center-2 .card { flex: 0 1 320px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  color: #241c02;
  margin-bottom: 18px;
  font-size: 20px;
}
.card .icon svg { width: 21px; height: 21px; }
.card h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Rozet/logo içeren kart (ör. Alman Kalite Standardı) — altın kutu yerine logoyu olduğu gibi gösterir */
.card.badge-card .icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin-bottom: 16px;
}
.card.badge-card .icon img { width: 122px; height: auto; display: block; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 28px 0;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .75;
}

/* ---------- İki servis kartı (Satış / Teknik Servis) ---------- */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  position: relative;
  border-radius: 22px;
  padding: 40px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card.sales {
  background: linear-gradient(160deg, #16345a 0%, #0d2140 100%);
  color: #fff;
}
.service-card.service {
  background: linear-gradient(160deg, var(--accent-2) 0%, var(--accent-1) 100%);
  color: #241c02;
}
.service-card .tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  margin-bottom: 18px;
  width: fit-content;
}
.service-card.service .tag { background: rgba(16,35,61,.14); }
.service-card h3 { font-size: 26px; margin: 0 0 10px; letter-spacing: -0.02em; }
.service-card p { margin: 0 0 22px; font-size: 15px; line-height: 1.6; opacity: .92; max-width: 380px; }
.service-card .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.service-card.service .btn-outline { border-color: rgba(16,35,61,.35); color: #241c02; }

/* ---------- Marka bağımsız servis rozeti ---------- */
.badge-allbrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.badge-allbrand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-1); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step { text-align: left; }
.step .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-size: 16.5px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* ---------- Ürün kategori kartları ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card .cat-top {
  height: 130px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c3e63 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.category-card .cat-body { padding: 26px; }
.category-card h3 { margin: 0 0 8px; font-size: 18px; }
.category-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.category-card ul { margin: 0; padding: 0 0 0 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }

/* ---------- Ürün / cihaz kartları ---------- */
.product-grid {
  display: grid;
  /* auto-fill (not auto-fit): keeps empty track space reserved instead of
     collapsing it, so a category with only 1-2 products doesn't stretch
     those cards to fill the whole row. */
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.product-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: card-in .6s cubic-bezier(.2,.8,.2,1) forwards;
}
.product-grid .product-card:nth-child(1) { animation-delay: .05s; }
.product-grid .product-card:nth-child(2) { animation-delay: .12s; }
.product-grid .product-card:nth-child(3) { animation-delay: .19s; }
.product-grid .product-card:nth-child(4) { animation-delay: .26s; }
.product-grid .product-card:nth-child(5) { animation-delay: .33s; }
a.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .prod-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #241c02;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-card .prod-media {
  /* Kutu, cihazın kendi (dikey/portre) oranına göre şekillenir — cihaz kutuya
     sıkıştırılmaz, kutu cihaza göre boyutlanır. */
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 22px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .prod-media img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.product-card .prod-media-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 62px !important;
  height: auto !important;
  max-height: none !important;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.4));
}
.product-card .prod-media-icon { font-size: 38px; opacity: .55; }
.product-card .prod-body { padding: 20px 22px 24px; }
.product-card h3 { margin: 0 0 6px; font-size: 16.5px; }
.product-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
.product-card .prod-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-1);
}

.product-category {
  margin-bottom: 44px;
}
.product-category:last-child { margin-bottom: 0; }
.product-category-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
}
.product-category-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.product-category-label .count {
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
}

/* Yakında (çok yakında eklenecek) kartları — soluk / pasif görünüm */
.product-card.soon { cursor: default; }
.product-card.soon .prod-badge {
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.product-card.soon .prod-media { opacity: .5; }
.product-card.soon .prod-body { opacity: .55; }
.product-card.soon:hover { transform: none; box-shadow: none; }

/* ---------- Pricing / FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--ink-soft);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); margin: 14px 0 0; line-height: 1.65; font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { margin: 28px 0 8px; font-size: 16px; }
.contact-info p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.map-embed {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; }

/* ---------- Contact info cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-cards .card {
  padding: 24px;
  opacity: 0;
  transform: translateY(18px);
  animation: card-in .6s cubic-bezier(.2,.8,.2,1) forwards;
}
.contact-cards .card h3 { margin: 0 0 8px; font-size: 16px; }
.contact-cards .card p { margin: 0; }
.contact-cards .card.card-address { grid-column: 1 / -1; }
.contact-cards .card:nth-child(1) { animation-delay: .05s; }
.contact-cards .card:nth-child(2) { animation-delay: .12s; }
.contact-cards .card:nth-child(3) { animation-delay: .19s; }
.contact-cards .card:nth-child(4) { animation-delay: .26s; }
.contact-cards .card:nth-child(5) { animation-delay: .33s; }
.contact-cards .card:nth-child(6) { animation-delay: .4s; }
@keyframes card-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-cards .card, .product-card { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 720px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-soft);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent-1);
  background: #fff;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--dark-bg);
  color: var(--dark-ink);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  margin: 0 24px;
  overflow: hidden;
  isolation: isolate;
}
.cta-band h2 { margin: 0 0 14px; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.02em; }
.cta-band p { color: #c3cad9; margin: 0 0 32px; font-size: 16px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.25); color: #fff; }
.cta-band .btn-outline:hover { border-color: #fff; }

.cta-band .mesh-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(42% 60% at 15% 20%, rgba(201, 162, 39, .35), transparent 70%),
    radial-gradient(45% 60% at 85% 25%, rgba(19, 57, 99, .65), transparent 70%),
    radial-gradient(55% 65% at 50% 90%, rgba(10, 25, 48, .8), transparent 70%),
    #0a1930;
  background-size: 180% 180%, 180% 180%, 200% 200%, 100% 100%;
  animation: mesh-drift 22s ease-in-out infinite;
}
@keyframes mesh-drift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
  50%  { background-position: 30% 40%, 60% 50%, 40% 60%, 0 0; }
  100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
}
.cta-band .mesh-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.cta-band .cta-inner { position: relative; z-index: 3; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 { font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--ink-soft); font-size: 14.5px; transition: color .2s; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- About page bits ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-strip .num { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent-1); }
.stat-strip .label { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }

.statement-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 24px 0;
}
.statement-block h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.statement-block p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.75;
}

/* ---------- Ürün detay sayfası ---------- */
.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent-1); }
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.product-hero .prod-hero-media {
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.product-hero .prod-hero-media img { max-height: 480px; max-width: 100%; width: auto; height: auto; }
.product-hero .prod-hero-media.no-box {
  background: none;
  border: none;
  padding: 0;
}
.product-hero .prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.product-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.product-hero p.lead { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin: 0 0 26px; }

.visual-banner img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse farthest-side at center, black 45%, transparent 100%);
  mask-image: radial-gradient(ellipse farthest-side at center, black 45%, transparent 100%);
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:first-child { border-top: 1px solid var(--line); }
.spec-table td { padding: 15px 6px; font-size: 15px; vertical-align: top; }
.spec-table td:first-child { color: var(--ink-soft); width: 40%; font-weight: 600; }
.spec-table td:last-child { color: var(--ink); }
.spec-placeholder { color: var(--ink-soft); font-style: italic; }
.spec-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.spec-list li { line-height: 1.6; }
.spec-list strong { color: var(--ink); font-weight: 700; }
.spec-bullets { list-style: disc; margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.spec-bullets li { line-height: 1.6; }

/* ---------- IVOS Lazer detay sayfası — premium karanlık tema ---------- */

/* Açılış / "splash" görseli — sayfa ayrı bir marka deneyimiymiş gibi açılır */
.ivos-page .ivos-splash {
  position: relative;
  background: #05070c;
  padding: 0;
  overflow: hidden;
}
.ivos-page .ivos-splash-media {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  isolation: isolate;
}
.ivos-page .ivos-splash-media picture,
.ivos-page .ivos-splash-media img {
  display: block;
  width: 100%;
  height: auto;
}
.ivos-page .ivos-splash-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
}
.ivos-page .ivos-splash-badge img { width: 104px; height: auto; display: block; }
.ivos-page .ivos-splash-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(5,7,12,0), #05070c);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 720px) {
  .ivos-page .ivos-splash-badge { top: 10px; right: 10px; }
  .ivos-page .ivos-splash-badge img { width: 56px; }
  .ivos-page .ivos-splash-fade { height: 60px; }
}

.ivos-page .ivos-hero {
  position: relative;
  overflow: hidden;
  background: #05070c;
  isolation: isolate;
}
.ivos-page .ivos-hero::before,
.ivos-page .ivos-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.ivos-page .ivos-hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(74,168,255,.32), transparent 70%);
  top: -140px; left: -160px;
}
.ivos-page .ivos-hero::after {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,154,77,.28), transparent 70%);
  bottom: -170px; right: -140px;
}
.ivos-page .ivos-hero .container { position: relative; z-index: 2; }
.ivos-page .ivos-hero .breadcrumb { color: rgba(255,255,255,.45); }
.ivos-page .ivos-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.ivos-page .ivos-hero .breadcrumb a:hover { color: #fff; }
.ivos-page .ivos-hero .prod-eyebrow {
  background: rgba(255,255,255,.06);
  border-color: rgba(74,168,255,.4);
  color: #bcdcff;
}
.ivos-page .ivos-hero h1 { color: #fff; }
.ivos-page .ivos-hero p.lead { color: rgba(255,255,255,.72); }
.ivos-page .ivos-hero .prod-hero-media {
  background: transparent;
  border: none;
  padding: 0;
}
.ivos-page .ivos-hero .prod-hero-media img {
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.07);
  max-height: 560px;
}
.ivos-page .ivos-hero .btn-outline {
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.ivos-page .ivos-hero .btn-outline:hover { border-color: #fff; }

.ivos-page .ivos-spec {
  background: #0b0e15;
}
.ivos-page .ivos-spec .eyebrow { color: #7ec2ff; }
.ivos-page .ivos-spec .section-head h2 { color: #fff; }
.ivos-page .ivos-spec .section-head p { color: rgba(255,255,255,.6); }
.ivos-page .ivos-spec .spec-table tr { border-color: rgba(255,255,255,.1); }
.ivos-page .ivos-spec .spec-table td:first-child { color: rgba(255,255,255,.55); }
.ivos-page .ivos-spec .spec-table td:last-child { color: #f4f6fb; }
.ivos-page .ivos-spec .spec-placeholder { color: rgba(255,255,255,.4); }

.ivos-page .ivos-cta.cta-band { background: #05070c; }
.ivos-page .ivos-cta .mesh-gradient {
  background:
    radial-gradient(42% 60% at 15% 20%, rgba(74,168,255,.4), transparent 70%),
    radial-gradient(45% 60% at 85% 25%, rgba(255,154,77,.35), transparent 70%),
    radial-gradient(55% 65% at 50% 90%, rgba(5,7,12,.9), transparent 70%),
    #05070c;
  background-size: 180% 180%, 180% 180%, 200% 200%, 100% 100%;
}

/* Ürün kartı — koyu/premium fotoğraf (dolu kutu, boşluksuz, kendi arka planıyla) */
.product-card.dark-card .prod-media {
  aspect-ratio: 4 / 5;
  padding: 0;
  background: #05070c;
}
.product-card.dark-card .prod-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card.dark-card .prod-badge {
  background: linear-gradient(90deg, #4aa8ff, #ff9a4d);
  color: #0a0a0a;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero-grid .hero-actions { justify-content: center; }
  .hero-media { order: -1; margin-bottom: 12px; }
  .hero-media img { max-height: 340px; }
  .service-split { grid-template-columns: 1fr; }
  .mascot-block { flex-direction: column; text-align: center; }
  .product-hero { grid-template-columns: 1fr; text-align: center; }
  .product-hero .prod-hero-media { order: -1; margin-bottom: 8px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .grid, .category-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Premium background (İletişim / Hakkımızda / Teknik Servis — üst bölüm) ---------- */
.hero-banner-bg {
  background-image: url('img/bg-premium.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .hero-banner-bg { background-position: center 30%; }
}

/* ---------- Scroll-in reveal (kart/başlık gruplarını sayfa kaydırılınca göster) ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ---------- Teknik Servis — "Hizmet Kapsamı" kartları ---------- */
.svc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-top {
  position: relative;
  padding: 26px 26px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c3e63 100%);
  overflow: hidden;
}
.svc-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(228,199,101,.35), transparent 60%);
  pointer-events: none;
}
.svc-num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.14);
  z-index: 0;
}
.svc-icon {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #241c02;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card:hover .svc-icon { transform: scale(1.08) rotate(-6deg); }
.svc-top h3 {
  position: relative; z-index: 1;
  color: #fff;
  margin: 16px 0 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.svc-body { padding: 22px 26px 28px; }
.svc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.svc-list li {
  position: relative;
  padding-left: 27px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  transition: transform .2s ease, color .2s ease;
}
.svc-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #241c02;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.svc-list li:hover { transform: translateX(4px); color: var(--ink); }
.svc-list li.svc-more { color: var(--accent-1); font-weight: 700; font-style: italic; }
.svc-list li.svc-more::before { content: "+"; font-style: normal; }
.svc-cta {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 18px;
  font-size: 14px;
  border-color: var(--line);
  color: var(--ink);
}
.svc-cta svg { width: 15px; height: 15px; transition: transform .25s ease; }
.svc-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.svc-cta:hover svg { transform: translateX(3px); }
