/* VizeBis360 — acente dijital kurulum hub (taslak) */

.v360-preview-bar {
  background: linear-gradient(90deg, #0f172a, #11559c);
  color: #e2e8f0;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  border-bottom: 2px solid #f59e0b;
}
.v360-preview-bar strong {
  color: #fbbf24;
  margin-right: 0.5rem;
}

.v360-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: linear-gradient(160deg, #07172f 0%, #11559c 55%, #0ea5e9 100%);
  color: #fff;
}
.v360-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.v360-hero-glow-a { width: 320px; height: 320px; background: #65d6ff; top: -80px; right: 10%; }
.v360-hero-glow-b { width: 260px; height: 260px; background: #818cf8; bottom: -60px; left: 5%; }

.v360-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.v360-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.v360-hero-secondary {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
}

.v360-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.v360-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.v360-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(17,85,156,0.12);
  border-color: #11559c;
}
.v360-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #11559c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.v360-card h3 { font-size: 1.2rem; font-weight: 800; color: #111; margin: 0; }
.v360-card p { color: #64748b; font-size: 0.92rem; line-height: 1.55; margin: 0; flex: 1; }
.v360-card-link { color: #11559c; font-weight: 700; font-size: 0.9rem; }

/* 3D placeholder stage */
.v360-stage {
  perspective: 900px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.v360-stage-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,23,42,0.85);
  color: #f8fafc;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v360-cube {
  width: 140px;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  animation: v360-spin 18s linear infinite;
}
.v360-cube-face {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(17,85,156,0.15), rgba(14,165,233,0.25));
  border: 2px solid rgba(17,85,156,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #11559c;
  backface-visibility: hidden;
}
.v360-cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(70px); }
.v360-cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(70px); }
.v360-cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(70px); }
.v360-cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(70px); }
.v360-cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(70px); }
.v360-cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(70px); }

@keyframes v360-spin {
  from { transform: rotateX(-12deg) rotateY(0deg); }
  to { transform: rotateX(-12deg) rotateY(360deg); }
}

.v360-ref-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}
.v360-ref-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.v360-ref-grid-cards {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 820px;
  margin: 0 auto;
}
.v360-ref-group-title {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: #334155;
  text-align: center;
}
.v360-ref-group-title:not(:first-of-type) {
  margin-top: 2.25rem;
}
.v360-ref-card--screen .v360-ref-card-media {
  aspect-ratio: 4 / 3;
}
.v360-ref-card--screen .v360-ref-card-media img {
  object-fit: cover;
}
.v360-ref-card--card .v360-ref-card-media {
  aspect-ratio: auto;
  min-height: 0;
  padding: 1rem 1.1rem 0.65rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v360-ref-card--card .v360-ref-card-media img {
  width: 100%;
  max-height: 168px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.1);
}
.v360-ref-card--card:hover .v360-ref-card-media img {
  transform: none;
}
.v360-ref-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v360-ref-card-media {
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  overflow: hidden;
}
.v360-ref-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.v360-ref-card:hover .v360-ref-card-media img { transform: scale(1.03); }
.v360-ref-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.v360-ref-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #11559c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v360-ref-card-body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-ref-card-body p {
  margin: 0;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.45;
}
.v360-ref-link {
  margin-top: auto;
  padding-top: 0.5rem;
  color: #11559c;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.v360-ref-link:hover { text-decoration: underline; }

.v360-showcase,
.v360-showcase-link {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  text-decoration: none;
}
.v360-showcase img,
.v360-showcase-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* Showcase carousel */
.v360-carousel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}
.v360-carousel-viewport {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  min-height: 300px;
}
.v360-carousel-track {
  position: relative;
}
.v360-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  display: flex;
  flex-direction: column;
}
.v360-carousel-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.v360-carousel-link {
  display: block;
  text-decoration: none;
}
.v360-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
  object-fit: contain;
  margin: 0 auto;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}
.v360-carousel-caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid #eef2f7;
  background: #fff;
}
.v360-carousel-caption strong {
  font-size: 0.95rem;
  color: #0f172a;
}
.v360-carousel-caption span {
  font-size: 0.8rem;
  color: #64748b;
}
.v360-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem 0.9rem;
  background: #fff;
}
.v360-carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.v360-carousel-dot.is-active {
  width: 22px;
  background: #11559c;
}

