:root {
  --bg: #0b0e1a;
  --bg-elevated: #131729;
  --card: #171c31;
  --border: #262c47;
  --text: #f2f3f8;
  --text-muted: #9aa1bd;
  --accent: #6c6cff;
  --accent-soft: #6c6cff22;
  --accent-2: #22d3ee;
  --success: #34d399;
  --radius: 16px;
  --max-width: 1120px;
}

/* Açık tema (tema düğmesiyle <html data-theme="light"> olduğunda devreye girer) */
:root[data-theme="light"] {
  --bg: #f3f4f9;
  --bg-elevated: #ffffff;
  --card: #ffffff;
  --border: #e1e3ee;
  --text: #14162a;
  --text-muted: #5a5f78;
  --accent: #5457e5;
  --accent-soft: #5457e51a;
  --accent-2: #0e8fa6;
  --success: #0a8f5b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; }
p { margin: 0 0 16px; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent-2); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: var(--text-muted); font-size: 15px; transition: color .15s; }
.main-nav a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, opacity .15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { opacity: .92; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); width: 100%; }
.btn-small { padding: 9px 18px; font-size: 14px; }
.btn-large { padding: 17px 32px; font-size: 17px; }

/* Hero */
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-copy h1 { font-size: 44px; letter-spacing: -0.02em; }
.accent { color: var(--accent-2); }
.lead { font-size: 17px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 16px; }
.hero-note { font-size: 13px; color: var(--text-muted); }

/* Demo card */
.demo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.demo-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.demo-card h2 { font-size: 22px; }
.demo-card p { font-size: 14px; }

.call-button {
  width: 100%;
  margin: 20px 0 14px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.call-button:hover { transform: translateY(-1px); }
.call-button-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
.call-button-active { box-shadow: 0 0 0 4px var(--accent-soft); }
.call-button-speaking .call-button-icon {
  animation: pulse 0.9s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .5; }
}

.call-status { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }
.call-transcript {
  margin-top: 18px;
  max-height: 180px;
  overflow-y: auto;
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.call-transcript p { font-size: 13px; margin: 0 0 8px; color: var(--text); }

/* Stats */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-value { display: block; font-size: 30px; font-weight: 700; color: var(--accent-2); }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* Sections */
section { padding: 88px 0; }
section h2 { font-size: 32px; letter-spacing: -0.01em; }
.section-lead { font-size: 16px; max-width: 560px; margin-bottom: 40px; }

/* Problem */
.problem-grid, .features-grid, .how-grid, .sectors-grid, .testimonials-grid, .pricing-grid {
  display: grid;
  gap: 24px;
}
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.how-grid { grid-template-columns: repeat(3, 1fr); }
.sectors-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }

.problem-card, .feature-card, .how-card, .sector-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.problem-card h3, .feature-card h3, .sector-card h3 { font-size: 18px; }
.problem-card p, .feature-card p, .sector-card p { font-size: 14px; margin-bottom: 0; }

.how-card { position: relative; }
.how-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 10px;
  letter-spacing: .05em;
}

/* Testimonials */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.testimonial p { font-size: 15px; font-style: italic; color: var(--text); }
.testimonial footer { font-size: 13px; color: var(--text-muted); }

