/* ============================================
   PAGE COMPONENTS - Mavi Kurumsal Tema
   ============================================ */

/* ============================================
   HERO SHOWCASE - telefon mockup'ları
   ============================================ */
.hero-showcase {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-bg-card {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 75%;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-2xl);
}

.hero-bg-card-svg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand) 50%, var(--color-brand-soft) 100%);
}

.hero-bg-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: 
    radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-bg-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(14, 165, 233, 0.35) 0, transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(34, 211, 238, 0.25) 0, transparent 40%);
}

.hero-phones {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px 0;
}

.hero-phone {
  width: 230px;
  aspect-ratio: 9/19;
  background: #0a0a0a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 
    0 30px 70px -25px rgba(15, 23, 42, 0.55),
    0 0 0 1.5px #1a1a1a,
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  flex-shrink: 0;
}

.hero-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-phone-front {
  z-index: 3;
  transform: translateY(15px) rotate(-2deg);
}

.hero-phone-back {
  z-index: 2;
  transform: translateY(-15px) rotate(3deg);
  opacity: 0.95;
}

.hero-float-badge {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1px solid var(--color-line);
  min-width: 170px;
}

.hero-float-badge--top-left {
  top: 50px;
  left: -10px;
}

.hero-float-badge--bottom-right {
  bottom: 80px;
  right: -20px;
}

.hero-float-badge-icon {
  width: 38px;
  height: 38px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-float-badge--bottom-right .hero-float-badge-icon {
  background: var(--color-accent);
  color: white;
}

.hero-float-badge-text {
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  line-height: 1.3;
}

.hero-float-badge-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.hero-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: heroLivePulse 2s infinite;
  flex-shrink: 0;
}

@keyframes heroLivePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}

.hero-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--color-line);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--color-brand);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.hero-tag--1 {
  top: 80px;
  right: 20px;
}

.hero-tag--2 {
  bottom: 130px;
  left: 0;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: white;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.8rem;
  color: var(--color-ink-muted);
}

/* ============================================
   ANA ÜRÜNLER
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 50px auto 0;
}

.product-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-light);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.product-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-soft) 100%);
  color: white;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-ink);
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

/* ============================================
   PHOTO SHOWCASE - sade band
   ============================================ */
.photo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.photo-frame:first-child {
  aspect-ratio: 16/10;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   MOBİL EKOSİSTEM - sekmeli
   ============================================ */
.eco-section {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, white 100%);
  padding: 110px 0;
}

.eco-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 40px auto;
  background: white;
  padding: 6px;
  border-radius: var(--r-md);
  width: fit-content;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}

.eco-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
}

.eco-tab:hover {
  color: var(--color-brand);
}

.eco-tab.active {
  background: var(--color-brand);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.eco-panel {
  display: none;
}

.eco-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.eco-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-top: 30px;
}

.eco-block-reverse {
  grid-template-columns: 1.1fr 1fr;
}

.eco-block-reverse .eco-text {
  order: 2;
}

.eco-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 18px 0 18px;
  letter-spacing: -0.02em;
}

.eco-text h3 em {
  color: var(--color-accent);
  font-style: normal;
}

.eco-text .lead {
  margin-bottom: 28px;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}

.eco-features {
  list-style: none;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.eco-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink-soft);
}

.eco-features .check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-brand-light);
  color: var(--color-brand);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.eco-features strong {
  color: var(--color-ink);
  font-weight: 600;
}

.eco-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}

.eco-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.eco-stat-label {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  margin-top: 6px;
}

/* Telefon mockup (eco section) */
.phones-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 40px 0;
}

.phone-mockup {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 
    0 30px 60px -20px rgba(15, 23, 42, 0.45),
    0 0 0 2px #1a1a1a;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.phone-mockup.phone-back {
  position: absolute;
  width: 240px;
  z-index: 1;
  opacity: 0.7;
}

.phone-mockup.phone-back-left {
  transform: translateX(-110px) rotate(-8deg);
}

.phone-mockup.phone-back-right {
  transform: translateX(110px) rotate(8deg);
}

