/* ===== PSİKOMATRİS — AÇIK MODERN TEMA ===== */

:root {
  --primary: #6c63ff;
  --primary-dark: #574fd6;
  --secondary: #00c9a7;
  --accent: #ff6584;
  --bg: #f4f6fb;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-header: rgba(255,255,255,0.82);
  --bg-footer: #1e1e2f;
  --text: #1e1e2f;
  --text-secondary: #6b7280;
  --border: rgba(0,0,0,0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 8px 30px rgba(108,99,255,0.10);
  --shadow-lg: 0 16px 48px rgba(108,99,255,0.14);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

main { flex: 1; }

/* ============================
   HEADER / NAVBAR
   ============================ */
.pm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pm-navbar {
  background: var(--bg-header) !important;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border) !important;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.pm-navbar .navbar-brand {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}

.pm-navbar .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem !important;
  border-radius: 10px;
  transition: all var(--transition);
}

.pm-navbar .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(108,99,255,0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary)) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(108,99,255,0.25);
}

.pm-navbar .navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}

/* ============================
   FOOTER
   ============================ */
.pm-footer {
  background: var(--bg-footer);
  margin-top: auto;
}

/* --- Üst Alan (4 Sütun) --- */
.footer-main {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-block {
  max-width: 280px;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-brand:hover {
  color: #fff;
  text-decoration: none;
}

.footer-brand .brand-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Sütun Başlıkları --- */
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1rem;
}

.footer-col-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  padding: 0.8rem 0;
  cursor: pointer;
  transition: color var(--transition);
}

.footer-col-toggle:hover {
  color: var(--secondary);
}

.footer-col-toggle svg {
  transition: transform var(--transition);
}

.footer-col-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* --- Footer Nav Listesi --- */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.45rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

/* --- Alt Bant (Bottom Bar) --- */
.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0,0,0,0.15);
}

.footer-bottom-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.footer-app-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-app-buttons {
    justify-content: flex-start;
  }
}

.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.footer-app-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-copy {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0;
  max-width: 460px;
  display: inline-block;
}

/* --- Güven Rozetleri --- */
.footer-trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-trust-badges {
    justify-content: flex-end;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}

/* --- Footer Responsive --- */
@media (max-width: 991px) {
  .footer-main {
    padding: 2rem 0 1.5rem;
  }

  .footer-brand-block {
    max-width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .footer-desc {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col .collapse {
    padding: 0.5rem 0 0.8rem;
  }
}

/* ============================
   HERO
   ============================ */
.hero-section {
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0eeff 0%, var(--bg) 50%, #e6faf5 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-section h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   SECTION BAŞLIĞI
   ============================ */
.section-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.section-label p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================
   TEST KARTLARI
   ============================ */
.test-cards-section {
  padding: 20px 0 80px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.test-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.test-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,99,255,0.2);
  color: inherit;
  text-decoration: none;
}

.test-card:hover::before {
  transform: scaleX(1);
}

.test-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.icon-purple { background: rgba(108,99,255,0.1); }
.icon-teal   { background: rgba(0,201,167,0.1); }
.icon-pink   { background: rgba(255,101,132,0.1); }

.test-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.test-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 0.48rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-card:hover {
  background: var(--primary-dark);
  transform: scale(1.03);
  color: #fff !important;
  text-decoration: none;
}

/* ============================
   TEST START SAYFASI
   ============================ */
.test-start-wrapper {
  max-width: 520px;
  margin: 60px auto;
  padding: 0 1rem;
}

.test-start-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}

.test-start-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.test-start-card .subtitle {
  color: var(--text-secondary);
  font-size: 0.93rem;
  margin-bottom: 2rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.18);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.form-label {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.4rem;
}

.form-select, .form-control {
  background: var(--bg) !important;
  border: 1px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.93rem;
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-select:focus, .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12) !important;
  outline: none !important;
  background: #fff !important;
}

.btn-primary-modern {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,99,255,0.3);
}

.alert-danger {
  background: rgba(255,101,132,0.08);
  border: 1px solid rgba(255,101,132,0.2);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.9rem;
}

/* ============================
   FOCUS
   ============================ */
.btn:focus, .btn:active:focus, .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(108,99,255,0.2);
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================
   AUTH PAGES (Login / Register)
   ============================ */
