/* ================================
   EKYS Hazırlık – style.css
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --red:       #0D2B6E;
  --red-dark:  #091f52;
  --red-light: #eef2ff;
  --black:     #1a1a1a;
  --gray:      #555;
  --line:      #e5e5e5;
  --bg:        #f9f9f9;
  --white:     #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --transition: .2s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--black); }
.nav-logo-img {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  background: var(--red);
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
}
.hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
}
.hero p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-disclaimer {
  font-size: .75rem;
  opacity: .65;
  margin-top: 20px;
}
.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: #f0f0f0; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ---------- SECTIONS ---------- */
.section {
  padding: 72px 24px;
}
.section-alt { background: var(--bg); }
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ---------- FEATURE GRID ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .875rem;
  color: var(--gray);
}

/* ---------- PREMIUM ---------- */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.premium-list li:last-child { border-bottom: none; }
.check {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.premium-card {
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}
.premium-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.premium-card p { opacity: .85; margin-bottom: 28px; font-size: .95rem; }
.price-tag {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.price-tag small { font-size: 1rem; font-family: var(--font-body); opacity: .75; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--black);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-strip p { opacity: .7; margin-bottom: 28px; }
.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.95);
  color: #111;
  padding: 10px 20px;
  border-radius: 10px;
  min-width: 168px;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.store-badge:hover { opacity: .93; transform: translateY(-2px); }
.badge-icon { flex-shrink: 0; }
.badge-text { display: flex; flex-direction: column; line-height: 1; }
.badge-text small { font-size: .6rem; color: #444; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.badge-text strong { font-size: .95rem; color: #111; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  font-family: var(--font-body);
}
.faq-q .arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ---------- CONTACT CARD ---------- */
.contact-card {
  background: var(--red-light);
  border: 1px solid #c7d7f5;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.contact-card a { color: var(--red); font-weight: 500; }
.contact-card p { font-size: .85rem; color: var(--gray); margin-top: 4px; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--red);
  color: var(--white);
  padding: 52px 24px 48px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
}
.page-hero p { opacity: .85; margin-top: 10px; font-size: .95rem; }

/* ---------- PROSE (privacy/terms) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 40px 0 12px;
  color: var(--red);
}
.prose h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 8px;
}
.prose p, .prose li {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 10px;
}
.prose ul { padding-left: 20px; list-style: disc; }
.prose .meta-box {
  background: var(--bg);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  font-size: .85rem;
  color: var(--gray);
}
.prose .warning-box {
  background: #fff8f0;
  border: 1px solid #f5d49a;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .875rem;
  color: var(--black);
  margin: 24px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin: 20px 0;
}
.prose th {
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.prose td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
}
.prose tr:nth-child(even) td { background: var(--bg); }

/* ---------- SUPPORT CARDS ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.support-card-head {
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.support-card-body {
  padding: 20px;
}
.step-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: .875rem;
  color: var(--gray);
}
.step-num {
  width: 20px;
  height: 20px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--black);
  color: #999;
  padding: 40px 24px;
  font-size: .825rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #999; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-note { width: 100%; margin-top: 16px; border-top: 1px solid #333; padding-top: 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--red);
    padding: 8px 0;
  }
  .nav-links.open a {
    padding: 12px 24px;
    display: block;
  }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .premium-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .contact-card { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