/* Pricing */
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--card) 40%); }
.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-badge-alt { background: var(--accent-2); color: #06202a; }
.price-card h3 { font-size: 20px; margin-bottom: 4px; }
.price-sub { font-size: 13px; margin-bottom: 20px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-amount { font-size: 40px; font-weight: 700; }
.price-currency { font-size: 20px; font-weight: 700; }
.price-period { font-size: 14px; color: var(--text-muted); }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.price-features li {
  font-size: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.price-features li:first-child { border-top: none; }
.price-footnote { font-size: 13px; margin-top: 28px; text-align: center; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 12px; margin-bottom: 0; font-size: 14px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 34px; }
.final-cta p { max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.site-footer p { margin: 0; font-size: 13px; }

/* Auth pages (login / register) */
.auth-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
}
.auth-card h1 { font-size: 24px; text-align: center; }
.auth-card > p.section-lead { text-align: center; margin: 0 0 28px; font-size: 14px; }
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.form-group input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-message {
  font-size: 13px;
  margin: -6px 0 16px;
  display: none;
}
.form-message.is-error { color: #f87171; display: block; }
.form-message.is-success { color: var(--success); display: block; }
.auth-switch { font-size: 14px; text-align: center; margin-top: 22px; color: var(--text-muted); }
.auth-switch a { color: var(--accent-2); font-weight: 600; }
.btn-block { width: 100%; }

/* Toggle buttons (evet/hayir) */
.toggle-group { display: flex; gap: 8px; }
.toggle-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.toggle-btn.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-2); font-weight: 600; }
.conditional-fields {
  margin: -6px 0 18px;
  padding: 14px;
  border: 1px dashed var(--border);
  border-radius: 10px;
}

/* Plan selection buttons */
.plan-group { display: flex; flex-direction: column; gap: 10px; }
.plan-btn {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--bg-elevated);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s;
}
.plan-btn strong { display: block; font-size: 14px; }
.plan-btn span { font-size: 12px; color: var(--text-muted); }
.plan-btn.active { border-color: var(--accent); background: var(--accent-soft); }

/* KVKK / consent checkbox */
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.checkbox-group input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.checkbox-group label { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* Dashboard / Admin */
.dash-page { padding: 48px 0 88px; }
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.dash-header h1 { font-size: 26px; margin: 0; }
.dash-header p { margin: 4px 0 0; font-size: 14px; }
.dash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.dash-empty { text-align: center; padding: 40px 16px; color: var(--text-muted); font-size: 14px; }
.calls-table { width: 100%; border-collapse: collapse; }
.calls-table th, .calls-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  color: var(--text);
}
.calls-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.calls-table tr:last-child td { border-bottom: none; }
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent-2);
}
.nav-auth-link { font-size: 14px; color: var(--text-muted); margin-right: 8px; }