.auth-section {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(160deg, #f0eeff 0%, var(--bg) 50%, #e6faf5 100%);
}

.auth-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2.2rem;
  max-width: 480px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.auth-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.auth-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-form .form-group {
  margin-bottom: 1.1rem;
}

.auth-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.auth-form label i {
  color: var(--primary);
  margin-right: 4px;
  font-size: 0.78rem;
}

.auth-form .required {
  color: var(--accent);
}

.auth-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  transition: all var(--transition);
  outline: none;
}

.auth-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
  background: #fff;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.auth-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}

.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.auth-alert i {
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.auth-alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.auth-alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}

.auth-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 540px) {
  .auth-card { padding: 1.8rem 1.2rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Auth nav buttons */
.nav-auth-btn {
  padding: 0.4rem 1rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
  text-decoration: none;
}

.nav-login-btn {
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}

.nav-login-btn:hover {
  background: rgba(108, 99, 255, 0.06) !important;
}

.nav-register-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important;
  border: none;
}

.nav-register-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.25);
}

.nav-user-dropdown {
  position: relative;
}

.nav-user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.9rem;
  background: rgba(108, 99, 255, 0.06);
  border: 1.5px solid rgba(108, 99, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.nav-user-toggle:hover {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ============================
   LANDING – HERO
   ============================ */
.hero-landing {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #f0eeff 0%, var(--bg) 50%, #e6faf5 100%);
  overflow: hidden;
}

.hero-text-col {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.18);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

.hero-landing h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-landing h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,99,255,0.3);
  color: #fff;
  text-decoration: none;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(108,99,255,0.25);
  border-radius: 12px;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(108,99,255,0.06);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ============================
   İZOMETRİK KÜP KOMPOZİSYONU
   ============================ */
.hero-cubes-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iso-scene {
  position: relative;
  width: 420px;
  height: 400px;
}

.iso-cube {
  position: absolute;
  width: 120px;
  height: 120px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.iso-cube:hover {
  transform: translateY(-8px) scale(1.05);
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.cube-front {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text);
  z-index: 2;
  border-radius: 16px;
}

.cube-front svg {
  color: var(--primary);
}

.cube-front span {
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--text);
}

.cube-top {
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,201,167,0.08));
  transform: translateY(-8px) translateX(8px);
  border-radius: 16px;
  z-index: 1;
}

.cube-right {
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(0,201,167,0.04));
  transform: translateY(4px) translateX(4px);
  border-radius: 16px;
  z-index: 0;
}

/* Küp Pozisyonları */
.cube-center {
  left: 150px;
  top: 110px;
  width: 130px;
  height: 130px;
  z-index: 10;
}

.cube-highlight .cube-front {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 40px rgba(108,99,255,0.35);
}

.cube-highlight .cube-front svg {
  color: #fff;
}

.cube-highlight .cube-front span {
  color: #fff;
}

.cube-highlight .cube-top {
  background: rgba(108,99,255,0.3);
}

.cube-lt { left: 50px; top: 30px; z-index: 5; }
.cube-rt { left: 270px; top: 20px; z-index: 5; }
.cube-lb { left: 20px; top: 200px; z-index: 5; }
.cube-rb { left: 280px; top: 250px; z-index: 5; }
.cube-bm { left: 140px; top: 280px; z-index: 5; }

/* PDF Küpü Vurgusu */
.cube-pdf .cube-front {
  border-color: rgba(108,99,255,0.3);
  background: linear-gradient(160deg, #fff 60%, rgba(108,99,255,0.06) 100%);
}

.cube-pdf .cube-front svg {
  color: var(--accent);
}

/* ============================
   ÖZELLİK KARTLARI
   ============================ */
.features-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,99,255,0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card-highlight {
  background: linear-gradient(160deg, rgba(108,99,255,0.04) 0%, rgba(0,201,167,0.04) 100%);
  border-color: rgba(108,99,255,0.2);
}

.feature-card-highlight::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.fi-purple { background: rgba(108,99,255,0.1); color: var(--primary); }
.fi-teal   { background: rgba(0,201,167,0.1); color: var(--secondary); }
.fi-pink   { background: rgba(255,101,132,0.1); color: var(--accent); }
.fi-blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.fi-orange { background: rgba(249,115,22,0.1); color: #f97316; }
.fi-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================
   PDF RAPORLAMA DETAY
   ============================ */
.pdf-detail-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--bg) 0%, #f0eeff 50%, #e6faf5 100%);
}

