/* ByDigitv - Inner Pages — ana sayfa ile uyumlu premium palet */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:ital,wght@0,400;0,600;0,700&display=swap");
@import url("footer-seo-prose.css");

:root {
  --bg-primary: #03010A;
  --bg-secondary: #0A0612;
  --accent-primary: #C8A95A;
  --accent-secondary: #E63946;
  --text-primary: #F0EAD6;
  --text-muted: #7A6E8A;
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(200, 169, 90, 0.15);
  --bg1: var(--bg-primary);
  --bg2: var(--bg-secondary);
  --text: var(--text-primary);
  --muted: var(--text-muted);
  --line: var(--border);
  --accent: var(--accent-secondary);
  --accent2: #ff5a64;
  --card: #120e18;
  --card2: var(--bg-secondary);
  --gold: var(--accent-primary);
  --purple: #8a2be2;
  --green: #00ff7f;
  --blue: #2196f3;
  --orange: #c9a227;
}

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

::selection {
  background: rgba(200, 169, 90, 0.35);
  color: #fff;
}
::-moz-selection {
  background: rgba(200, 169, 90, 0.35);
  color: #fff;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-tap-highlight-color: rgba(200, 169, 90, 0.22);
}

body {
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
  background: var(--bg-primary);
  background-image: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0d0818 100%);
  font: 15px/1.6 "DM Sans", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", system-ui, sans-serif;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", Georgia, serif;
}

.emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
  font-style: normal;
  speak: none;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* ========== HEADER ========== */
.inner-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: rgba(3, 1, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.35s ease;
}

.inner-header.header--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.inner-header.header--scrolled .inner-nav {
  padding: 10px 24px;
}

.inner-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  transition: padding 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary) !important;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  padding-left: 14px;
}

.inner-logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-primary), #f5dfa0);
}

.inner-logo:hover {
  color: var(--text-primary);
  transform: scale(1.02);
}

.inner-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(200, 169, 90, 0.35);
}

.inner-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.inner-nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.inner-nav-links a:hover,
.inner-nav-links a.active {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.inner-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.3s ease;
}

.inner-nav-links a:hover::after,
.inner-nav-links a.active::after {
  width: 100%;
}

.inner-whatsapp-btn {
  padding: 12px 24px;
  border-radius: 25px;
  border: 0;
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.inner-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  padding: 140px 24px 70px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 51, 71, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, #ff6b7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== MAIN CONTENT ========== */
.inner-main {
  padding: 0 24px 100px;
  max-width: 920px;
  margin: 0 auto;
}

.content-card {
  background: linear-gradient(145deg, var(--card) 0%, #252535 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--purple), var(--gold));
  opacity: 0.6;
}

.content-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.08);
  transform: translateY(-4px);
}

.content-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.content-card h2 .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 51, 71, 0.25), rgba(138, 43, 226, 0.25));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.content-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 16px;
}

.content-card p:last-of-type {
  margin-bottom: 0;
}

.content-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.content-card ul li {
  color: var(--muted);
  line-height: 1.85;
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-card ul li:last-child {
  border-bottom: 0;
}

.content-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
}

.content-card strong {
  color: var(--text);
  font-weight: 700;
}

/* CTA Box */
.cta-box-premium {
  margin-top: 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 51, 71, 0.06) 100%);
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-box-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

.cta-box-premium p {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
}

.cta-box-premium a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 14px;
  margin: 0 8px 8px 0;
}

.cta-box-premium a:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
}

/* Contact cards (İletişim sayfası) */
.contact-cards-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 28px 0 0;
}

.contact-card-premium {
  display: block;
  padding: 28px 24px;
  background: linear-gradient(145deg, var(--card), #252535);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card-premium:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.contact-card-premium:hover::before {
  opacity: 1;
}

.contact-card-premium i {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.contact-card-premium i.fa-whatsapp { color: #25d366; }
.contact-card-premium i.fa-envelope { color: var(--gold); }
.contact-card-premium i.fa-phone { color: var(--accent); }

.contact-card-premium span {
  font-weight: 700;
  font-size: 16px;
}

/* ========== FOOTER ========== */
.inner-footer {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
  border-top: 1px solid var(--line);
  padding: 60px 24px 32px;
}

.inner-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.inner-footer-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.01em;
}

.inner-footer-section ul {
  list-style: none;
}

.inner-footer-section a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 15px;
}

.inner-footer-section a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  padding-left: 4px;
}

