:root {
  --bg: #f4f7f1;
  --surface: #ffffff;
  --surface-soft: #eef5ee;
  --line: #dbe7db;
  --line-strong: #c7d8c8;
  --text: #20372d;
  --text-muted: #657a6d;
  --primary: #2f7b5a;
  --primary-dark: #1f4f3b;
  --primary-soft: #dcefe2;
  --accent: #b69554;
  --shadow: 0 24px 60px rgba(26, 53, 40, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(47, 123, 90, 0.08), transparent 28%),
    var(--bg);
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100vw - 2rem));
  margin: 0 auto;
}

.landing-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 241, 0.88);
  border-bottom: 1px solid rgba(219, 231, 219, 0.78);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-mark {
  width: 144px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-right: 0.6rem;
}

.brand-copy {
  display: grid;
  gap: 0;
  align-items: center;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.2;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--text-muted);
  margin-left: auto;
}

.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: var(--line);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  border-top: 1px solid rgba(219, 231, 219, 0.92);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.4rem;
}

.footer-grid>div {
  flex: 1;
}

.footer-grid>div:nth-child(2) {
  text-align: center;
}

.footer-grid>div:last-child {
  text-align: right;
}

.footer-grid strong,
.footer-brand {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.footer-grid a {
  display: block;
}

.footer-iyzico-logo {
  display: block;
  margin-top: 1rem;
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(219, 231, 219, 0.92);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 1.5rem));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(199, 216, 200, 0.94);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(26, 53, 40, 0.14);
  z-index: 70;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: inline-flex;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.simple-page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.simple-page-main {
  padding: 3.2rem 0 4rem;
}

.simple-page-card {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(199, 216, 200, 0.92);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.simple-page-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.simple-page-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-box {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(199, 216, 200, 0.92);
  background: linear-gradient(180deg, #ffffff, #f7fbf7);
}

.contact-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

/* Legal pages */
.legal-page-hero {
  margin-bottom: 2rem;
}

.legal-page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.legal-section {
  margin-bottom: 2.4rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--text);
}

.legal-section h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.6rem;
  color: var(--text);
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-section ul {
  margin: 0.5rem 0 0.8rem 1.2rem;
  padding: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-section ul li {
  margin-bottom: 0.25rem;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 12px;
  background: #f7fbf7;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-info-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.4rem;
  padding: 0.8rem;
  font-size: 0.88rem;
}

.legal-callout-list {
  padding: 1rem;
  border-radius: 12px;
  background: #f7fbf7;
  margin-bottom: 1rem;
}

.legal-callout-list p {
  margin-bottom: 0.5rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(199, 216, 200, 0.7);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f7fbf7;
  font-weight: 600;
  color: var(--text);
}

.legal-table td {
  color: var(--text-muted);
  line-height: 1.55;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 60;
}

.auth-modal.open {
  display: grid;
}

.auth-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  overflow-y: auto;
  border-radius: 26px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 26px 60px rgba(14, 29, 22, 0.28);
}

.auth-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 21, 0.68);
  backdrop-filter: blur(6px);
}

.auth-modal-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}

.auth-modal-head strong {
  display: block;
  font-size: 1.3rem;
}

.auth-modal-head span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-panel {
  padding: 1rem;
}

.auth-panel-head {
  margin-bottom: 1rem;
}

.auth-panel-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.auth-panel-head p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-form-minimal {
  gap: 0.9rem;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.auth-form-grid-single {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.auth-form-grid label,
.auth-form-grid-login label {
  display: grid;
  gap: 0.45rem;
}

.auth-form-minimal .auth-form-grid-single label {
  position: relative;
  gap: 0;
}

.auth-form-minimal .auth-form-grid-single .auth-field-labeled {
  gap: 0;
}

.auth-form-minimal .auth-form-grid-single .auth-field-labeled span {
  position: absolute;
  top: -0.58rem;
  left: 0.95rem;
  z-index: 1;
  padding: 0 0.45rem;
  background: #fff;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
}

.auth-form-minimal .auth-form-grid-single .auth-field-labeled input {
  min-height: 58px;
  padding-top: 1rem;
}

.auth-form-grid span,
.auth-form-grid-login span {
  font-weight: 700;
  font-size: 0.96rem;
}

.auth-form input,
.auth-form select {
  min-height: 54px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--text);
}

.auth-form-minimal .auth-form-grid-single input {
  min-height: 58px;
  padding-top: 1rem;
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  border-color: rgba(47, 123, 90, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 123, 90, 0.08);
}

.auth-field-password {
  position: relative;
}

.auth-field-password input {
  padding-right: 3rem;
}

.auth-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background 160ms ease, color 160ms ease;
}