.detail-badge {
  display: inline-block;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.18);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.detail-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.detail-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.di-purple { background: rgba(108,99,255,0.1); color: var(--primary); }
.di-teal   { background: rgba(0,201,167,0.1); color: var(--secondary); }
.di-pink   { background: rgba(255,101,132,0.1); color: var(--accent); }

.detail-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.detail-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* PDF Mockup */
.pdf-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.pdf-mockup {
  width: 320px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pdf-mockup-header {
  background: var(--bg-footer);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdf-mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.pdf-title-bar {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  margin-left: 8px;
}

.pdf-mockup-body {
  padding: 20px;
}

.pdf-line {
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  margin-bottom: 8px;
}

.pdf-line.w-40 { width: 40%; }
.pdf-line.w-50 { width: 50%; }
.pdf-line.w-60 { width: 60%; }
.pdf-line.w-70 { width: 70%; }
.pdf-line.w-80 { width: 80%; }
.pdf-line.w-90 { width: 90%; }

.pdf-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.pdf-chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: rgba(108,99,255,0.04);
  border-radius: 12px;
  margin-bottom: 14px;
}

.pdf-badge-float {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(108,99,255,0.3);
}

/* ============================
   MOBİL & MASAÜSTÜ SYNC
   ============================ */
.sync-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.sync-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.sync-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sync-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.sb-dark {
  background: var(--bg-footer);
  color: #fff;
}

.sb-dark:hover {
  background: #2d2d44;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30,30,47,0.3);
}

.sb-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.sb-gradient:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(108,99,255,0.35);
}

/* Tablet Mockup */
.tablet-mockup {
  display: flex;
  justify-content: center;
}

.tablet-bezel {
  background: #2d2d44;
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  width: 100%;
}

.tablet-screen {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
}

.tablet-pdf-preview {
  padding: 18px;
}

.tpp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.tpp-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.tpp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tpp-score {
  display: flex;
  flex-direction: column;
}

.tpp-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.tpp-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tpp-badge-warn {
  background: rgba(249,115,22,0.1);
  color: #f97316;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tpp-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.tpp-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  opacity: 0.7;
}

.tpp-text-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tpp-line {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
}

.tpp-line.w-70 { width: 70%; }
.tpp-line.w-80 { width: 80%; }
.tpp-line.w-90 { width: 90%; }

/* ============================
   CTA BÖLÜMÜ
   ============================ */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-section .btn-hero-primary {
  background: #fff;
  color: var(--primary);
}

.cta-section .btn-hero-primary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  color: var(--primary);
}

/* ============================
   RESPONSIVE – LANDING
   ============================ */
@media (max-width: 991px) {
  .hero-landing {
    padding: 50px 0 40px;
  }
  .hero-text-col {
    text-align: center;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .iso-scene {
    width: 340px;
    height: 340px;
    margin: 0 auto;
  }
  .iso-cube { width: 100px; height: 100px; }
  .cube-center { left: 110px; top: 90px; width: 110px; height: 110px; }
  .cube-lt { left: 30px; top: 20px; }
  .cube-rt { left: 220px; top: 10px; }
  .cube-lb { left: 10px; top: 170px; }
  .cube-rb { left: 230px; top: 210px; }
  .cube-bm { left: 110px; top: 240px; }
}

@media (max-width: 575px) {
  .iso-scene {
    width: 280px;
    height: 300px;
  }
  .iso-cube { width: 82px; height: 82px; }
  .cube-center { left: 80px; top: 80px; width: 95px; height: 95px; }
  .cube-lt { left: 10px; top: 10px; }
  .cube-rt { left: 185px; top: 5px; }
  .cube-lb { left: 0; top: 150px; }
  .cube-rb { left: 195px; top: 180px; }
  .cube-bm { left: 90px; top: 210px; }
  .cube-front span { font-size: 0.55rem; }
  .cube-front svg { width: 20px; height: 20px; }
  .cube-highlight .cube-front svg { width: 24px; height: 24px; }
  .pdf-mockup { width: 100%; }
  .sync-buttons { flex-direction: column; }
  .sync-btn { justify-content: center; }
}

/* ============================
   MEGA MENU
   ============================ */
.pm-mega-parent {
  position: static;
}

.pm-mega-trigger {
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  transition: transform var(--transition);
}

.pm-mega-parent:hover .nav-chevron,
.pm-mega-parent.show .nav-chevron {
  transform: rotate(180deg);
}

.pm-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.pm-mega-parent:hover .pm-mega-menu,
.pm-mega-parent.show .pm-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pm-mega-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 250px;
  gap: 2rem;
}