.inner-footer-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.inner-footer-bottom {
  text-align: center;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* Mobile menu toggle */
.inner-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.inner-mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.inner-mobile-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.inner-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.inner-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.inner-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== KURULUM — indirme blogu (admin’den yönetilir) ========== */
.kurulum-dl-mount {
  margin-bottom: 28px;
}

.kurulum-dl-mount--hidden {
  display: none !important;
  margin: 0 !important;
}

.kurulum-dl-wrap.kurulum-dl-wrap {
  padding: 32px 34px 36px;
  background: linear-gradient(145deg, rgba(30, 30, 45, 0.95), rgba(22, 33, 62, 0.88));
  border: 1px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.kurulum-dl-head {
  margin-bottom: 28px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.kurulum-dl-heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  letter-spacing: -0.02em;
}

.kurulum-dl-heading .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 51, 71, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.kurulum-dl-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.kurulum-dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.kurulum-dl-card {
  position: relative;
  padding: 26px 22px;
  border-radius: 18px;
  background: rgba(15, 15, 20, 0.75);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.kurulum-dl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.kurulum-dl-card--apk::before {
  background: radial-gradient(circle at 30% 20%, #3ddc84, transparent 55%);
}

.kurulum-dl-card--code::before {
  background: radial-gradient(circle at 30% 20%, #ffd700, transparent 55%);
}

.kurulum-dl-card--link::before {
  background: radial-gradient(circle at 30% 20%, #2196f3, transparent 55%);
}

.kurulum-dl-card--extra::before {
  background: radial-gradient(circle at 30% 20%, #8a2be2, transparent 55%);
}

.kurulum-dl-card--extra .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #8a2be2, #5c2d91);
  box-shadow: 0 8px 24px rgba(138, 43, 226, 0.35);
}

.kurulum-dl-btn--extra {
  background: linear-gradient(135deg, #8a2be2, #6a1b9a);
  color: #fff !important;
}

.kurulum-dl-card--ios::before {
  background: radial-gradient(circle at 30% 20%, #a8a8a8, transparent 55%);
}

.kurulum-dl-card--pc::before {
  background: radial-gradient(circle at 30% 20%, #0078d4, transparent 55%);
}

.kurulum-dl-card--ios .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #555, #222);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.kurulum-dl-card--pc .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #0078d4, #005a9e);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.35);
}

.kurulum-dl-btn--ios {
  background: linear-gradient(135deg, #3a3a3c, #1c1c1e);
  color: #fff !important;
}

.kurulum-dl-btn--pc {
  background: linear-gradient(135deg, #0078d4, #005a9e);
  color: #fff !important;
}

.kurulum-dl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.kurulum-dl-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  color: #fff;
}

.kurulum-dl-card--apk .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #3ddc84, #00c853);
  box-shadow: 0 8px 24px rgba(61, 220, 132, 0.35);
}

.kurulum-dl-card--code .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #ffd700, #ff9800);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.kurulum-dl-card--link .kurulum-dl-card-icon {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.35);
}

.kurulum-dl-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.kurulum-dl-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 0;
}

.kurulum-dl-code {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.35);
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(255, 215, 0, 0.4);
  margin-bottom: 16px;
  user-select: all;
}

.kurulum-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  margin-top: auto;
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

a.kurulum-dl-btn--apk,
a.kurulum-dl-btn--ios,
a.kurulum-dl-btn--pc,
a.kurulum-dl-btn--link,
a.kurulum-dl-btn--extra {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
}

.kurulum-dl-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.kurulum-dl-btn--apk {
  background: linear-gradient(135deg, #3ddc84, #00a844);
  color: #0a1f0f !important;
}

.kurulum-dl-btn--link {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: #fff !important;
}

.kurulum-dl-btn--ghost {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold) !important;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.kurulum-dl-url-hint {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(189, 189, 189, 0.75);
  word-break: break-all;
  line-height: 1.4;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .kurulum-dl-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .inner-mobile-toggle {
    display: flex;
  }

  .inner-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    max-height: min(75vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .inner-nav-links.active {
    display: flex;
  }

  .inner-nav {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .page-hero {
    padding: 120px 20px 50px;
    min-height: 220px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .kurulum-dl-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kurulum-dl-wrap.kurulum-dl-wrap {
    padding: 26px max(16px, env(safe-area-inset-right)) 28px max(16px, env(safe-area-inset-left));
    max-width: 100%;
    box-sizing: border-box;
  }

  .kurulum-dl-heading {
    font-size: 22px;
  }

  .kurulum-dl-code {
    font-size: 24px;
  }

  .inner-main {
    padding: 0 16px 60px;
  }

  .content-card {
    padding: 28px 24px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .content-card h2 {
    font-size: 22px;
    flex-wrap: wrap;
  }

  .content-card h2 .icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cta-box-premium {
    padding: 28px 24px;
    margin-top: 36px;
  }

  .cta-box-premium p {
    font-size: 16px;
  }

  .cta-box-premium a {
    display: block;
    margin: 0 0 10px;
    text-align: center;
    justify-content: center;
  }

  .inner-footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .inner-footer-section h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 24px;
  }

  .content-card {
    padding: 24px 20px;
  }

  .contact-cards-premium {
    grid-template-columns: 1fr;
  }
}

/* ========== Cihazlar sayfası ========== */
.device-intro-lead {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
}

.device-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.device-card-premium {
  background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(24, 24, 40, 0.9));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.device-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 215, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.device-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 215, 0, 0.12);
}

.device-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 51, 71, 0.25), rgba(255, 215, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.device-card-premium h2 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.device-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(0, 255, 127, 0.1);
  border: 1px solid rgba(0, 255, 127, 0.25);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.device-card-premium p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ========== Yasal metinler ========== */
.legal-document .legal-updated {
  text-align: center;
  color: rgba(189, 189, 189, 0.85);
  font-size: 13px;
  margin-bottom: 28px;
}

.legal-section h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section li {
  margin-bottom: 8px;
}