.auth-password-toggle:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.auth-eye-open,
.auth-eye-closed {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.auth-actions .btn {
  min-width: 170px;
}

.auth-actions-single .btn {
  width: 100%;
}

.auth-switch-line {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
}

.auth-forgot-line {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
}

.auth-forgot-line .auth-text-link {
  margin-left: 0;
}

.auth-text-link {
  padding: 0;
  margin-left: 0.2rem;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(199, 216, 200, 0.92);
}

.auth-google-btn {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(199, 216, 200, 0.92);
  background: #fff;
  color: var(--text-strong);
  font-weight: 700;
}

.auth-google-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.auth-legal {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.auth-legal a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.auth-feedback {
  min-height: 0;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
}

.auth-feedback.success,
.auth-feedback.error {
  min-height: 1.4rem;
}

.auth-feedback.success {
  color: var(--primary);
}

.auth-feedback.error {
  color: #dc3545;
}

.auth-verify-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}

.auth-verify-icon {
  width: 64px;
  height: 64px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.auth-verify-icon svg {
  width: 100%;
  height: 100%;
}

.auth-verify-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.auth-verify-text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.auth-verify-resend {
  width: 100%;
  max-width: 340px;
}

.auth-verify-timer {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--surface);
  z-index: 50;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 280ms ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.mobile-menu-head strong {
  font-size: 1.05rem;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text);
  transition: background 160ms ease;
}

.mobile-menu-nav a:hover {
  background: var(--surface-soft);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-footer .btn {
  width: 100%;
}

/* === Merged from landing-home-v2.css === */

/* ================================================================
   Landing Home V2 — Yeni tema stilleri (home.html v2)
   home.html'de landing.css'ten SONRA yüklenir.
   ================================================================ */

/* --- Body override: font metrics --- */
.landing-v2 {
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
.landing-v2 h1,
.landing-v2 h2,
.landing-v2 h3 {
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
  margin: 0;
}

.landing-v2 p {
  color: var(--text-muted);
}

.landing-v2 a {
  color: inherit;
  text-decoration: none;
}

.landing-v2 img {
  max-width: 100%;
  display: block;
}

.landing-v2 .eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.landing-v2 .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.landing-v2 .section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 12px;
}

.landing-v2 .section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.landing-v2 .btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.landing-v2 .btn-light:hover {
  transform: translateY(-1px);
}

/* --- Hero --- */
.landing-v2 .hero {
  padding: 72px 0 88px;
}

.landing-v2 .hero-note {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 520px;
}

.landing-v2 .hero-note b {
  color: var(--text);
}

.landing-v2 .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.landing-v2 .hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 64px);
  margin-bottom: 20px;
}

.landing-v2 .hero h1 .hl {
  color: var(--primary);
}

.landing-v2 .hero-lead {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--text-muted);
}

.landing-v2 .hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.landing-v2 .hero-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex: none;
}

.landing-v2 .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 22px;
}

.landing-v2 .hero-cta-note {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.landing-v2 .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.landing-v2 .hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-v2 .hero-trust svg {
  flex: none;
}

/* --- Hero Mock Window (desktop) --- */
.landing-v2 .mock-window {
  display: grid;
  grid-template-columns: 170px 1fr;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: none;
  width: auto;
  min-height: auto;
}

.landing-v2 .mock-nav {
  background: var(--primary-dark);
  color: #fff;
  padding: 22px 18px;
}

.landing-v2 .mock-nav-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.landing-v2 .mock-nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

.landing-v2 .mock-nav-group strong {
  color: #fff;
  border-left: 3px solid var(--accent);
  padding-left: 9px;
}

.landing-v2 .mock-nav-group span {
  color: rgba(255, 255, 255, .72);
}

.landing-v2 .mock-main {
  padding: 20px;
  display: block;
  gap: normal;
}

.landing-v2 .mock-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.landing-v2 .mock-summary>div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.landing-v2 .mock-summary small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 0;
}

.landing-v2 .mock-summary strong {
  font-size: 20px;
}