.phone-mockup.phone-front {
  position: relative;
  z-index: 2;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ============================================
   ENTEGRASYONLAR
   ============================================ */
.integrations-section {
  background: white;
  padding: 110px 0;
  border-top: 1px solid var(--color-line);
}

.int-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 40px auto;
  flex-wrap: wrap;
  background: var(--color-bg-alt);
  padding: 6px;
  border-radius: var(--r-md);
  width: fit-content;
  border: 1px solid var(--color-line);
}

.int-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  font-weight: 500;
}

.int-tab:hover {
  color: var(--color-brand);
}

.int-tab.active {
  background: white;
  color: var(--color-brand);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.int-panel {
  display: none;
}

.int-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.int-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 130px;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.int-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.int-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.int-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
}

.int-status {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.int-summary {
  text-align: center;
  margin-top: 50px;
  padding: 28px 30px;
  background: var(--color-brand-subtle);
  border-radius: var(--r-xl);
  border: 1px solid var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.int-summary-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand);
  display: block;
  line-height: 1;
}

.int-summary-item span {
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin-top: 4px;
  display: block;
}

/* ============================================
   E-DÖNÜŞÜM
   ============================================ */
.legal-strip {
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-deep) 60%, var(--color-brand) 100%);
  color: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.legal-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.12), transparent 45%);
}

.legal-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.legal-strip .container {
  position: relative;
  z-index: 1;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.legal-strip .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent-soft);
  border-color: rgba(255, 255, 255, 0.15);
}

.legal-strip h2 {
  color: white;
  margin-bottom: 16px;
}

.legal-strip h2 em {
  color: var(--color-accent-soft);
  font-style: normal;
}

.legal-strip p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
}

.legal-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--t-base);
}

.legal-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.legal-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.legal-badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.legal-badge-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
}

/* ============================================
   WHATSAPP BAR
   ============================================ */
.whatsapp-bar {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0 0;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.wa-content {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  min-width: 280px;
}

.wa-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: white;
}

.wa-text h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--color-ink);
}

.wa-text p {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--t-base);
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.45);
}

/* ============================================
   ZİNCİR / ŞUBELİ
   ============================================ */
.chain-section {
  background: white;
  padding: 110px 0;
}

.chain-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink-soft);
}

.split-list .check {
  width: 22px;
  height: 22px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.chain-dashboard {
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand) 100%);
  border-radius: var(--r-xl);
  padding: 32px;
  color: white;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.chain-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 60%);
  pointer-events: none;
}

.chain-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chain-dash-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
}

.chain-dash-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chain-dash-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.chain-dash-branches {
  display: grid;
  gap: 10px;
}

.chain-branch {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chain-branch-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: white;
}

.chain-branch-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ============================================
   DONANIM
   ============================================ */
.hardware-section {
  padding: 110px 0;
  background: var(--color-bg-alt);
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.hardware-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-light);
}

.hardware-image {
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.hardware-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hardware-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--color-brand);
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.hardware-body {
  padding: 22px 24px 26px;
}

.hardware-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.hardware-body p {
  color: var(--color-ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.hardware-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
  font-size: 0.78rem;
  color: var(--color-ink-muted);
}

.hardware-meta strong {
  color: var(--color-brand);
  font-weight: 700;
}

/* ============================================
   BAYİLİK
   ============================================ */
.partner-section {
  background: white;
  padding: 110px 0;
  border-top: 1px solid var(--color-line);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.partner-benefit {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--t-base);
}

.partner-benefit:hover {
  background: var(--color-brand-subtle);
  border-color: var(--color-brand-light);
}

.partner-benefit-icon {
  width: 38px;
  height: 38px;
  background: var(--color-brand);
  color: white;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.partner-benefit-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.partner-benefit-text span {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.partner-visual {
  background: linear-gradient(135deg, var(--color-brand-subtle) 0%, white 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.partner-bullets {
  list-style: none;
  margin-top: 20px;
}

.partner-bullets li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

.partner-bullets li:last-child { border-bottom: none; }

.partner-bullets strong {
  color: var(--color-brand);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.cta-card {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-deep) 100%);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.2), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.15), transparent 50%);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-card h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-card h2 em {
  color: var(--color-accent-soft);
  font-style: normal;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   PAGE HEADER (alt sayfalar için)
   ============================================ */
.page-header {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--color-brand-subtle) 0%, white 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--color-brand);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header h1 {
  max-width: 760px;
  margin: 14px auto 18px;
}

.page-header .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-ink-soft);
}