.pm-mega-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  padding-left: 4px;
}

.pm-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  margin-bottom: 2px;
}

.pm-mega-item:hover {
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
}

.pm-mega-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-purple { background: rgba(108,99,255,0.1); color: var(--primary); }
.mi-teal   { background: rgba(0,201,167,0.1); color: var(--secondary); }
.mi-pink   { background: rgba(255,101,132,0.1); color: var(--accent); }
.mi-blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.mi-orange { background: rgba(249,115,22,0.1); color: #f97316; }

.pm-mega-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.pm-mega-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pm-mega-promo {
  display: flex;
  align-items: stretch;
}

.pm-mega-promo-card {
  background: linear-gradient(160deg, rgba(108,99,255,0.06) 0%, rgba(0,201,167,0.06) 100%);
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.pm-mega-promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 6px;
  margin-bottom: 0.6rem;
  width: fit-content;
}

.pm-mega-promo-card strong {
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
}

.pm-mega-promo-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.pm-mega-promo-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.pm-mega-promo-link:hover {
  text-decoration: underline;
}

/* Admin CTA in nav */
.nav-cta-admin {
  background: rgba(108,99,255,0.08) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
}

.nav-cta-admin:hover {
  background: rgba(108,99,255,0.14) !important;
}

/* User dropdown enhanced */
.pm-user-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 200px;
}

.pm-user-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}

.pm-user-dropdown .dropdown-item:hover {
  background: var(--bg);
}

.pm-user-dropdown .dropdown-divider {
  margin: 4px 0;
  border-color: var(--border);
}

/* ============================
   CORPORATE PAGES (Features, Security, etc.)
   ============================ */
.corp-hero {
  padding: 80px 0 50px;
  background: linear-gradient(160deg, #f0eeff 0%, var(--bg) 50%, #e6faf5 100%);
  position: relative;
  overflow: hidden;
}

.corp-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.corp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.corp-hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.corp-section {
  padding: 70px 0;
}

.corp-section-alt {
  background: var(--bg-white);
}

.corp-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.corp-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.corp-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.corp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(0,201,167,0.12);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 900;
}

/* Visual Cards for corp pages */
.corp-visual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  min-height: 280px;
}

.corp-visual-card span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.cv-purple { background: rgba(108,99,255,0.06); border: 1px solid rgba(108,99,255,0.15); color: var(--primary); }
.cv-teal   { background: rgba(0,201,167,0.06); border: 1px solid rgba(0,201,167,0.15); color: var(--secondary); }
.cv-pink   { background: rgba(255,101,132,0.06); border: 1px solid rgba(255,101,132,0.15); color: var(--accent); }
.cv-blue   { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15); color: #3b82f6; }
.cv-orange { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.15); color: #f97316; }

/* ============================
   HOW IT WORKS – TIMELINE
   ============================ */
.hiw-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}

.hiw-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
}

.hiw-step {
  position: relative;
  margin-bottom: 3rem;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step-num {
  position: absolute;
  left: -48px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}

.hiw-step-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.hiw-step-content:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.hiw-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hi-purple  { background: rgba(108,99,255,0.1); color: var(--primary); }
.hi-teal    { background: rgba(0,201,167,0.1); color: var(--secondary); }
.hi-pink    { background: rgba(255,101,132,0.1); color: var(--accent); }
.hi-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.hiw-step-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hiw-step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================
   FAQ ACCORDION
   ============================ */
.faq-accordion {
  border: none;
}

.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-white);
}