.landing-v2 .mock-progress {
  display: flex;
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.landing-v2 .mock-progress .ok {
  background: var(--primary);
  width: 82%;
}

.landing-v2 .mock-progress .no {
  background: #c96f4a;
  width: 6%;
}

.landing-v2 .mock-progress .rest {
  background: var(--accent);
  width: 12%;
}

.landing-v2 .mock-tags {
  display: flex;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.landing-v2 .mock-tags span {
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--text-muted);
}

.landing-v2 .mock-tags b {
  color: var(--text);
}

.landing-v2 .mock-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 13.5px;
}

.landing-v2 .mock-table .row {
  display: flex;
  justify-content: space-between;
  padding: 9px 14px;
  border-top: 1px solid var(--line);
}

.landing-v2 .mock-table .row:first-child {
  border-top: 0;
  font-weight: 700;
  background: var(--surface-soft);
}

.landing-v2 .mock-table .row span:last-child {
  font-weight: 600;
}

/* --- Hero Mock Mobile --- */
.landing-v2 .mock-mobile {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.landing-v2 .mock-mobile-screen {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, #fdfefe 0%, #f6faf6 100%);
}

.landing-v2 .mock-mobile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.landing-v2 .mock-mobile-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}

.landing-v2 .mock-mobile-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
}

.landing-v2 .mock-mobile-program {
  font-size: 21px;
  line-height: 1.05;
  margin-top: 6px;
}

.landing-v2 .mock-mobile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  flex: none;
}

.landing-v2 .mock-mobile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.landing-v2 .mock-mobile-stats div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 12px 10px;
  background: #fff;
}

.landing-v2 .mock-mobile-stats small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.landing-v2 .mock-mobile-stats strong {
  font-size: 21px;
}

.landing-v2 .mock-mobile-progress {
  display: flex;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.landing-v2 .mock-mobile-progress .ok {
  background: var(--primary);
  width: 82%;
}

.landing-v2 .mock-mobile-progress .no {
  background: #c96f4a;
  width: 6%;
}

.landing-v2 .mock-mobile-progress .rest {
  background: var(--accent);
  width: 12%;
}

.landing-v2 .mock-mobile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.landing-v2 .mock-mobile-pills span {
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.landing-v2 .mock-mobile-pills b {
  color: var(--text);
}

.landing-v2 .mock-mobile-list {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.landing-v2 .mock-mobile-list .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
}

.landing-v2 .mock-mobile-list .row:first-child {
  border-top: 0;
  background: var(--surface-soft);
  font-weight: 700;
}

.landing-v2 .mock-mobile-list .row span:last-child {
  font-weight: 700;
}

/* --- Problem / Solution --- */
.landing-v2 .ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.landing-v2 .ps-col {
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}

.landing-v2 .ps-col.problem {
  background: var(--surface);
  border: 1px solid var(--line);
}

.landing-v2 .ps-col.solution {
  background: var(--primary-dark);
  color: #fff;
}

.landing-v2 .ps-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.landing-v2 .ps-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.landing-v2 .ps-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text-muted);
}

.landing-v2 .ps-col.solution li {
  color: rgba(255, 255, 255, .85);
}

.landing-v2 .ps-col li svg {
  flex: none;
  margin-top: 3px;
}

/* --- Product Tour --- */
.landing-v2 .tour-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 38px 0;
}

.landing-v2 .tour-block+.tour-block {
  border-top: 1px solid var(--line);
}

.landing-v2 .tour-block:nth-child(even) .tour-text {
  order: 2;
}

.landing-v2 .tour-block:nth-child(odd) .tour-text {
  text-align: right;
}

.landing-v2 .tour-text h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.landing-v2 .tour-text .eyebrow {
  margin-bottom: 10px;
}

.landing-v2 .tour-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.landing-v2 .chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.landing-v2 .chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.landing-v2 .chip.on {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

.landing-v2 .pill {
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
}

.landing-v2 .pill.g {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.landing-v2 .pill.a {
  background: #f6ecd9;
  color: #8a6d33;
}

.landing-v2 .pill.r {
  background: #f7e3da;
  color: #9c4a26;
}

.landing-v2 .topic-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.landing-v2 .topic-row input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  flex: none;
  margin: 0;
}

.landing-v2 .topic-row .cnt {
  margin-left: auto;
  font-weight: 700;
}

.landing-v2 .topic-row.sub {
  margin-left: 24px;
  color: var(--text-muted);
}

.landing-v2 .pool-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13.5px;
  margin-top: 4px;
}