.v360-gallery {
  display: grid;
  gap: 1rem;
}
.v360-gallery-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}
.v360-gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.05);
}
.v360-gallery-item-card .v360-gallery-media {
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.v360-gallery-item-card img {
  width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.1);
}
.v360-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.v360-gallery-item figcaption {
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.v360-gallery-item figcaption strong {
  font-size: 0.95rem;
  color: #0f172a;
}
.v360-gallery-item figcaption span {
  font-size: 0.8rem;
  color: #64748b;
}
.v360-features-panel { height: 100%; }
.v360-brand-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #eff6ff;
  color: #11559c;
  font-weight: 800;
  font-size: 0.92rem;
}
.v360-brand-badge a {
  color: #0b4a8a;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}
.v360-brand-badge a:hover { text-decoration: underline; }
.v360-pricing-note {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}
.v360-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.v360-platform-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}
.v360-platform-item i {
  color: #11559c;
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
}

/* Hub bilgilendirme */
.v360-info-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.v360-info-section-alt { background: #f8fafc; }
.v360-info-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.v360-info-heading .section-kicker { justify-content: center; }
.v360-info-lead {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0.75rem auto 0;
}
.v360-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.v360-why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.v360-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #11559c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.v360-why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}
.v360-why-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.v360-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}
.v360-digital-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}
.v360-digital-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
}
.v360-digital-list i {
  color: #11559c;
  width: 1rem;
  text-align: center;
  font-size: 0.85rem;
}
/* Acente sekmeleri (hub üst) */
.v360-audience-section {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}
.v360-audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.v360-audience-tab {
  appearance: none;
  border: 2px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.v360-audience-tab:hover {
  border-color: #93c5fd;
  color: #11559c;
}
.v360-audience-tab.is-active {
  border-color: #11559c;
  background: #11559c;
  color: #fff;
  box-shadow: 0 8px 24px rgba(17,85,156,0.22);
}
.v360-audience-panels {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 12rem;
}
.v360-audience-panel {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.v360-audience-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.v360-audience-panel-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}
.v360-audience-panel-inner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-ne-yapar {
  max-width: 820px;
  margin: 0 auto;
}
.v360-digital-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.v360-faq-section {
  background: #f8fafc;
}
.v360-audience-lead {
  margin: 0 0 0.85rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}
.v360-faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}
.v360-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.v360-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: #0f172a;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.v360-faq-item summary::-webkit-details-marker { display: none; }
.v360-faq-item summary::after {
  content: '+';
  color: #11559c;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.v360-faq-item[open] summary::after { content: '−'; }
.v360-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.v360-integration-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.v360-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.v360-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 1120px;
  margin: 0 auto;
  counter-reset: v360step;
}
.v360-steps-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}
.v360-steps-heading .section-kicker {
  justify-content: center;
}
.v360-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.65rem 1.35rem 1.45rem;
  position: relative;
  padding-top: 3.1rem;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.v360-step strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.35rem;
}
.v360-step p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}
.v360-step::before {
  counter-increment: v360step;
  content: counter(v360step);
  position: absolute;
  top: 1.15rem;
  left: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #11559c;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v360-teklif-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
}

/* Detail pages */
.v360-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 2.75rem;
  background: linear-gradient(160deg, #07172f 0%, #11559c 55%, #0ea5e9 100%);
  color: #fff;
}
.v360-detail-hero-inner {
  position: relative;
  z-index: 1;
}
.v360-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
}
.v360-breadcrumb a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.v360-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.v360-breadcrumb strong { color: #fbbf24; font-weight: 700; }

.v360-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.v360-detail-icon {
  flex-shrink: 0;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 30px rgba(7,23,47,0.18);
}
.v360-detail-head-copy { flex: 1; min-width: min(100%, 260px); }
.v360-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bae6fd;
}
.v360-detail-head h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
.v360-detail-lead {
  margin: 0.75rem 0 0;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}
