﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --brand-navy: #0a192f;
  --brand-navy-strong: #081426;
  --brand-orange: #ff6b00;
  --brand-orange-hover: #ff8533;
  --bg: #0a192f;
  --surface: #122a49;
  --text-primary: #e9f1ff;
  --text-secondary: #b7c7e6;
  --border: #27466c;
  --success: #1f9d57;
  --danger: #cc3344;
  --radius: 14px;
  --shadow: 0 16px 34px rgba(2, 9, 18, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #0a192f;
  color: var(--text-primary);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
  background: rgba(10, 25, 47, 0.96);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 232px;
  height: 50px;
  border-radius: 0;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.36);
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  border: 1px solid #31517c;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-hero {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1.03rem;
}

.hero {
  padding: 66px 0 38px;
  background: linear-gradient(180deg, #0a192f 0%, #0f2745 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  background: rgba(255, 107, 0, 0.14);
  color: #ffd7bf;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.15;
  color: #f7faff;
}

.hero p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.impact-quote {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand-orange);
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  color: #ffe6d5;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-impact {
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 24px;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.highlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
}

.section {
  padding: 32px 0;
  background: #0b1c35;
}

#fiyat {
  background: #09182d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  margin: 0 0 18px;
  color: #f1f6ff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 20px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  padding: 24px;
}

.price-card.popular {
  border: 1px solid #355a88;
  background: linear-gradient(180deg, #143258 0%, #102641 100%);
}

.price-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.price-value {
  margin: 10px 0 6px;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.price-note {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 107, 0, 0.18);
  color: #ffd8c1;
  margin-bottom: 12px;
}

.bullet-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-secondary);
}

.bullet-list li {
  margin-bottom: 8px;
}

.notice {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-target {
  margin-top: 16px;
  max-width: 620px;
}

.notice a {
  color: #ffb280;
}

.status-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.status-chip.success {
  background: #e8f7ef;
  color: var(--success);
}

.status-chip.fail {
  background: #fdecee;
  color: var(--danger);
}

.legal-layout {
  padding: 48px 0 64px;
}

.legal-card {
  padding: 26px;
}

.legal-card h1,
.legal-card h2 {
  color: #f1f6ff;
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  line-height: 1.6;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: #0a192f;
}

.site-footer-inner {
  padding: 22px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

.company-disclosure {
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.company-disclosure h3 {
  margin: 0 0 10px;
  color: #f1f6ff;
  font-size: 1rem;
}

.company-disclosure p {
  margin: 4px 0;
}

.company-disclosure a,
.company-card a {
  color: #ffb280;
  text-decoration: none;
}

.company-card {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.company-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #f1f6ff;
}

.company-card p {
  margin: 4px 0;
}

.payment-trust {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.trust-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: #d0dcf5;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 9px;
  border: 1px solid #395b87;
  background: #0d2441;
  color: #f4f8ff;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.3px;
}

.trust-badge.iyzico {
  background: #0f2749;
  color: #ffffff;
}

.trust-badge.visa {
  background: #123c75;
  color: #ffffff;
}

.trust-badge.mastercard {
  gap: 8px;
}

.mc-icon {
  width: 20px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.mc-icon::before,
.mc-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 0;
}

.mc-icon::before {
  left: 0;
  background: #eb001b;
}

.mc-icon::after {
  right: 0;
  background: #f79e1b;
  opacity: 0.92;
}

@media (max-width: 920px) {
  .brand-mark {
    width: 205px;
    height: 46px;
  }

  .hero-grid,
  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }
}

@media (max-width: 700px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand-mark {
    width: 172px;
    height: 40px;
  }
}