.landing-v2 .pool-note b {
  font-size: 14px;
}

.landing-v2 .filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.landing-v2 .toggle {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: var(--line-strong);
  position: relative;
  flex: none;
  transition: background .15s;
}

.landing-v2 .toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .15s;
}

.landing-v2 .toggle.on {
  background: var(--primary);
}

.landing-v2 .toggle.on::after {
  left: 19px;
}

.landing-v2 .build-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.landing-v2 .build-cta small {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.landing-v2 .exam-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13px;
  margin-bottom: 8px;
}

.landing-v2 .exam-row .meta {
  color: var(--text-muted);
}

.landing-v2 .exam-row .act {
  margin-left: auto;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.landing-v2 .exam-row .mobile-label,
.landing-v2 .exam-mobile-extra,
.landing-v2 .exam-mobile-progress {
  display: none;
}

.landing-v2 .exam-mobile-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 7px;
}

.landing-v2 .exam-mobile-bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  overflow: hidden;
}

.landing-v2 .exam-mobile-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--primary);
}

.landing-v2 .exam-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dff0e9;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}

.landing-v2 .rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13.5px;
  margin-bottom: 8px;
}

.landing-v2 .rank-row .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex: none;
}

.landing-v2 .rank-row .solved {
  color: var(--text-muted);
  font-size: 12.5px;
}

.landing-v2 .rank-row .pill {
  margin-left: auto;
}

.landing-v2 .q-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
}

.landing-v2 .q-card .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}

.landing-v2 .q-card .tags span {
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.landing-v2 .q-card .tags .ok {
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.landing-v2 .q-card p {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

/* --- Programs --- */
.landing-v2 .programs {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-v2 .prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.landing-v2 .prog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.landing-v2 .prog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.landing-v2 .prog-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.landing-v2 .prog-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.landing-v2 .prog-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.landing-v2 .prog-card p {
  font-size: 14.5px;
  margin-bottom: 18px;
}

.landing-v2 .prog-card ul {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.landing-v2 .prog-card li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.landing-v2 .prog-card .btn {
  margin-top: auto;
  justify-content: center;
}

/* --- Trust Strip --- */
.landing-v2 .trust-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.landing-v2 .trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.landing-v2 .trust-stat {
  padding: 8px 18px;
  text-align: center;
}

.landing-v2 .trust-stat+.trust-stat {
  border-left: 1px solid var(--line);
}

.landing-v2 .trust-stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 8px;
  color: var(--text);
}

.landing-v2 .trust-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

/* --- Mid CTA --- */
.landing-v2 .mid-cta {
  text-align: center;
  padding-top: 22px;
}

.landing-v2 .mid-cta p {
  font-size: 14.5px;
  margin-top: 12px;
}

.landing-v2 .mid-cta .hero-ctas {
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

/* --- FAQ --- */
.landing-v2 .faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-v2 .faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
}

.landing-v2 .faq-q {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
}

.landing-v2 .faq-q .ic {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .2s ease;
}

.landing-v2 .faq-item.open .ic {
  transform: rotate(45deg);
}

.js .landing-v2 .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.landing-v2 .faq-a p {
  padding: 0 22px 18px;
  font-size: 15px;
}

/* --- Final CTA --- */
.landing-v2 .final {
  padding: 0 0 96px;
}

.landing-v2 .final-panel {
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  text-align: center;
  padding: 72px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.landing-v2 .final-panel .eyebrow {
  color: var(--accent);
}

.landing-v2 .final-panel h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  color: #fff;
  max-width: 640px;
  margin: 0 auto 14px;
}

.landing-v2 .final-panel p {
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* --- Reveal animation --- */
.js .landing-v2 .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.js .landing-v2 .reveal.in {
  opacity: 1;
  transform: none;
}

/* --- Section spacing --- */
.landing-v2 section {
  padding: 88px 0;
  scroll-margin-top: 76px;
}

.landing-v2 section#ozellikler,
.landing-v2 section#sss {
  padding-top: 0;
}

/* --- Responsive --- */
@media (prefers-reduced-motion: reduce) {
  .landing-v2 .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