.faq-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text) !important;
  background: var(--bg-white) !important;
  box-shadow: none !important;
  padding: 1rem 1.2rem;
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  background: rgba(108,99,255,0.03) !important;
}

.faq-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c63ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 1.2rem 1rem;
}

/* Support form card */
.support-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ============================
   RESPONSIVE – MEGA MENU
   ============================ */
@media (max-width: 991px) {
  .pm-mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
  }

  .pm-mega-parent:hover .pm-mega-menu,
  .pm-mega-parent.show .pm-mega-menu {
    display: block;
  }

  .pm-mega-inner {
    grid-template-columns: 1fr;
    padding: 1rem 0.5rem;
    gap: 1rem;
  }

  .pm-mega-promo {
    display: none;
  }

  .hiw-timeline {
    padding-left: 40px;
  }

  .hiw-timeline::before {
    left: 18px;
  }

  .hiw-step-num {
    left: -40px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ============================
   REGISTER/LOGIN – İKİ SÜTUNLU YAPI
   ============================ */
.auth-section-wide {
  padding: 2.5rem 1rem;
}

.reg-row {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reg-card-left {
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  min-height: 100%;
}

/* Sağ Panel – Glassmorphism */
.reg-side-panel {
  border-left: 1px solid var(--border);
  padding: 2.2rem 1.8rem;
  height: 100%;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

.reg-side-glass {
  background: linear-gradient(170deg,
    rgba(246,245,255,0.85) 0%,
    rgba(238,249,246,0.80) 50%,
    rgba(240,238,255,0.85) 100%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.reg-side-section {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.reg-side-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(108,99,255,0.12);
}

.reg-side-title svg {
  color: var(--primary);
}

/* ============================
   DASHBOARD MOCKUP
   ============================ */
.dash-mockup {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(108,99,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(108,99,255,0.08);
}

/* Topbar */
.dm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-footer);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dm-topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dm-logo-mini {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-topbar-brand {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.dm-avatar-mini {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
}

/* Widget Kartları */
.dm-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.dm-widget {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: all var(--transition);
}

.dm-widget:hover {
  border-color: rgba(108,99,255,0.15);
  box-shadow: 0 4px 12px rgba(108,99,255,0.08);
}

.dm-widget-active {
  border-color: rgba(59,130,246,0.2);
  background: rgba(59,130,246,0.04);
}

.dm-widget-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-blue   { background: rgba(59,130,246,0.12); color: #3b82f6; }
.dw-green  { background: rgba(34,197,94,0.12); color: #22c55e; }
.dw-purple { background: rgba(108,99,255,0.12); color: var(--primary); }

.dm-widget-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.dm-widget-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Pulse indicator */
.dm-widget-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 0 rgba(59,130,246,0.5);
  animation: dm-pulse 2s infinite;
}

@keyframes dm-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

/* Mini Tablo */
.dm-table-area {
  padding: 0 12px 10px;
}

.dm-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
}

.dm-table-link {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--primary);
}

.dm-table-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 6px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 3px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.03);
  font-size: 0.62rem;
}

.dm-table-row:hover {
  background: rgba(108,99,255,0.03);
}

.dm-alias {
  font-weight: 700;
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
}

.dm-test-name {
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.dm-status-done {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.dm-status-progress {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.dm-status-report {
  background: rgba(108,99,255,0.1);
  color: var(--primary);
}

/* AI Chat Balonu */
.dm-ai-bubble {
  display: flex;
  gap: 10px;
  margin: 10px 12px 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(0,201,167,0.06));
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: 10px;
  position: relative;
}

.dm-ai-bubble::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.06), rgba(0,201,167,0.06));
  border-left: 1px solid rgba(108,99,255,0.15);
  border-top: 1px solid rgba(108,99,255,0.15);
  transform: rotate(45deg);
}

.dm-ai-avatar {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-ai-content {
  flex: 1;
}

.dm-ai-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.dm-ai-content p {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}

/* ============================
   ÖZELLIK MADDELERİ (Paylaşılan)
   ============================ */
.reg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.reg-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rfi-purple { background: rgba(108,99,255,0.1); color: var(--primary); }
.rfi-teal   { background: rgba(0,201,167,0.1); color: var(--secondary); }
.rfi-pink   { background: rgba(255,101,132,0.1); color: var(--accent); }

.reg-feature-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

.reg-feature-item p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* ============================
   GÜVEN ŞERİDİ (Trust Strip)
   ============================ */
.reg-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
}

.reg-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.reg-trust-item svg {
  color: var(--primary);
}

.reg-trust-sep {
  color: var(--border);
  font-size: 0.8rem;
}

/* ============================
   RESPONSIVE – AUTH 2-COL
   ============================ */
@media (max-width: 991px) {
  .auth-section-wide {
    padding: 1.5rem 0.5rem;
  }

  .reg-row {
    box-shadow: var(--shadow);
  }

  .reg-card-left {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .reg-side-panel {
    display: none;
  }
}

/* ============================
   GİZLİLİK POLİTİKASI SAYFASI
   ============================ */

/* Meta Bilgi Şeridi */
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.privacy-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.privacy-meta-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.privacy-meta-item strong {
  color: var(--text);
}

/* İçindekiler (TOC) */
.privacy-toc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 8px;
}

.privacy-toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
}

.privacy-toc-title svg {
  color: var(--primary);
}

.privacy-toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.privacy-toc-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 4px 0;
  transition: all var(--transition);
}

.privacy-toc-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* İçerik Blokları */
.privacy-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.privacy-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(108,99,255,0.03), rgba(0,201,167,0.02));
  border-bottom: 1px solid var(--border);
}

