/* ============================
   NAVBAR
============================ */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e4e4e7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-mark {
  background: #111827;
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s ease;
  padding: 4px 0;
}

.nav-links a:hover {
  color: #0072f5;
}

/* Buttons in navbar */
.btn-sm {
  padding: 8px 16px;
  background: #0072f5;
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 70px;
    right: 0;
    border-bottom: 1px solid #e4e4e7;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 8px 0;
  }
}

/* ============================
   HERO
============================ */

.hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

/* (İstersen bunları silebilirsin, blob efekti zaten var) */
.hero-bg-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.8;
  z-index: -1;
}

.hero-bg-blur-1 {
  width: 260px;
  height: 260px;
  background: #bfdbfe;
  top: -40px;
  left: -20px;
}

.hero-bg-blur-2 {
  width: 280px;
  height: 280px;
  background: #e0f2fe;
  bottom: -60px;
  right: -40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.highlight {
  color: #0072f5;
}

.hero-desc {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, #0072f5, #0ea5e9);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #0072f5;
  color: #0072f5;
  box-shadow: none;
}

.btn-outline:hover {
  background: #0072f5;
  color: #fff;
}

/* Hero badges */
.hero-badges {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #4b5563;
}

/* Hero Phone Mock */
.hero-visual {
  text-align: center;
}

.phone-mock {
  width: 260px;
  height: 520px;
  background: radial-gradient(circle at top, #111827, #020617);
  border-radius: 40px;
  padding: 18px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 25px 50px rgba(15, 23, 42, 0.65),
    0 0 0 1px rgba(15, 23, 42, 0.6);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f9fafb, #e5e7eb);
  border-radius: 32px;
  overflow: hidden;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.phone-header-dot {
  width: 64px;
  height: 18px;
  border-radius: 999px;
  background: #020617;
  opacity: 0.85;
  position: absolute;
  top: 10px;
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  border: 2px dashed #6b7280;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #374151;
  background: rgba(255, 255, 255, 0.7);
}

.phone-text {
  text-align: center;
}

.phone-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.phone-text p {
  font-size: 0.9rem;
  color: #4b5563;
}

.phone-text small {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-note {
  font-size: 0.86rem;
  color: #6b7280;
  margin-top: 14px;
}

/* Responsive Hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 45px;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ============================
   GRID & KARTLAR
============================ */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.98);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  color: #4b5563;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #d4d4ff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card-muted {
  opacity: 0.82;
}

/* ============================
   HOW IT WORKS / STEPS
============================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step {
  position: relative;
  padding: 24px 20px 22px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.step-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.94rem;
  color: #4b5563;
}

/* ============================
   REFERENCES
============================ */

.reference-card {
  position: relative;
}

.reference-card .ref-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #dcfce7;
  color: #166534;
}

.reference-card p {
  margin-bottom: 10px;
}

.ref-list {
  list-style: none;
  margin-top: 6px;
  margin-bottom: 14px;
  padding-left: 0;
  color: #4b5563;
  font-size: 0.92rem;
}

.ref-btn {
  width: 100%;
  justify-content: center;
}

.reference-card-muted {
  opacity: 0.9;
}

.ghost-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #0072f5;
  text-decoration: none;
}

.ghost-link:hover {
  text-decoration: underline;
}

/* ============================
   PRICING
============================ */

.pricing-box {
  position: relative;
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  padding: 30px 26px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.pricing-box h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price {
  margin: 6px 0 14px;
  font-size: 1.4rem;
  font-weight: 700;
}

.price span {
  font-size: 1.1rem;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 0.94rem;
}

.pricing-list li {
  margin-bottom: 4px;
}

.pricing-note {
  font-size: 0.86rem;
  color: #6b7280;
}

.pricing-box-highlight {
  border-color: #c7d2fe;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.13);
}

.badge-popular {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #eef2ff;
  color: #4f46e5;
}

/* ============================
   FAQ
============================ */

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 16px 18px;
  margin-bottom: 10px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: #c4b5fd;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question h4 {
  font-size: 0.98rem;
}

.faq-toggle {
  font-size: 1.2rem;
  color: #6b7280;
}

.faq-answer {
  display: none;
  color: #4b5563;
  font-size: 0.93rem;
  margin-top: 8px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ============================
   CONTACT / GOOGLE FORM
============================ */

#contact iframe {
  width: 100%;
  height: 600px;
  border: none;
  margin-top: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.contact-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
}

.contact-box p {
  margin-bottom: 8px;
  color: #4b5563;
}

.contact-info {
  font-size: 0.95rem;
}

/* ============================
   FOOTER
============================ */

footer {
  padding: 26px 0 30px;
  text-align: center;
  color: #6b7280;
  font-size: 0.87rem;
}
