:root {
  --bgr: #0052e0;
  --bgr-dark: #0042b3;
  --bgr-cyan: #0ea5e9;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #f4f7fc;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #334155;
  background: #fff;
}

h1, h2, h3, h4, .navbar-brand, .display-font {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bg-bgr { background-color: var(--bgr) !important; }
.text-bgr { color: var(--bgr) !important; }
.btn-bgr {
  --bs-btn-bg: var(--bgr);
  --bs-btn-border-color: var(--bgr);
  --bs-btn-hover-bg: var(--bgr-dark);
  --bs-btn-hover-border-color: var(--bgr-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
}
.btn-outline-bgr {
  --bs-btn-color: var(--bgr);
  --bs-btn-border-color: var(--bgr);
  --bs-btn-hover-bg: var(--bgr);
  --bs-btn-hover-border-color: var(--bgr);
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
}

/* Navbar */
.site-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.site-nav .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0.9rem !important;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--bgr); }
.site-nav .dropdown-menu {
  border-radius: 0.75rem;
  padding: 0.4rem;
  min-width: 16rem;
  margin-top: 0.35rem !important;
}
.site-nav .dropdown-item {
  border-radius: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
}
.site-nav .dropdown-item:hover {
  background: rgba(0, 82, 224, 0.08);
  color: var(--bgr);
}
/* Masaüstü: hover ile açılır menü */
@media (min-width: 992px) {
  .site-nav .nav-item.dropdown:hover > .dropdown-menu,
  .site-nav .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0 !important;
  }
  .site-nav .nav-item.dropdown:hover > .nav-link {
    color: var(--bgr);
  }
  .site-nav .dropdown-toggle::after {
    transition: transform 0.15s ease;
  }
  .site-nav .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
/* Mobil: tıklayınca açılır (.is-open JS ile) */
@media (max-width: 991.98px) {
  .site-nav .nav-item.dropdown > .dropdown-menu {
    display: none;
    position: static;
    float: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding-left: 0.5rem;
  }
  .site-nav .nav-item.dropdown.is-open > .dropdown-menu {
    display: block;
  }
}
.brand-logo {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.navbar-brand .brand-logo { height: 44px; }
.site-footer .brand-logo {
  height: 48px;
  max-width: 160px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.82) 0%, rgba(0, 82, 224, 0.55) 55%, rgba(14, 165, 233, 0.35) 100%),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 14ch;
  animation: fadeUp 0.7s ease both;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 34rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-actions { animation: fadeUp 0.7s ease 0.2s both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.section-pad { padding: 5rem 0; }
.section-title {
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
}
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* Service blocks — image + text, not tiny cards in hero */
.service-block {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.service-block .media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.service-block .body { padding: 1.75rem; }
.service-block h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
  background: #eef2ff;
  color: var(--bgr);
  margin-bottom: 0.75rem;
}

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 82, 224, 0.1);
}
.price-card.featured {
  border-color: var(--bgr);
  box-shadow: 0 16px 40px rgba(0, 82, 224, 0.14);
  background: linear-gradient(180deg, #eef2ff 0%, #fff 90px);
}
.price-card.highlight-pulse {
  outline: 3px solid var(--bgr);
  outline-offset: 3px;
  animation: pulse 1.2s ease 3;
}
@keyframes pulse {
  50% { outline-color: var(--bgr-cyan); }
}
.price-block {
  margin: 0.75rem 0 0.25rem;
}
.price-usd-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-display);
  line-height: 1.1;
}
.price-usd {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
}
.price-cycle {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.price-try-row {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-body, Figtree, system-ui, sans-serif);
}
.price-inline {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.price-inline-usd {
  font-weight: 800;
  color: var(--bgr);
}
.price-inline-try {
  font-size: 0.85em;
  font-weight: 500;
  color: var(--muted);
}
.stat-card .price-usd {
  font-size: 1.6rem;
  color: var(--bgr);
}
.stat-card .price-try-row {
  font-size: 0.85rem;
  font-weight: 500;
}
/* eski sınıflar (geriye dönük) */
.price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}
.price-try-hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.feature-check {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.feature-check li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.feature-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--bgr);
}

/* Process / why */
.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--bgr), var(--bgr-cyan));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.strip {
  background: linear-gradient(90deg, var(--bgr), var(--bgr-cyan));
  color: #fff;
  padding: 3.5rem 0;
}
.strip h2 { color: #fff; }

.cta-panel {
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(0, 82, 224, 0.12), transparent),
    radial-gradient(500px 280px at 90% 100%, rgba(14, 165, 233, 0.1), transparent),
    var(--surface);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(0, 82, 224, 0.08);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; }
.site-footer .brand-line { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }

.page-hero {
  padding: 7rem 0 3rem;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(0, 82, 224, 0.1), transparent),
    radial-gradient(600px 300px at 100% 0%, rgba(14, 165, 233, 0.08), transparent),
    linear-gradient(180deg, #eef2ff, #fff 70%);
}

.pkg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pkg-tab {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
}
.pkg-tab:hover { border-color: var(--bgr); color: var(--bgr); }
.pkg-tab.is-active {
  background: var(--bgr);
  border-color: var(--bgr);
  color: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: var(--bgr);
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 224, 0.15);
}

.logo-row img {
  height: 28px;
  opacity: 0.45;
  filter: grayscale(1);
}

@media (max-width: 991.98px) {
  .hero { min-height: 78vh; }
  .hero h1 { max-width: none; }
}