.v360-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.75rem;
}
.v360-back-link {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  text-decoration: none;
}
.v360-back-link:hover { color: #fff; text-decoration: underline; }
.v360-back-link-dark {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.v360-back-link-dark:hover { color: var(--primary); text-decoration: underline; }

.v360-detail-body { padding-top: 3rem; }
.v360-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: start;
}
.v360-detail-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 1.85rem;
  box-shadow: 0 12px 32px rgba(15,23,42,0.04);
}
.v360-detail-panel h2,
.v360-detail-panel h3 {
  margin: 0 0 0.85rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-detail-panel h2 { font-size: 1.35rem; }
.v360-detail-panel h3 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
}
.v360-muted {
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
.v360-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v360-meta-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.v360-meta-list div { margin: 0; }
.v360-meta-list dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #11559c;
}
.v360-meta-list dd {
  margin: 0.2rem 0 0;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
}
.v360-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.v360-checklist li {
  position: relative;
  padding-left: 1.55rem;
  color: #475569;
  line-height: 1.55;
}
.v360-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #11559c;
  font-size: 0.75rem;
}
.v360-stage-detail {
  min-height: 360px;
  overflow: visible;
}
.v360-detail-refs {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.v360-cta { padding-top: 0; }
.v360-cta-box {
  display: block !important;
  max-width: 820px;
  margin: 0 auto;
}
.v360-cta-box h2 { margin-bottom: 0.65rem; }
.v360-cta-box p {
  color: #dceaf6;
  margin: 0 0 1.35rem;
}

/* Teklif page hero */
.v360-teklif-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 2rem;
  background: linear-gradient(160deg, #07172f 0%, #11559c 55%, #0ea5e9 100%);
  color: #fff;
  text-align: center;
}
.v360-teklif-hero .container { position: relative; z-index: 1; }
.v360-teklif-hero h1 {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.v360-teklif-hero .v360-detail-lead { margin-inline: auto; }

.v360-field { margin-bottom: 1.25rem; }
.v360-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: #334155; }
.v360-field input,
.v360-field textarea,
.v360-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}
.v360-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}
.v360-checkgrid label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}
.v360-checkgrid input { margin-top: 0.2rem; width: auto; }
.v360-checkgrid label:has(input:checked) {
  border-color: #11559c;
  background: #f0f7ff;
}

.v360-msg { padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.9rem; margin-top: 1rem; display: none; }
.v360-msg.is-error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.v360-msg.is-success { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }

@media (max-width: 1024px) {
  .v360-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v360-ref-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v360-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
  .v360-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v360-split { grid-template-columns: 1fr; }
  .v360-hub-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .v360-grid { grid-template-columns: 1fr; }
  .v360-ref-grid,
  .v360-ref-grid-cards { grid-template-columns: 1fr; max-width: none; }
  .v360-gallery-cards { grid-template-columns: 1fr; }
  .v360-steps { grid-template-columns: 1fr; gap: 1rem; }
  .v360-steps-heading { margin-bottom: 2rem; }
  .v360-why-grid { grid-template-columns: 1fr; }
  .v360-digital-list { grid-template-columns: 1fr; }
  .v360-platform-grid { grid-template-columns: 1fr; }
  .v360-hero { padding: 2.75rem 0 3.25rem; }
  .v360-hero-actions { flex-direction: column; align-items: stretch; }
  .v360-hero .button { width: 100%; justify-content: center; text-align: center; }
  .v360-detail-hero { padding: 1.75rem 0 2.25rem; }
  .v360-detail-grid { grid-template-columns: 1fr; }
  .v360-stage-detail { min-height: 280px; }
  .v360-teklif-form { padding: 1.25rem; }
  .v360-wizard-promo-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.15rem 1rem;
  }
  .v360-wizard-promo-inner .section-kicker { justify-content: center; }
  .v360-wizard-open-btn { width: 100%; justify-content: center; }
  .v360-wizard-fab span { display: none; }
  .v360-wizard-fab {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .v360-audience-tab {
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    padding: 0.7rem 1rem;
  }
  .v360-audience-section { padding-top: 1.75rem; padding-bottom: 1.5rem; }
  .v360-info-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .v360-integration-strip { justify-content: flex-start; }
  .v360-pill { font-size: 0.82rem; }
  .v360-hub-blog-grid { grid-template-columns: 1fr; }
  .v360-wizard-form-row { grid-template-columns: 1fr; }
  .v360-wizard-head h2 { font-size: 1.2rem; padding-right: 2.5rem; }
  .v360-wizard-result-list li { font-size: 0.72rem; }
}