/* ============================================
   SPLIT SECTIONS (ozellikler için)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 16px 0;
}

.split-text h2 em {
  color: var(--color-accent);
  font-style: normal;
}

.split-text .lead {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

/* ============================================
   ÇÖZÜMLER (sector cards)
   ============================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-light);
}

.solution-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.solution-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.solution-image .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.solution-card:hover .solution-image .photo {
  transform: scale(1.05);
}

.photo-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: white;
  color: var(--color-brand);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.solution-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-card h3 { margin-bottom: 10px; font-weight: 700; }
.solution-card p { color: var(--color-ink-soft); font-size: 0.92rem; line-height: 1.6; flex: 1; }

.solution-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.solution-meta strong {
  color: var(--color-brand);
  font-weight: 600;
}

/* ============================================
   VALUE CARDS (hakkımızda)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: all var(--t-base);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-light);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.value-card h3 { font-weight: 700; }

/* ============================================
   CONTACT (iletişim)
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin: 16px 0 20px; }

.contact-list {
  list-style: none;
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
}

.contact-form {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h2 { font-size: 1.6rem; }

.form-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  background: white;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq {
  max-width: 800px;
  margin: 50px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item:hover {
  border-color: var(--color-brand-light);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  gap: 20px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   STORY / TIMELINE
   ============================================ */
.split-visual {
  position: relative;
}

.story-quote-card {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-deep) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-quote-card::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 7rem;
  color: var(--color-accent-soft);
  font-weight: 800;
  line-height: 1;
  opacity: 0.4;
}

.story-quote-card p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.55;
  color: white;
  margin-bottom: 20px;
}

.story-quote-card .attrib {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-accent-soft);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero-phone { width: 190px; }
  .hero-bg-card { width: 80%; }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hardware-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .legal-grid,
  .partner-grid,
  .chain-hero,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partner-benefits { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip > :last-child { display: none; }
  
  .eco-block,
  .eco-block-reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .eco-block-reverse .eco-text { order: 0; }
}

@media (max-width: 900px) {
  .phones-stage { min-height: 500px; }
  .phone-mockup { width: 240px; }
  .phone-mockup.phone-back { width: 200px; }
  .phone-mockup.phone-back-left { transform: translateX(-90px) rotate(-8deg); }
  .phone-mockup.phone-back-right { transform: translateX(90px) rotate(8deg); }
  
  .hero-showcase { min-height: 480px; margin-top: 30px; }
  .hero-phone { width: 170px; }
  .hero-float-badge { min-width: 140px; padding: 10px 12px; }
  .hero-float-badge--top-left { left: 0; }
  .hero-float-badge--bottom-right { right: 0; }
  .hero-tag--1 { right: 5px; top: 60px; }
  .hero-tag--2 { left: 10px; bottom: 100px; }
  
  .cta-card { padding: 50px 30px; }
}

@media (max-width: 640px) {
  .hardware-grid,
  .solutions-grid,
  .values-grid,
  .products-grid,
  .int-grid,
  .legal-badges,
  .trust-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }
  
  .form-row { grid-template-columns: 1fr; }
  
  .hero-showcase { min-height: 420px; }
  .hero-phone { width: 150px; }
  .hero-bg-card { width: 85%; right: 0; }
  .hero-float-badge { transform: scale(0.85); transform-origin: top left; }
  .hero-float-badge--bottom-right { transform: scale(0.85); transform-origin: bottom right; }
  .hero-tag { font-size: 0.62rem; padding: 5px 10px; }
  
  .whatsapp-bar { flex-direction: column; text-align: center; padding: 24px; }
  .wa-content { flex-direction: column; text-align: center; }
  
  .int-summary { flex-direction: column; gap: 16px; }
  .contact-form { padding: 28px; }
  
  .int-tabs,
  .eco-tabs {
    width: 100%;
  }
  
  .int-tab,
  .eco-tab {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  
  .legal-strip,
  .cta-section,
  .chain-section,
  .partner-section,
  .hardware-section,
  .integrations-section,
  .eco-section {
    padding: 70px 0;
  }
}
