/* Araç Röntgeni — Tanıtım sitesi stilleri */
:root {
  --navy-900: #0B1327;
  --navy-800: #101B33;
  --navy-700: #1B2A4A;
  --navy-600: #24365E;
  --cyan: #3FC5E0;
  --cyan-dark: #2AA6C4;
  --gold: #F2B84B;
  --white: #FFFFFF;
  --ink: #E8EEF9;
  --muted: #A9B7D0;
  --card: #16233F;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--navy-900);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.accent { color: var(--cyan); }
.gold { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 19, 39, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(63, 197, 224, 0.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan);
  color: var(--navy-900) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--cyan-dark); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: var(--navy-900); padding: 14px 26px; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--cyan-dark); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); padding: 13px 26px; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--white); }

/* ---------- Store badges ---------- */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.store-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--cyan); }
.store-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-badge .bt { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .bt small { font-size: 0.68rem; color: #cfd6e4; font-weight: 500; }
.store-badge .bt strong { font-size: 1.12rem; font-weight: 700; letter-spacing: 0.2px; }
.soon-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 78px 0 64px;
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(63, 197, 224, 0.18), transparent 60%),
    radial-gradient(900px 420px at 0% 20%, rgba(27, 42, 74, 0.7), transparent 55%),
    var(--navy-900);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 197, 224, 0.12);
  border: 1px solid rgba(63, 197, 224, 0.3);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 60% 40%, rgba(63, 197, 224, 0.28), transparent 62%);
  filter: blur(28px);
  z-index: -1;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}
.trust-row .ti { display: flex; flex-direction: column; }
.trust-row .ti strong { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.trust-row .ti span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sections ---------- */
section.block { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 10px 0 12px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

.alt-bg { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(63, 197, 224, 0.4); }
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(63, 197, 224, 0.14);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(63, 197, 224, 0.4); box-shadow: var(--shadow-md); }
.feature .ficon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(63, 197, 224, 0.2), rgba(63, 197, 224, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature .ficon svg { width: 26px; height: 26px; stroke: var(--cyan); }
.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Preview / showcase ---------- */
.preview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.preview-list { list-style: none; }
.preview-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.preview-list li .chk {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(63, 197, 224, 0.16);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-top: 2px;
}
.preview-list li h4 { font-size: 1.02rem; margin-bottom: 2px; }
.preview-list li p { color: var(--muted); font-size: 0.92rem; }
.preview-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.preview-media img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q .icon { color: var(--cyan); font-size: 1.4rem; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 26px; }
.cta-band .store-badges { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  padding: 54px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-weight: 700; font-size: 1.1rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-col p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}
.footer-bottom .fb-links { display: flex; gap: 20px; }
.footer-bottom .fb-links a:hover { color: var(--cyan); }

/* ---------- Legal pages ---------- */
.legal {
  padding: 56px 0 72px;
  background: var(--navy-900);
}
.legal .container { max-width: 860px; }
.legal-head { margin-bottom: 36px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.legal-head h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin-bottom: 8px; }
.legal-head p { color: var(--muted); font-size: 0.92rem; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 34px 0 12px; color: var(--white); }
.legal-body h3 { font-size: 1.08rem; font-weight: 600; margin: 22px 0 8px; color: var(--cyan); }
.legal-body p { color: var(--ink); margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 22px; color: var(--ink); }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--cyan); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 600; margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 360px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .preview-wrap { grid-template-columns: 1fr; gap: 30px; }
  .preview-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy-800);
    border-bottom: 1px solid var(--border);
    padding: 8px 22px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-toggle { display: block; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .store-badge { min-width: 100%; }
  .cta-band { padding: 36px 22px; }
  section.block { padding: 56px 0; }
}