/* Paket öneri sihirbazı */
.v360-wizard-promo {
  padding: 0 0 1.5rem;
  margin-top: -0.5rem;
}
.v360-wizard-promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #11559c 55%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(17,85,156,0.25);
}
.v360-wizard-promo-inner .section-kicker { color: #bae6fd; }
.v360-wizard-promo-inner h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  color: #fff;
}
.v360-wizard-promo-inner h2 em { font-style: normal; color: #7dd3fc; }
.v360-wizard-promo-inner p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.v360-wizard-open-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff !important;
  color: #11559c !important;
  border: 0;
  font-weight: 800;
}
.v360-wizard-fab {
  position: fixed;
  right: 16px;
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  z-index: 9985;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #11559c);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17,85,156,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.v360-wizard-fab:hover { transform: translateY(-2px); }
.v360-wizard-fab i { font-size: 15px; }
body.v360-wizard-open { overflow: hidden; }
.v360-wizard-root {
  position: fixed;
  inset: 0;
  z-index: 9995;
  pointer-events: none;
}
.v360-wizard-root.is-open { pointer-events: auto; }
.v360-wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  opacity: 0;
  transition: opacity 0.25s;
}
.v360-wizard-root.is-open .v360-wizard-backdrop { opacity: 1; }
.v360-wizard-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(560px, calc(100vw - 24px));
  max-height: min(90dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.22);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s, border-radius 0.25s, width 0.25s, height 0.25s;
  padding: 0;
  z-index: 1;
}
.v360-wizard-root.is-open .v360-wizard-dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.v360-wizard-root.is-form-step .v360-wizard-dialog,
.v360-wizard-root.is-open.is-sheet .v360-wizard-dialog {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
  transform: none;
}
.v360-wizard-head {
  flex-shrink: 0;
  padding: 1.25rem 1.25rem 0;
  padding-top: max(1.25rem, env(safe-area-inset-top));
}
.v360-wizard-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.25rem 1rem;
}
.v360-wizard-form-title {
  margin: 1rem 0 0.75rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-wizard-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
  z-index: 2;
}
.v360-wizard-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #11559c;
}
.v360-wizard-head h2 {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-wizard-sub {
  margin: 0 0 0.85rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}
.v360-wizard-progress {
  height: 4px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.v360-wizard-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #11559c, #0ea5e9);
  border-radius: inherit;
  transition: width 0.25s;
}
.v360-wizard-step h3 {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
}
.v360-wizard-options,
.v360-wizard-checks {
  display: grid;
  gap: 0.55rem;
}
.v360-wizard-option,
.v360-wizard-check {
  display: block;
  cursor: pointer;
}
.v360-wizard-option input,
.v360-wizard-check input,
.v360-wizard-pref-opt input { position: absolute; opacity: 0; pointer-events: none; }
.v360-wizard-option span,
.v360-wizard-check span,
.v360-wizard-pref-opt span {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.v360-wizard-option span { flex-direction: column; gap: 0.2rem; }
.v360-wizard-option strong,
.v360-wizard-check span { font-weight: 700; color: #0f172a; }
.v360-wizard-option small {
  display: block;
  margin-top: 0.15rem;
  color: #64748b;
  font-weight: 500;
  font-size: 0.82rem;
}
.v360-wizard-option input:checked + span,
.v360-wizard-check input:checked + span,
.v360-wizard-pref-opt input:checked + span {
  border-color: #11559c;
  background: #eff6ff;
}
.v360-wizard-check span i {
  color: #11559c;
  margin-top: 0.15rem;
  width: 1rem;
  text-align: center;
}
.v360-wizard-result {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.05rem;
}
.v360-wizard-result-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #11559c;
}
.v360-wizard-result h3 {
  margin: 0.25rem 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.v360-wizard-result-lead {
  margin: 0 0 0.65rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}
.v360-wizard-result-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.v360-wizard-result-list li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #334155;
}
.v360-wizard-form {
  display: grid;
  gap: 0.65rem;
}
.v360-wizard-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}
.v360-wizard-form input[type="text"],
.v360-wizard-form input[type="tel"],
.v360-wizard-form input[type="email"] {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}
.v360-wizard-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.v360-wizard-pref {
  margin: 0.25rem 0 0;
  padding: 0;
  border: 0;
}
.v360-wizard-pref legend {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.45rem;
}
.v360-wizard-pref-opt span {
  align-items: center;
  font-weight: 700;
  font-size: 0.88rem;
}
.v360-wizard-pref-opt i { color: #11559c; }
.v360-wizard-hp { position: absolute; left: -9999px; }
.v360-wizard-foot {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0;
  padding: 0.85rem 1.25rem;
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  border-top: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(15,23,42,0.05);
}
.v360-wizard-next,
.v360-wizard-submit {
  min-height: 44px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.v360-wizard-back {
  margin-right: auto;
  border: 0;
  background: transparent;
  color: #64748b;
  font-weight: 700;
  cursor: pointer;
}
.v360-wizard-msg {
  margin-top: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.88rem;
}
.v360-wizard-msg.is-error { background: #fef2f2; color: #b91c1c; }
.v360-wizard-msg.is-success { background: #ecfdf5; color: #047857; }

/* Hub blog rehberleri */
.v360-hub-blog { background: #fff; }
.v360-hub-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.v360-hub-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.v360-hub-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}
.v360-hub-blog-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}
.v360-hub-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v360-hub-blog-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #94a3b8;
}
.v360-hub-blog-cat {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.v360-hub-blog-body { padding: 1rem 1.05rem 1.1rem; }
.v360-hub-blog-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}
.v360-hub-blog-body p {
  margin: 0 0 0.65rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}
.v360-hub-blog-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #11559c;
}
.v360-hub-blog-more {
  text-align: center;
  margin: 1.35rem 0 0;
}
.v360-hub-blog-more a {
  color: #11559c;
  font-weight: 700;
}
