:root {
  --navy: #1a2d5a;
  --navy-dark: #0f1c3d;
  --navy-deep: #0a1430;
  --orange: #f7841e;
  --orange-dark: #e06f0b;
  --text: #1f2937;
  --muted: #5b6475;
  --line: #e5e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 28, 61, .08);
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Montserrat", "Inter", sans-serif; color: var(--navy-dark); line-height: 1.2; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--orange); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: all .25s ease; cursor: pointer; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(247, 132, 30, .35); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(15, 28, 61, .08); }
.topbar { background: var(--navy-deep); color: #c9d1e3; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar a:hover { color: var(--orange); }
.topbar-items { display: flex; gap: 24px; }
.topbar-items span, .topbar-items a { display: inline-flex; align-items: center; gap: 8px; }
.topbar svg { width: 14px; height: 14px; color: var(--orange); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Montserrat", sans-serif; font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: .02em; }
.brand-text small { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: .18em; text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.menu a {
  position: relative; display: block; padding: 10px 16px;
  font-weight: 600; font-size: 15px; color: var(--navy-dark);
  transition: color .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform .25s;
}
.menu a:hover, .menu a.active { color: var(--orange); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.menu .btn { margin-left: 12px; padding: 11px 22px; color: #fff; }
.menu .btn::after { display: none; }
.menu .btn:hover { color: #fff; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy-dark); margin: 6px 0; transition: .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% 20%, rgba(247,132,30,.18), transparent 60%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 120px 0 140px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; margin-bottom: 22px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 18px; color: #c9d1e3; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-emblem {
  width: min(380px, 80vw); aspect-ratio: 1; border-radius: 32px;
  background: #fff; display: grid; place-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: rotate(-4deg);
  animation: float 6s ease-in-out infinite;
}
.hero-emblem img { width: 70%; }
.hero-ring {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(247,132,30,.4); top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 40s linear infinite;
}
@keyframes float { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-14px); } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Feature strip */
.strip { margin-top: -64px; position: relative; z-index: 2; }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.strip-item { padding: 32px; display: flex; gap: 18px; align-items: flex-start; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: 0; }
.strip-item h3 { font-size: 18px; margin-bottom: 6px; }
.strip-item p { color: var(--muted); font-size: 15px; }

.icon {
  flex: none; width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(247,132,30,.12); color: var(--orange);
}
.icon svg { width: 28px; height: 28px; }
.icon.navy { background: rgba(26,45,90,.08); color: var(--navy); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards.cards-4 .card { padding: 32px 26px; }
.cards.cards-4 .card h3 { font-size: 19px; }

/* AI products */
.ai-section {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(700px 400px at 10% 0%, rgba(247,132,30,.16), transparent 60%),
              radial-gradient(700px 400px at 90% 100%, rgba(80,120,220,.18), transparent 60%),
              var(--navy-deep);
}
.ai-section .section-head h2 { color: #fff; }
.ai-section .section-head p { color: #b8c2d9; }
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product {
  position: relative; padding: 40px; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s, border-color .3s, background .3s;
}
.product:hover { transform: translateY(-6px); border-color: rgba(247,132,30,.5); background: rgba(255,255,255,.07); }
.product .icon { width: 64px; height: 64px; margin-bottom: 22px; background: rgba(247,132,30,.15); }
.product .icon svg { width: 32px; height: 32px; }
.product h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.product p { color: #b8c2d9; font-size: 15.5px; }
.badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  color: var(--orange); background: rgba(247,132,30,.12); border: 1px solid rgba(247,132,30,.35);
}
.service .badge { position: static; display: inline-block; margin-bottom: 10px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; transition: all .3s ease; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon { margin-bottom: 22px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; color: var(--orange); font-size: 15px; }
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; transition: .2s; }

/* Ürün videosu */
.video-split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; align-items: center; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
  background: var(--navy-deep); box-shadow: 0 24px 60px rgba(15, 28, 61, .22);
}
.video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-split .checklist { margin-top: 0; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.split p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }
.checklist { list-style: none; margin: 24px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat;
}

.panel {
  position: relative; border-radius: 20px; padding: 48px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(247,132,30,.45), transparent 70%);
}
.panel h3 { color: #fff; font-size: 24px; margin-bottom: 28px; position: relative; }
.pillars { display: grid; gap: 22px; position: relative; z-index: 1; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar .num {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; font-family: "Montserrat", sans-serif;
  background: rgba(247,132,30,.15); color: var(--orange); border: 1px solid rgba(247,132,30,.35);
}
.pillar h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.pillar p { color: #b8c2d9; font-size: 14.5px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 36px;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange); margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; padding: 72px 0; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px);
}
.cta .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.9); font-size: 17px; }
.cta .btn-navy { background: var(--navy-deep); }

/* Page hero */
.page-hero {
  position: relative; overflow: hidden; color: #fff; padding: 88px 0 80px;
  background: radial-gradient(800px 400px at 90% 0%, rgba(247,132,30,.22), transparent 60%),
              linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 50px); margin-bottom: 14px; }
.page-hero p { color: #c9d1e3; font-size: 18px; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: #9aa6c2; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span:last-child { color: var(--orange); }

/* Service detail */
.service-list { display: grid; gap: 32px; }
.service {
  display: grid; grid-template-columns: 96px 1fr 1fr; gap: 40px; align-items: start;
  padding: 44px; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  transition: box-shadow .3s;
}
.service:hover { box-shadow: var(--shadow); }
.service .icon { width: 80px; height: 80px; border-radius: 20px; }
.service .icon svg { width: 40px; height: 40px; }
.service h2 { font-size: 26px; margin-bottom: 12px; }
.service p { color: var(--muted); }
.service .checklist { margin: 0; }
.service .checklist li { font-size: 15px; }

/* Values */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: center; padding: 36px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.value .icon { margin: 0 auto 18px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
.info-cards { display: grid; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.info-card h3 { font-size: 16px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15.5px; }
.info-card a:hover { color: var(--orange); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--navy-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; font: inherit; font-size: 15px; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(247,132,30,.12);
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

.map { margin-top: 40px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); height: 400px; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer { background: var(--navy-deep); color: #aab4cc; padding: 80px 0 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--orange); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-badge { background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand img { height: 44px; }
.footer-brand strong { color: #fff; font-family: "Montserrat", sans-serif; font-size: 18px; letter-spacing: .02em; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--orange); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13.5px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 25px rgba(37,211,102,.4);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .cards, .cards.cards-4, .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service { grid-template-columns: 80px 1fr; }
  .service .checklist { grid-column: 2; }
}
@media (max-width: 860px) {
  .topbar-items.secondary, .topbar .secondary { display: none; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; box-shadow: 0 20px 30px rgba(15,28,61,.08);
    display: none;
  }
  .menu.open { display: flex; }
  .menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .menu a::after { display: none; }
  .menu .btn { margin: 16px 0 0; justify-content: center; border-bottom: 0; }
  .nav { position: relative; }
  .hero { padding: 72px 0 110px; }
  .hero .container, .split, .contact-grid, .products, .video-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .product { padding: 28px; }
  .badge { position: static; display: inline-block; margin-bottom: 16px; }
  .cards, .cards.cards-2, .cards.cards-4, .values, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .brand img { height: 44px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 9.5px; }
  .topbar-items { gap: 14px; }
  .service { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .service .checklist { grid-column: auto; }
  .panel, .form-card { padding: 28px; }
  .cta .container { flex-direction: column; align-items: flex-start; }
}

/* ---------- 48 Saatte CAM Programı ---------- */
[hidden] { display: none !important; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: 14px; font-weight: 600; color: #e6ebf5; }
.hero-badges i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.cam-section { background: var(--bg-soft); }
.demo-note { background: #fff7ed; border: 1px dashed var(--orange); color: #9a4a06; border-radius: 12px; padding: 12px 16px; font-size: 14px; margin-bottom: 28px; }
.demo-note code { background: rgba(247,132,30,.12); padding: 1px 6px; border-radius: 6px; }
.cam-grid { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }
.cam-form { display: grid; gap: 20px; }
.cam-step { border: 1px solid var(--line); background: #fff; border-radius: 18px; padding: 28px; min-width: 0; }
.cam-step legend { display: flex; align-items: center; gap: 12px; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 19px; color: var(--navy-dark); padding: 0 8px; margin-left: -8px; }
.cam-step legend b { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--orange); color: #fff; font-size: 15px; }
.cam-step .field:last-child { margin-bottom: 0; }
.dropzone { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 34px 20px; margin-bottom: 18px; border: 2px dashed #c9d1e3; border-radius: 14px; background: var(--bg-soft); cursor: pointer; transition: border-color .2s, background .2s; }
.dropzone:hover, .dropzone.over { border-color: var(--orange); background: #fff7ed; }
.dropzone svg { width: 40px; height: 40px; color: var(--orange); margin-bottom: 4px; }
.dropzone strong { color: var(--navy-dark); }
.dropzone span { font-size: 14px; color: var(--muted); word-break: break-all; }
.chips-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chips-select button { font: inherit; font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-soft); color: var(--navy-dark); cursor: pointer; transition: all .15s; }
.chips-select button:hover { border-color: var(--orange); }
.chips-select button.on { background: var(--navy); border-color: var(--navy); color: #fff; }
.check-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.check-card:hover { border-color: var(--orange); }
.check-card input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--orange); flex: none; }
.check-card b { display: block; color: var(--navy-dark); font-size: 15px; }
.check-card small { color: var(--muted); font-size: 13.5px; }
.check-card.urgent:has(input:checked) { border-color: var(--orange); background: #fff7ed; }
.field small.hint { display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted); }
.cam-summary { position: sticky; top: 140px; display: grid; gap: 16px; }
.viewer { position: relative; height: 280px; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at 50% 30%, #1f3566, var(--navy-deep)); }
.viewer canvas { display: block; width: 100% !important; height: 100% !important; cursor: grab; }
.viewer-empty, .viewer-loading { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; color: #8d9abb; font-weight: 600; font-size: 14px; pointer-events: none; }
.viewer-empty svg { width: 56px; height: 56px; }
.viewer-loading i { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(255,255,255,.2); border-top-color: var(--orange); animation: spin2 1s linear infinite; }
@keyframes spin2 { to { transform: rotate(360deg); } }
.part-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.part-stats div { padding: 12px 14px; border-right: 1px solid var(--line); }
.part-stats div:last-child { border-right: 0; }
.part-stats dt { font-size: 12px; color: var(--muted); }
.part-stats dd { font-weight: 700; color: var(--navy-dark); font-size: 14px; }
.price-box { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.price-label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.price { display: block; font-family: "Montserrat", sans-serif; font-size: 40px; font-weight: 800; color: var(--navy-dark); line-height: 1.15; margin: 4px 0; }
.min-note { display: inline-block; font-size: 12.5px; color: #9a4a06; background: #fff7ed; padding: 3px 10px; border-radius: 999px; }
.delivery { display: flex; gap: 12px; align-items: center; margin: 18px 0; padding: 14px; border-radius: 12px; background: var(--bg-soft); }
.delivery svg { width: 26px; height: 26px; color: var(--orange); flex: none; }
.delivery span { display: block; font-size: 12.5px; color: var(--muted); }
.delivery b { color: var(--navy-dark); font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.pay-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 10px; }
.breakdown { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; font-size: 14px; }
.breakdown summary { cursor: pointer; font-weight: 700; color: var(--navy-dark); }
.breakdown small { color: var(--muted); font-weight: 500; }
.breakdown table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.breakdown td { padding: 6px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.breakdown td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.breakdown tr.tot td { font-weight: 700; color: var(--navy-dark); }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 200; max-width: min(560px, calc(100% - 32px)); background: var(--navy-deep); color: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,.3); font-size: 14.5px; }
@media (max-width: 1024px) {
  .cam-grid { grid-template-columns: 1fr; }
  .cam-summary { position: static; order: -1; }
}
@media (max-width: 600px) {
  .cam-step { padding: 20px; }
  .part-stats { grid-template-columns: 1fr; }
  .part-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .price { font-size: 34px; }
}
/* ---------- Ürün sayfası: NX Setup Book ---------- */
.product-hero { padding: 72px 0 88px; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.badge-pill { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); background: rgba(247,132,30,.12); border: 1px solid rgba(247,132,30,.4); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.lead-lg { font-size: 19px !important; margin-bottom: 30px; }
.lead-lg strong { color: #fff; }
.product-hero-shot img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.12); }
.btn-outline svg { width: 16px; height: 16px; }
.problem-list li::before { background-color: #d9483b; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E"); }
.video-frame { position: relative; max-width: 960px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy-deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-alt { text-align: center; margin-top: 14px; font-size: 14px; color: var(--muted); }
.video-alt a { color: var(--orange); font-weight: 600; }
.feature-row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; margin-bottom: 88px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-text h3 { font-size: clamp(22px, 2.6vw, 28px); margin: 12px 0 14px; }
.feature-text p { color: var(--muted); font-size: 16.5px; }
.feature-text .checklist { margin: 20px 0 0; }
.step-tag { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 5px 12px; border-radius: 8px; }
.feature-shot { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(15,28,61,.18); border: 1px solid var(--line); background: var(--navy-deep); }
.feature-shot img { width: 100%; height: auto; }
.outputs { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 24px; align-items: stretch; }
.output { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.output .doc { background: linear-gradient(145deg, var(--navy), var(--navy-deep)); padding: 22px; display: grid; place-items: center; flex: 1; }
.output .doc img { max-height: 380px; width: auto; border-radius: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.output.wide .doc img { max-height: 340px; }
.output figcaption { padding: 20px 22px; font-size: 14.5px; color: var(--muted); }
.output figcaption b { display: block; font-size: 17px; color: var(--navy-dark); margin-bottom: 4px; font-family: "Montserrat", sans-serif; }
.output-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.output-list div { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: 12px; padding: 18px 20px; }
.output-list b { display: block; color: var(--navy-dark); margin-bottom: 4px; }
.output-list span { font-size: 14.5px; color: var(--muted); }
.custom-section .section-head { max-width: 820px; }
.custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.custom-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; transition: transform .25s, box-shadow .25s; }
.custom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.custom-card .icon { margin-bottom: 16px; width: 48px; height: 48px; }
.custom-card .icon svg { width: 24px; height: 24px; }
.custom-card h3 { font-size: 17px; margin-bottom: 8px; }
.custom-card p { font-size: 14.5px; color: var(--muted); }
.custom-process { margin-top: 48px; background: linear-gradient(145deg, var(--navy), var(--navy-deep)); color: #fff; border-radius: 20px; padding: 40px; }
.custom-process h3 { color: #fff; font-size: 22px; margin-bottom: 24px; }
.custom-process ol { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.custom-process li { counter-increment: s; position: relative; padding-top: 52px; }
.custom-process li::before { content: "0" counter(s); position: absolute; top: 0; left: 0; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 30px; color: var(--orange); }
.custom-process b { display: block; font-size: 16px; margin-bottom: 6px; }
.custom-process span { font-size: 14.5px; color: #b8c2d9; }
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy-dark); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.product-banner { background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: 22px; padding: 44px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; overflow: hidden; position: relative; }
.product-banner h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.product-banner p { color: #c9d1e3; margin-bottom: 24px; }
.product-banner img { width: 100%; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
@media (max-width: 1024px) {
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .outputs { grid-template-columns: 1fr 1fr; }
  .output.wide { grid-column: 1 / -1; }
  .custom-process ol { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .product-hero-grid, .feature-row, .faq-wrap, .product-banner { grid-template-columns: 1fr; }
  .feature-row { gap: 28px; margin-bottom: 64px; }
  .feature-row.reverse .feature-text { order: 0; }
  .output-list { grid-template-columns: 1fr; }
  .product-banner { padding: 28px; }
}
@media (max-width: 600px) {
  .custom-grid, .outputs, .custom-process ol { grid-template-columns: 1fr; }
  .custom-process { padding: 28px; }
  .output .doc img { max-height: 300px; }
}