/* Müşteri paneli (dashboard.html) - sol menülü uygulama kabuğu */
.panel-shell { display: flex; min-height: 100vh; align-items: stretch; }
.panel-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 24px 14px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.panel-sidebar .logo { display: flex; align-items: center; margin: 0 10px 28px; }
.panel-sidebar .logo img { height: 30px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.panel-sidebar #panel-nav { flex-shrink: 0; }

/* Kenar çubuğu alt bölümü: kullanıcı adı/e-postası + çıkış düğmesi */
.sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.sidebar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.sidebar-user-info { display: flex; flex-direction: column; min-width: 0; }
.sidebar-user-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-email { font-size: 11.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-logout-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, border-color .15s;
}
.sidebar-logout-btn:hover { color: #f87171; border-color: #f8717155; }
.panel-nav-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 22px 10px 8px;
}
.panel-nav-group-label:first-child { margin-top: 0; }
.panel-nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 2px;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.panel-nav-link:hover { background: var(--card); color: var(--text); }
.panel-nav-link.active { background: var(--accent-soft); color: var(--accent-2); font-weight: 600; }
.panel-main { flex: 1; min-width: 0; }
.panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px;
  height: 72px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10;
  flex-wrap: wrap;
}
.panel-topbar-title { font-size: 18px; font-weight: 700; }
.panel-topbar-right { display: flex; align-items: center; gap: 14px; }
.usage-badge {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
}
.panel-content { padding: 32px; max-width: 1120px; }
.panel-section { display: none; }
.panel-section.active { display: block; }
.panel-section h2 { font-size: 22px; margin-bottom: 6px; }
.panel-section-lead { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.stat-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-group { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-group h4 { font-size: 13px; color: var(--text-muted); margin: 0 0 14px; font-weight: 600; }
.stat-group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.stat-mini-value { display: block; font-size: 19px; font-weight: 700; color: var(--accent-2); }
.stat-mini-label { font-size: 10.5px; color: var(--text-muted); }
.panel-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-list { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.info-list li { position: relative; padding: 14px 0 14px 36px; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-list li:last-child { border-bottom: none; }
.info-list li strong { display: block; margin-bottom: 2px; }
.info-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-list li.done::before { content: "✓"; background: var(--success); color: #06202a; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; }
.pkg-card strong { display: block; font-size: 22px; margin-bottom: 4px; }
.pkg-card span { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 14px; }
.integration-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.integration-row:last-child { border-bottom: none; }
.integration-name { font-weight: 600; font-size: 14px; }
.integration-desc { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }
.tag-soon {
  font-size: 11px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.field-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.field-row:last-child { border-bottom: none; }
.field-row-label { color: var(--text-muted); }
.field-row-value { font-weight: 600; text-align: right; }
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  z-index: 100;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .panel-shell { flex-direction: column; }
  .panel-sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-groups, .panel-grid-2, .pkg-grid { grid-template-columns: 1fr; }
}

/* Panel v2 eklentileri: emoji ikonlu menü, sekmeli asistan formu, planlar,
   dakika kartı, modal, şirket bilgileri vb. */
.panel-nav-icon { margin-right: 8px; }
.panel-topbar-title .biz-name { color: var(--text-muted); font-weight: 500; }
.panel-topbar-title .crumb-sep { color: var(--text-muted); margin: 0 6px; font-weight: 400; }

.stat-group-missed {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
}

/* Banner (Abonelik sekmesi üstü) */
.banner {
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.banner-trial { background: linear-gradient(120deg, #7c2d12, #6c6cff33); }
.banner-active { background: linear-gradient(120deg, #064e3b, #6c6cff22); }
.banner-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  background: rgba(255,255,255,.14);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.banner h3 { margin: 0 0 8px; font-size: 19px; }
.banner p { margin: 0; font-size: 14px; color: rgba(242,243,248,.85); }

/* Plan seçim kartları (Abonelik) */
.plan-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-select-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.plan-select-card.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--bg-elevated) 45%); }
.plan-select-card.current { border-color: var(--success); }
.plan-select-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-select-badge.alt { background: var(--success); color: #06202a; }
.plan-select-card h4 { font-size: 18px; margin: 6px 0 2px; }
.plan-select-sub { font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px; }
.plan-select-price { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.plan-select-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-select-includes { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.plan-select-features { list-style: none; margin: 0 0 18px; padding: 0; flex-grow: 1; }
.plan-select-features li { font-size: 13px; padding: 7px 0; border-top: 1px solid var(--border); color: var(--text-muted); }
.plan-select-features li:first-child { border-top: none; }

/* Dakika satın al - kalan dakika kartı */
.minutes-card { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.minutes-icon { font-size: 30px; }
.minutes-value { font-size: 34px; font-weight: 700; }
.minutes-value span { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-left: 6px; }
.minutes-warning { margin-top: 6px; font-size: 13px; color: #fbbf24; }
.lock-box {
  margin-top: 18px;
  background: #78350f22;
  border: 1px solid #92400e55;
  border-radius: 12px;
  padding: 16px 18px;
}
.lock-box strong { display: block; margin-bottom: 4px; font-size: 14px; }
.lock-box p { margin: 0 0 12px; font-size: 13px; }

/* Modal (Telefon Numaraları - Numara Talep Et) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 14, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-box h3 { margin-bottom: 6px; }
.modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.modal-field { margin-bottom: 14px; }
.modal-field label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.modal-field input, .modal-field textarea, .modal-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}

/* Asistanlar - sekmeli form */
.assistant-meta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.assistant-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-elevated);
}
.assistant-pill.status-taslak { color: #fbbf24; border-color: #92400e77; }
.assistant-pill.status-aktif { color: var(--success); border-color: #065f4677; }
.tabs-nav { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab-btn {
  padding: 10px 16px;
  font-size: 13.5px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent-2); border-bottom-color: var(--accent-2); font-weight: 600; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.form-row textarea { resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.final-prompt-box {
  width: 100%;
  min-height: 110px;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre-wrap;
  resize: vertical;
}
.transfer-target-row { display: flex; gap: 8px; margin-bottom: 8px; }
.transfer-target-row input { flex: 1; }
.remove-target-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  width: 38px;
  cursor: pointer;
  font-size: 15px;
}
.radio-row, .checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.radio-row input, .checkbox-row input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.radio-row label, .checkbox-row label { cursor: pointer; }
.radio-row-note, .checkbox-row-note { font-size: 12px; color: var(--text-muted); margin: -6px 0 12px 26px; }

/* Şirket bilgileri (Hakkında) */
.company-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-bottom: 4px; }
.company-info-item .label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px; }
.company-info-item .value { font-size: 14px; font-weight: 600; }
.contact-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.contact-card .icon { font-size: 20px; margin-bottom: 6px; }
.contact-card .label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px; }
.contact-card .value { font-size: 13.5px; font-weight: 600; word-break: break-word; }
.tag-active {
  font-size: 11px;
  background: #065f4633;
  color: var(--success);
  border: 1px solid #065f4677;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.search-input {
  width: 100%;
  max-width: 320px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .plan-select-grid, .company-info-grid, .contact-cards-row, .form-row-2 { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .features-grid, .how-grid, .sectors-grid, .testimonials-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { font-size: 34px; }
  .main-nav { display: none; }
}