.privacy-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.privacy-block-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.privacy-block-body {
  padding: 24px;
}

.privacy-block-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.privacy-block-body p:last-child {
  margin-bottom: 0;
}

/* Info Kart (Veri Sorumlusu) */
.privacy-info-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px 0;
  margin-top: 16px;
}

.privacy-info-row {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
}

.privacy-info-row:last-child {
  border-bottom: none;
}

.privacy-info-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 140px;
}

.privacy-info-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* Tablo */
.privacy-table-wrap {
  overflow-x: auto;
  margin: 12px 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.privacy-table thead {
  background: var(--bg);
}

.privacy-table th {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.privacy-table td {
  padding: 11px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.privacy-table tbody tr:last-child td {
  border-bottom: none;
}

.privacy-table tbody tr:hover {
  background: rgba(108,99,255,0.02);
}

.privacy-table code {
  background: rgba(108,99,255,0.06);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Callout */
.privacy-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.privacy-callout svg {
  margin-top: 1px;
  flex-shrink: 0;
}

.privacy-callout-info {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  color: #1d4ed8;
}

.privacy-callout-info svg {
  color: #3b82f6;
}

.privacy-callout-success {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
  color: #166534;
}

.privacy-callout-success svg {
  color: #22c55e;
}

/* Amaçlar Grid */
.privacy-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.privacy-purpose-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: all var(--transition);
}

.privacy-purpose-card:hover {
  border-color: rgba(108,99,255,0.2);
  box-shadow: var(--shadow-sm);
}

.privacy-purpose-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ppi-purple { background: rgba(108,99,255,0.1); color: var(--primary); }
.ppi-teal   { background: rgba(0,201,167,0.1); color: var(--secondary); }
.ppi-pink   { background: rgba(255,101,132,0.1); color: var(--accent); }
.ppi-blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }

.privacy-purpose-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.privacy-purpose-card p {
  font-size: 0.8rem !important;
  color: var(--text-secondary);
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Güvenlik Grid */
.privacy-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.privacy-security-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all var(--transition);
}

.privacy-security-item:hover {
  border-color: rgba(108,99,255,0.2);
  box-shadow: var(--shadow-sm);
}

.privacy-security-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(0,201,167,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.privacy-security-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.privacy-security-item p {
  font-size: 0.8rem !important;
  color: var(--text-secondary);
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Haklar Grid */
.privacy-rights-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.privacy-right-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: all var(--transition);
}

.privacy-right-item:hover {
  border-color: rgba(108,99,255,0.15);
  background: rgba(108,99,255,0.02);
}

.privacy-right-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* İletişim Kartları */
.privacy-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.privacy-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.privacy-contact-card:hover {
  border-color: rgba(108,99,255,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}

.privacy-contact-card svg {
  color: var(--primary);
}

.privacy-contact-card strong {
  font-size: 0.88rem;
  color: var(--text);
}

.privacy-contact-card span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Güven Bandı */
.privacy-trust-band {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.privacy-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.privacy-trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.privacy-trust-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Privacy Responsive */
@media (max-width: 767px) {
  .privacy-toc-grid {
    grid-template-columns: 1fr;
  }

  .privacy-purpose-grid,
  .privacy-security-grid {
    grid-template-columns: 1fr;
  }

  .privacy-contact-cards {
    grid-template-columns: 1fr;
  }

  .privacy-trust-band {
    gap: 18px;
    padding: 20px;
  }

  .privacy-meta {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════
   PWA MOBILE DOWNLOAD HINT
   ═══════════════════════════════════════ */
.pm-mobile-dl-hint {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    animation: pmSlideDown 0.4s ease;
}

.pm-dl-hint-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-dl-hint-icon {
    font-size: 1.4rem;
}

.pm-dl-hint-text {
    flex: 1;
    color: #fff;
}

.pm-dl-hint-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
}

.pm-dl-hint-text small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.pm-dl-hint-btn {
    padding: 7px 18px;
    background: #fff;
    color: #6c63ff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.pm-dl-hint-btn:hover {
    opacity: 0.9;
}

.pm-dl-hint-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 2px 6px;
    opacity: 0.7;
}

.pm-dl-hint-close:hover {
    opacity: 1;
}

@keyframes pmSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pmFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════
   PWA STANDALONE — Hide install UI
   ═══════════════════════════════════════ */
@media all and (display-mode: standalone) {
    #pwaInstallBanner,
    .pm-mobile-dl-hint,
    .pm-pwa-install-ui,
    [data-store],
    #pwaSyncInstallBtn {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════
   MOBİL VİTRİN — Giriş Öncesi Mobil Ana Sayfa
   ═══════════════════════════════════════════════════ */

/* ── Sticky Bottom CTA Bar ── */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }

  .mobile-sticky-cta .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
  }

  .mobile-sticky-cta .sticky-btn-primary {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 12px rgba(108,99,255,0.3);
  }

  .mobile-sticky-cta .sticky-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  /* Hero mobile optimizations */
  .hero-landing {
    padding: 60px 0 30px !important;
  }

  .hero-landing .hero-text-col {
    text-align: center;
  }

  .hero-landing .hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-landing .hero-cta-group {
    display: none;  /* Hidden on mobile — replaced by sticky bar */
  }

  .hero-cubes-col {
    display: none;  /* Hide complex 3D cubes on mobile — cleaner */
  }

  /* Features section: horizontal scroll carousel on mobile */
  .features-section .row.g-4 {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 16px 16px;
    margin: 0;
  }

  .features-section .row.g-4 > [class*="col-"] {
    flex: 0 0 280px;
    max-width: 280px;
    scroll-snap-align: start;
    padding: 0;
  }

  .features-section .row.g-4::-webkit-scrollbar {
    display: none;
  }

  /* PDF detail + Sync section: simplify */
  .pdf-detail-section,
  .sync-section {
    padding: 40px 0 !important;
  }

  .pdf-detail-section .col-lg-6.order-lg-2 {
    display: none;  /* Hide mockup on mobile */
  }

  .sync-section .tablet-mockup {
    display: none;  /* Hide tablet mockup on mobile */
  }

  .sync-buttons {
    flex-direction: column;
  }

  .sync-buttons .sync-btn {
    width: 100%;
    justify-content: center;
  }

  /* Give footer extra bottom padding for sticky CTA */
  .pm-footer {
    padding-bottom: 80px !important;
  }

  /* CTA section at bottom — hide on mobile (replaced by sticky bar) */
  .cta-section {
    display: none;
  }
}

/* ── "Nasıl Çalışır?" Carousel Cards ── */
.how-it-works-mobile {
  display: none;
}

@media (max-width: 767px) {
  .how-it-works-mobile {
    display: block;
    padding: 0 0 20px;
  }

  .hiw-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 12px;
  }

  .hiw-scroll::-webkit-scrollbar {
    display: none;
  }

  .hiw-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    text-align: center;
  }

  .hiw-card-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }

  .hiw-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }

  .hiw-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
  }
}