﻿
/**, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #2b1874;
  --navy-light: #0f3460;
  --teal: #2cc8b3;
  --teal-dark: #18a795;
  --mint: #57dbc9;
  --purple-deep: #2e1b8e;
  --teal-glow: rgba(0,212,170,0.15);
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #eef2f6;
  --gray-200: #dce3eb;
  --gray-400: #8899aa;
  --gray-600: #536678;
  --gray-800: #1a3a4a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }*/

/* ============ NAV ============ */
/*nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(10,37,64,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo {
  text-decoration: none; display: flex; align-items: center; line-height: 0;
}
.logo-img {
  height: 36px;
  width: auto;
  max-width: min(240px, 52vw);
  display: block;
  object-fit: contain;
}
.logo--footer .logo-img {
  height: 44px;
  max-width: min(280px, 85vw);
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.55; }
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-600); font-size: 0.9rem;
  font-weight: 500; transition: all 0.2s; padding: 8px 14px; border-radius: 8px;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--navy); background: var(--gray-100); font-weight: 600; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.btn-login {
  background: none; border: 1.5px solid var(--gray-200); color: var(--navy);
  padding: 9px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-login:hover { border-color: var(--teal); color: var(--teal-dark); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px !important;
  font-weight: 600 !important; transition: all 0.3s !important; text-decoration: none;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--navy-light) !important; transform: translateY(-1px); }
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  position: absolute; left: 4px; transition: all 0.3s;
}
.mobile-menu-btn span:nth-child(1) { top: 8px; }
.mobile-menu-btn span:nth-child(2) { top: 15px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); top: 15px; }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px 24px; z-index: 99; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 30px rgba(10,37,64,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav-brand {
  display: flex; justify-content: center; align-items: center;
  padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-brand .logo-img--mobile-nav { height: 38px; max-width: min(220px, 75vw); }
.mobile-nav a {
  text-decoration: none; color: var(--navy); font-weight: 600;
  padding: 14px 16px; border-radius: 10px; font-size: 1rem;
  transition: background 0.2s; border-bottom: none;
}
.mobile-nav a:hover { background: var(--gray-50); }
.mobile-nav .mobile-cta {
  background: var(--teal); color: var(--navy); text-align: center;
  margin-top: 8px; font-weight: 700;
}*/

/* ============ PAGES ============ */
/*.page { display: none; }
.page.active { display: block; }*/

/* ============ SHARED SECTIONS ============ */
/*section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem;
  font-weight: 700; color: var(--teal-dark); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--navy); margin-bottom: 20px;
}
.section-desc { font-size: 1.05rem; line-height: 1.7; color: var(--gray-600); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }*/

/* ============ HERO ============ */
/*.hero {
  padding: 160px 0 100px; position: relative; overflow: hidden;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--teal-glow);
  border: 1px solid rgba(0,212,170,0.3); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #673ab7;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal) 0%, #00e6b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2b1874;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px; background: var(--teal);
  color: var(--navy); font-weight: 700; font-size: 1.05rem; padding: 16px 36px;
  border-radius: 50px; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,212,170,0.3); animation: fadeInUp 0.6s ease-out 0.3s both;
  cursor: pointer; border: none; font-family: inherit;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,170,0.4); background: #00e6b8; }
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-card {
  background: var(--white); border-radius: 20px; padding: 36px;
  box-shadow: 0 20px 60px rgba(10,37,64,0.1), 0 1px 3px rgba(10,37,64,0.06);
}
.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
}
.hero-card-title { font-size: 0.85rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal-dark);
}
.hero-card-live::before {
  content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.score-display { text-align: center; margin-bottom: 28px; }
.score-number { font-family: 'Space Mono',monospace; font-size: 4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.score-label { font-size: 0.85rem; color: var(--gray-400); margin-top: 4px; font-weight: 500; }
.score-bar { height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.score-bar-fill {
  height: 100%; width: 71%;
  background: linear-gradient(90deg, var(--teal) 0%, #00e6b8 100%);
  border-radius: 4px; animation: fillBar 1.5s ease-out 0.8s both;
}
@keyframes fillBar { from { width: 0; } }
.bank-rows { display: flex; flex-direction: column; gap: 12px; }
.bank-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--gray-50); border-radius: var(--radius-sm);
}
.bank-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.bank-chance {
  font-family: 'Space Mono',monospace; font-size: 0.85rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.bank-chance.high { background: rgba(0,212,170,0.15); color: var(--teal-dark); }
.bank-chance.mid { background: rgba(255,193,7,0.15); color: #d4a017; }
.bank-chance.low { background: rgba(239,83,80,0.1); color: #d32f2f; }
.hero-float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-sm);
  padding: 14px 20px; box-shadow: 0 10px 30px rgba(10,37,64,0.1);
  z-index: 3; animation: float 3s ease-in-out infinite;
}
.float-1 { top: -10px; right: -30px; animation-delay: 0s; }
.float-2 { bottom: 30px; left: -40px; animation-delay: 1s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-label { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }
.float-value { font-family: 'Space Mono',monospace; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.float-value.green { color: var(--teal-dark); }
.trust-badges { display: flex; gap: 32px; margin-top: 48px; animation: fadeInUp 0.6s ease-out 0.4s both; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }
.trust-badge-icon {
  width: 36px; height: 36px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center;
}
.trust-badge-icon svg { width: 18px; height: 18px; color: var(--teal-dark); }*/

/* Counter bar */
/*.counter-bar {
  display: flex; justify-content: center; gap: 64px; padding: 48px 0;
  background: var(--white); border-bottom: 1px solid var(--gray-100);
}
.counter-item { text-align: center; }
.counter-number { font-family: 'Space Mono',monospace; font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.counter-label { font-size: 0.85rem; color: var(--gray-400); margin-top: 4px; font-weight: 500; }*/

/* Problem/Solution */
/*.problem-section { background: var(--navy); color: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-section .section-label { color: var(--teal); }
.problem-section .section-title { color: var(--white); }
.problem-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.problem-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); transition: all 0.3s;
}
.problem-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,170,0.3); }
.problem-icon { width: 36px; height: 36px; background: rgba(239,83,80,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.problem-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.5; font-weight: 500; }
.solution-side .section-label { color: var(--teal); }
.solution-side .section-title { color: var(--white); }
.solution-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-top: 20px; }
.solution-highlight {
  margin-top: 32px; padding: 24px;
  background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.2); border-radius: var(--radius-sm);
}
.solution-highlight p { font-size: 1rem; color: var(--teal); font-weight: 600; line-height: 1.6; }*/

/* Features */
/*.features-section { background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  border: 1px solid var(--gray-100); transition: all 0.4s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), #00e6b8); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,37,64,0.08); border-color: rgba(0,212,170,0.2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.5rem; }
.feature-icon.teal { background: var(--teal-glow); }
.feature-icon.navy { background: rgba(10,37,64,0.06); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feature-card p { font-size: 0.92rem; line-height: 1.65; color: var(--gray-600); }*/

/* How it works */
/*.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 60px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gray-200), var(--teal)); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 28px;
  font-family: 'Space Mono',monospace; font-weight: 700; font-size: 1.3rem;
  background: var(--navy); color: var(--teal); border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(10,37,64,0.15);
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 0.92rem; line-height: 1.65; color: var(--gray-600); max-width: 320px; margin: 0 auto; }*/

/* Example report */
/*.example-section { background: var(--gray-50); }
.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.example-quote {
  font-size: 1.15rem; line-height: 1.7; color: var(--navy); font-style: italic;
  font-weight: 500; padding: 24px; border-left: 4px solid var(--teal);
  background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 24px;
}
.example-author { font-size: 0.9rem; color: var(--gray-600); font-weight: 600; margin-bottom: 8px; }
.example-report-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: 0 10px 40px rgba(10,37,64,0.08); border: 1px solid var(--gray-100); }
.report-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.report-title { font-weight: 700; font-size: 1rem; color: var(--navy); }
.report-badge { font-size: 0.75rem; font-weight: 700; background: var(--teal-glow); color: var(--teal-dark); padding: 4px 12px; border-radius: 50px; }
.report-metrics { display: flex; flex-direction: column; gap: 16px; }
.report-metric { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--gray-50); border-radius: var(--radius-xs); }
.report-metric-label { font-size: 0.88rem; color: var(--gray-600); font-weight: 500; }
.report-metric-value { font-family: 'Space Mono',monospace; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.report-metric-value.green { color: var(--teal-dark); }
.report-metric-value.orange { color: #d4a017; }
.report-strategy { margin-top: 20px; padding: 18px; background: rgba(0,212,170,0.06); border: 1px solid rgba(0,212,170,0.15); border-radius: var(--radius-xs); }
.report-strategy-label { font-size: 0.78rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.report-strategy p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }*/

/* Benefits */
/*.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.benefit-card { display: flex; gap: 20px; padding: 32px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); transition: all 0.3s; }
.benefit-card:hover { box-shadow: 0 8px 30px rgba(10,37,64,0.06); border-color: rgba(0,212,170,0.2); }
.benefit-icon { width: 48px; height: 48px; background: var(--teal-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-600); }*/

/* Comparison */
/*.compare-section { background: var(--navy); color: var(--white); }
.compare-section .section-header .section-label { color: var(--teal); }
.compare-section .section-header .section-title { color: var(--white); }
.compare-table { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 40px 32px; }
.compare-col.old { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.compare-col.new { background: rgba(0,212,170,0.06); border: 1px solid rgba(0,212,170,0.2); position: relative; }
.compare-col.new::after {
  content: 'ÖNERİLEN'; position: absolute; top: -12px; right: 24px;
  font-size: 0.7rem; font-weight: 800; background: var(--teal); color: var(--navy);
  padding: 4px 14px; border-radius: 50px; letter-spacing: 0.05em;
}
.compare-col-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.compare-col.old .compare-col-title { color: rgba(255,255,255,0.5); }
.compare-col.new .compare-col-title { color: var(--teal); }
.compare-items { display: flex; flex-direction: column; gap: 18px; }
.compare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; line-height: 1.5; }
.compare-col.old .compare-item { color: rgba(255,255,255,0.5); }
.compare-col.new .compare-item { color: rgba(255,255,255,0.85); }
.compare-x { color: rgba(239,83,80,0.6); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.compare-check { color: var(--teal); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }*/

/* Trust */
/*.trust-section { background: var(--gray-50); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--gray-100); transition: all 0.3s; }
.trust-card:hover { box-shadow: 0 8px 30px rgba(10,37,64,0.06); }
.trust-card-icon { width: 56px; height: 56px; margin: 0 auto 20px; background: var(--teal-glow); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.trust-card p { font-size: 0.85rem; line-height: 1.6; color: var(--gray-600); }*/

/* FAQ */
/*.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(0,212,170,0.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; gap: 16px; }
.faq-question h3 { font-size: 1rem; font-weight: 600; color: var(--navy); flex: 1; }
.faq-toggle { width: 28px; height: 28px; background: var(--gray-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-size: 1.2rem; color: var(--gray-400); }
.faq-item.active .faq-toggle { background: var(--teal-glow); color: var(--teal-dark); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 28px 22px; font-size: 0.92rem; line-height: 1.7; color: var(--gray-600); }*/

/* Final CTA */
/*.final-cta { background: var(--navy); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 60%); pointer-events: none;
}
.final-cta .section-label { color: var(--teal); }
.final-cta .section-title { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.final-cta .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 40px; }
.final-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--teal);
  color: var(--navy); font-weight: 700; font-size: 1.1rem; padding: 18px 44px;
  border-radius: 50px; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(0,212,170,0.3); cursor: pointer; border: none; font-family: inherit;
}
.final-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,212,170,0.4); background: #00e6b8; }
.cta-sub-cards { display: flex; gap: 24px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.cta-sub-card { display: flex; align-items: center; gap: 12px; padding: 14px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); }
.cta-sub-card span { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.cta-sub-icon { font-size: 1.1rem; }*/

/* Footer */
/*footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 36px; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; padding: 6px 0; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; 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.5); text-decoration: none; transition: all 0.2s; font-size: 0.85rem; }
.footer-social a:hover { background: var(--teal-glow); border-color: rgba(0,212,170,0.3); color: var(--teal); }*/

/* Animations */
/*@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }*/

/* ============ PRICING PAGE ============ */
/*.pricing-hero {
  padding: 140px 0 80px; text-align: center;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.pricing-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 16px; }
.pricing-hero p { font-size: 1.1rem; color: var(--gray-600); max-width: 500px; margin: 0 auto 40px; }
.pricing-toggle {
  display: inline-flex; background: var(--gray-100); border-radius: 50px; padding: 4px; margin-bottom: 64px;
}
.pricing-toggle button {
  padding: 10px 28px; border-radius: 50px; border: none; background: none;
  font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; color: var(--gray-600);
}
.pricing-toggle button.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(10,37,64,0.1); }
.pricing-save-badge {
  background: rgba(0,212,170,0.15); color: var(--teal-dark); font-size: 0.75rem;
  font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-left: 8px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.pricing-card {
  background: var(--white); border-radius: 20px; padding: 40px 32px;
  border: 1.5px solid var(--gray-100); transition: all 0.3s; position: relative;
}
.pricing-card.popular {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,212,170,0.08);
  transform: scale(1.02);
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy); font-size: 0.75rem; font-weight: 800;
  padding: 5px 18px; border-radius: 50px; letter-spacing: 0.04em; white-space: nowrap;
}
.pricing-card:hover:not(.popular) { border-color: rgba(0,212,170,0.3); box-shadow: 0 12px 40px rgba(10,37,64,0.08); }
.pricing-plan-name { font-size: 0.8rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pricing-amount {
  font-family: 'Space Mono',monospace; font-size: 3rem; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.pricing-amount span { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-period { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 8px; }
.pricing-original { font-size: 0.85rem; color: var(--gray-400); text-decoration: line-through; margin-bottom: 24px; }
.pricing-desc { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-600); }
.pricing-feature .check { color: var(--teal-dark); font-weight: 700; flex-shrink: 0; }
.pricing-feature .cross { color: var(--gray-300); flex-shrink: 0; }
.pricing-btn {
  width: 100%; padding: 14px; border-radius: 50px; font-family: inherit;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s;
  border: none;
}
.pricing-btn.primary { background: var(--teal); color: var(--navy); }
.pricing-btn.primary:hover { background: #00e6b8; transform: translateY(-1px); }
.pricing-btn.secondary { background: var(--gray-50); color: var(--navy); border: 1.5px solid var(--gray-200); }
.pricing-btn.secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
.pricing-guarantee { text-align: center; margin-top: 48px; padding: 24px; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-100); }
.pricing-guarantee p { font-size: 0.92rem; color: var(--gray-600); }
.pricing-guarantee strong { color: var(--navy); }
.pricing-section { padding: 80px 0; }*/

/* ============ ANALIZ PAGE ============ */
/*.analiz-hero {
  padding: 140px 0 60px;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.analiz-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding-bottom: 80px; }
.analiz-left h1 { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 16px; }
.analiz-left p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.analiz-steps-mini { display: flex; flex-direction: column; gap: 16px; }
.analiz-step-mini { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm); }
.analiz-step-num { width: 32px; height: 32px; background: var(--navy); color: var(--teal); font-family: 'Space Mono',monospace; font-weight: 700; font-size: 0.85rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.analiz-step-mini span { font-size: 0.92rem; color: var(--gray-600); font-weight: 500; }
.analiz-form-card {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: 0 20px 60px rgba(10,37,64,0.1); border: 1px solid var(--gray-100);
  position: sticky; top: 100px;
}
.analiz-form-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.analiz-form-sub { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 28px; }
.upload-zone {
  border: 2px dashed var(--gray-200); border-radius: var(--radius); padding: 40px 24px;
  text-align: center; cursor: pointer; transition: all 0.3s; margin-bottom: 20px;
  background: var(--gray-50);
}
.upload-zone:hover { border-color: var(--teal); background: var(--teal-glow); }
.upload-zone.drag-over { border-color: var(--teal); background: var(--teal-glow); }
.upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.upload-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.upload-sub { font-size: 0.85rem; color: var(--gray-400); }
.upload-formats { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.upload-format-tag { background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 4px; }
.form-divider { text-align: center; color: var(--gray-400); font-size: 0.85rem; margin: 16px 0; position: relative; }
.form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--gray-200); }
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.form-input-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.92rem;
  color: var(--navy); transition: all 0.2s; outline: none; background: var(--white);
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,170,0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238899aa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-submit-btn {
  width: 100%; padding: 16px; background: var(--teal); color: var(--navy);
  font-family: inherit; font-size: 1rem; font-weight: 700; border: none;
  border-radius: 50px; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,212,170,0.3); margin-top: 8px;
}
.form-submit-btn:hover { background: #00e6b8; transform: translateY(-1px); }
.form-privacy { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-privacy a { color: var(--teal-dark); text-decoration: none; }*/

/* Plan selector in form */
/*.plan-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.plan-option { border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px 16px; cursor: pointer; transition: all 0.2s; }
.plan-option.selected { border-color: var(--teal); background: var(--teal-glow); }
.plan-option-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.plan-option-price { font-family: 'Space Mono',monospace; font-size: 0.82rem; color: var(--gray-400); }
.plan-option.selected .plan-option-name { color: var(--teal-dark); }*/

/* ============ SSS PAGE ============ */
/*.sss-hero {
  padding: 140px 0 80px; text-align: center;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.sss-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.sss-hero p { font-size: 1.1rem; color: var(--gray-600); max-width: 500px; margin: 0 auto; }
.sss-categories { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 40px 0; }
.sss-cat-btn {
  padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--gray-200);
  background: none; font-family: inherit; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; color: var(--gray-600);
}
.sss-cat-btn.active, .sss-cat-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sss-content { max-width: 820px; margin: 0 auto; padding: 0 24px 80px; }
.sss-group { margin-bottom: 48px; }
.sss-group-title { font-size: 1rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-glow); }
.sss-search { max-width: 500px; margin: 0 auto 48px; position: relative; }
.sss-search input { width: 100%; padding: 14px 48px 14px 20px; border: 1.5px solid var(--gray-200); border-radius: 50px; font-family: inherit; font-size: 0.95rem; outline: none; transition: all 0.2s; }
.sss-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,212,170,0.1); }
.sss-search-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.sss-contact-box { background: var(--navy); border-radius: var(--radius); padding: 48px; text-align: center; margin: 0 24px 80px; }
.sss-contact-box h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.sss-contact-box p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.sss-contact-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sss-contact-btn { padding: 12px 28px; border-radius: 50px; font-family: inherit; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.sss-contact-btn.primary { background: var(--teal); color: var(--navy); border: none; }
.sss-contact-btn.secondary { background: none; border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); }
.sss-contact-btn:hover { transform: translateY(-1px); }*/

/* ============ BLOG PAGE ============ */
/*.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.blog-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.blog-hero p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; max-width: 500px; }
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0 48px; }
.blog-filter-btn { padding: 8px 18px; border-radius: 50px; border: 1.5px solid var(--gray-200); background: none; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--gray-600); }
.blog-filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; padding-bottom: 80px; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); overflow: hidden; transition: all 0.3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,37,64,0.08); border-color: rgba(0,212,170,0.2); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.blog-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, rgba(10,37,64,0.3)); }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: var(--teal-glow); color: var(--teal-dark); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; }
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--gray-400); }
.blog-card-read { color: var(--teal-dark); font-weight: 600; }
.blog-featured { grid-column: span 2; }
.blog-featured .blog-card-img { height: 240px; }
.blog-featured .blog-card h3 { font-size: 1.2rem; }*/

/* ============ GIRIS PAGE ============ */
/*.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 60px;
  background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}
.auth-card { background: var(--white); border-radius: 24px; padding: 48px; width: 100%; max-width: 440px; box-shadow: 0 20px 60px rgba(10,37,64,0.1); border: 1px solid var(--gray-100); }
.auth-logo {
  display: flex; align-items: center; margin-bottom: 32px; line-height: 0;
  text-decoration: none;
}
.auth-logo .logo-img { height: 44px; max-width: 100%; }
.auth-title { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.02em; }
.auth-sub { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 32px; }
.auth-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.auth-social-btn {
  width: 100%; padding: 13px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200);
  background: var(--white); font-family: inherit; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--navy);
}
.auth-social-btn:hover { border-color: var(--teal); background: var(--teal-glow); }
.auth-submit {
  width: 100%; padding: 15px; background: var(--teal); color: var(--navy); border: none;
  border-radius: 50px; font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.auth-submit:hover { background: #00e6b8; transform: translateY(-1px); }
.auth-switch { text-align: center; font-size: 0.88rem; color: var(--gray-600); margin-top: 24px; }
.auth-switch a { color: var(--teal-dark); font-weight: 600; cursor: pointer; text-decoration: none; }
.auth-forgot { text-align: right; font-size: 0.82rem; margin-top: -8px; margin-bottom: 16px; }
.auth-forgot a { color: var(--teal-dark); cursor: pointer; text-decoration: none; font-weight: 500; }
.auth-tabs { display: flex; background: var(--gray-100); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.auth-tab { flex: 1; padding: 10px; text-align: center; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.88rem; transition: all 0.2s; color: var(--gray-600); }
.auth-tab.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(10,37,64,0.08); }*/

/* ============ ANIMATIONS ============ */
/*@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }*/

/* ============ RESPONSIVE ============ */
/*@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.popular { transform: none; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-column: span 2; }
  .analiz-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-right { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 120px 0 72px; }
  .hero-new.hero-manset-fullbg {
    padding: 100px 0 36px;
    min-height: min(46vh, 440px);
  }
  .hero-manset-fullbg__scrim {
    background: linear-gradient(
      180deg,
      #009688 0%,
      rgba(255, 255, 255, 0.72) 42%,
      rgba(248, 250, 252, 0.4) 58%,
      #009688 100%
    );
  }
  .hero-manset-fullbg__art::before,
  .hero-manset-fullbg__art::after {
    opacity: 0.45;
  }
  .hero-manset-fullbg__orbs .hero-manset-fullbg__orb {
    opacity: 0.78;
  }
  .hero-manset-fullbg__inner {
    min-height: 0;
    align-items: flex-end;
    padding-bottom: 8px;
  }
  .hero-float-card { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .example-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: 16px; }
  .counter-bar { flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-sub-cards { flex-direction: column; align-items: center; }
  .pricing-grid { max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-column: span 1; }
  .analiz-form-card { position: static; }
}*/

/* ============ INDEX REDESIGN ============ */
/*.hero-new {
  background: linear-gradient(150deg, #f5fffd 0%, #e9fbf8 40%, #f8f4ff 100%);
}*/

/* Tam boy manşet: 01.jpg tüm kahraman alanını arka plan gibi kaplar */
/*.hero-new.hero-manset-fullbg {
  position: relative;
  overflow: hidden;
  padding: 120px 0 44px;
  min-height: min(52vh, 520px);
  background: var(--gray-100);
}
.hero-new.hero-manset-fullbg::before {
  display: none;
}*/

/* Foto yerine: marka renklerinde soyut manşet (gradient + cam kart hissi) */
/*.hero-manset-fullbg__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #e4f3ef;
  background-image:
    radial-gradient(ellipse 110% 85% at 92% -5%, rgba(44, 200, 179, 0.5) 0%, transparent 52%),
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(43, 24, 116, 0.38) 0%, transparent 58%),
    radial-gradient(circle 55% at 5% 55%, rgba(87, 219, 201, 0.32) 0%, transparent 52%),
    radial-gradient(circle 28% at 72% 38%, rgba(255, 255, 255, 0.55) 0%, transparent 70%),
    linear-gradient(152deg, #f2fdfb 0%, #e5f5f1 32%, #eef3ff 68%, #e0e9ff 100%);
}
.hero-manset-fullbg__art::before {
  content: '';
  position: absolute;
  width: min(46vw, 420px);
  height: min(34vh, 300px);
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-7deg);
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(43, 24, 116, 0.06) 100%
  );
  box-shadow:
    0 28px 90px rgba(43, 24, 116, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.hero-manset-fullbg__art::after {
  content: '';
  position: absolute;
  width: min(34vw, 280px);
  height: 10px;
  right: 10%;
  top: calc(50% - min(8vh, 72px));
  transform: translateY(-50%) rotate(-7deg);
  border-radius: 6px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(44, 200, 179, 0.35) 55%, rgba(43, 24, 116, 0.15) 100%);
  opacity: 0.85;
  filter: blur(0.2px);
}*/

/* Gerçek DOM daireleri (#302574 / #2cc8b3) — gradient içinde kaybolmaz */
/*.hero-manset-fullbg__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-manset-fullbg__orb {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1;
  width: var(--orb-size, 80px);
  height: var(--orb-size, 80px);
}
.hero-manset-fullbg__orb--p {
  background: rgba(48, 37, 116, 0.4);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.12);
}
.hero-manset-fullbg__orb--t {
  background: rgba(44, 200, 179, 0.42);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.18);
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(1) {
  --orb-size: clamp(68px, 11vw, 128px);
  left: 5%;
  top: 10%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(2) {
  --orb-size: clamp(52px, 8vw, 96px);
  left: 78%;
  top: 6%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(3) {
  --orb-size: clamp(88px, 14vw, 160px);
  left: 86%;
  top: 48%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(4) {
  --orb-size: clamp(44px, 7vw, 84px);
  left: 54%;
  top: 28%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(5) {
  --orb-size: clamp(60px, 10vw, 112px);
  left: 28%;
  top: 72%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(6) {
  --orb-size: clamp(48px, 7.5vw, 92px);
  left: 2%;
  top: 58%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(7) {
  --orb-size: clamp(72px, 11vw, 120px);
  left: 68%;
  top: 78%;
}
.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(8) {
  --orb-size: clamp(40px, 6vw, 76px);
  left: 42%;
  top: 8%;
}

.hero-manset-fullbg__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    #009688 0%,
    rgba(255, 255, 255, 0.62) 32%,
    rgba(248, 250, 252, 0.28) 54%,
    #009688 100%
  );
}
.hero-manset-fullbg__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: min(32vh, 340px);
}
.hero-manset-fullbg .hero-content {
  max-width: 640px;
}

.hero-new .hero-badge {
  background: rgba(43, 24, 116, 0.08);
  border: 1px solid rgba(43, 24, 116, 0.15);
  color: var(--purple-deep);
}

.hero-new h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #673ab7;
  max-width: 680px;
}

.hero-text-main {
  color: #9c27b0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta-outline {
  background: transparent;
  border: 1.8px solid rgba(43, 24, 116, 0.35);
  color: var(--purple-deep);
  box-shadow: none;
}

.hero-cta-outline:hover {
  background: rgba(43, 24, 116, 0.08);
  box-shadow: none;
}

.hero-brand-card {
  background: linear-gradient(145deg, var(--teal) 0%, var(--mint) 100%);
  border-radius: 28px;
  padding: 40px 38px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(43, 24, 116, 0.2);
}

.hero-brand-card h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hero-brand-card p {
  opacity: 0.95;
  margin-bottom: 18px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.hero-brand-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.hero-brand-card li {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.hero-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
}

.ball-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, #5436d9, #2e1b8e);
  bottom: -40px;
  right: -35px;
}

.ball-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #7f69e8, #4a2dc3);
  top: -30px;
  left: -18px;
}

.ball-3 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #29b9a8, #168e82);
  top: 26px;
  right: 46px;
}

.findex-section {
  background: var(--white);
}

.findex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.findex-form-card,
.findex-result-card,
.calc-form-card,
.calc-result-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(27, 19, 72, 0.08);
}

.findex-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.findex-form-head h3 {
  font-size: 1.2rem;
}

.findex-form-head span {
  background: rgba(44, 200, 179, 0.18);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 10px;
}

.findex-result-card .result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.findex-result-card .result-top p {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
}

.risk-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(229, 152, 35, 0.15);
  color: #b27306;
  font-weight: 700;
  font-size: 0.75rem;
}

.result-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.calc-section {
  background: linear-gradient(180deg, #f7fffd 0%, #f4f1ff 100%);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
}

.calc-type-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.calc-type-btn {
  border: 1px solid var(--gray-200);
  background: transparent;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: 0.2s ease;
}

.calc-type-btn.active {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

.calc-result-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.calc-result-main p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.calc-result-main h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--purple-deep);
}

.result-chip {
  background: rgba(43, 24, 116, 0.1);
  color: var(--purple-deep);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 14px;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calc-kpi {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 14px;
  background: #fafcff;
}

.calc-kpi span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.calc-kpi strong {
  font-size: 1rem;
  color: var(--navy);
}

.payment-plan {
  margin-top: 20px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  max-height: 210px;
  overflow-y: auto;
}

.payment-plan-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 12px;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-100);
}

.payment-plan-row span:first-child {
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .findex-grid,
  .calc-layout {
    grid-template-columns: 1fr;
  }
}*/


/* ============ IMPROVEMENTS ============ */

/* Hero: remove orbs, cleaner background */
/*.hero-manset-fullbg__orbs { display: none !important; }

.hero-manset-fullbg {
  background: linear-gradient(135deg, #1a0f5c 0%, #2e1b8e 40%, #1a6b5c 100%);
  min-height: 600px;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-manset-fullbg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(44,200,179,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(87,66,200,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-manset-fullbg__art { display: none; }
.hero-manset-fullbg__scrim { display: none; }

.hero-manset-fullbg__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .hero-badge {
  background: rgba(44,200,179,0.2);
  border: 1px solid rgba(44,200,179,0.4);
  color: #57dbc9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-text-main {
  background: linear-gradient(135deg, #2cc8b3 0%, #57dbc9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 480px;
}*/

/* Trust row below buttons */
/*.hero-trust-row {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}*/

/* Hero visual column */
/*.hero-visual-col {
  display: flex;
  justify-content: center;
}*/

/* Better section spacing - reduce the big gap */
/*.findex-section,
.calc-section {
  padding: 72px 0;
}*/

/* Stronger section title hierarchy */
/*.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

.section-label {
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
}*/

/* Better form inputs */
/*.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-top: 6px;
  display: block;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,200,179,0.12);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  display: block;
}

.form-input-group {
  margin-bottom: 16px;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #00e6b8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,200,179,0.3);
}*/

/* Findex result card score number */
/*.findex-result-card .score-number {
  font-size: 3.8rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}

.findex-result-card .score-display {
  text-align: center;
  padding: 20px 0 16px;
}

.findex-result-card .score-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}*/

/* Mobile hero fix */
/*@media (max-width: 768px) {
  .hero-manset-fullbg__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual-col { display: none; }
  .hero-trust-row { gap: 14px; }
}*/



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

:root {
    --navy: #2b1874;
    --navy-light: #0f3460;
    --teal: #2cc8b3;
    --teal-dark: #18a795;
    --mint: #57dbc9;
    --purple-deep: #2e1b8e;
    --teal-glow: rgba(0,212,170,0.15);
    --white: #ffffff;
    --gray-50: #f8fafb;
    --gray-100: #eef2f6;
    --gray-200: #dce3eb;
    --gray-400: #8899aa;
    --gray-600: #536678;
    --gray-800: #1a3a4a;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,37,64,0.06);
    transition: box-shadow 0.3s;
}

    nav.scrolled {
        box-shadow: 0 4px 30px rgba(10,37,64,0.08);
    }

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    max-width: min(240px, 52vw);
    display: block;
    object-fit: contain;
}

.logo--footer .logo-img {
    height: 44px;
    max-width: min(280px, 85vw);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.55;
    }
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--gray-600);
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s;
        padding: 8px 14px;
        border-radius: 25px;
    }

        .nav-links a:hover {
            color: var(--navy);
            background: var(--gray-50);
        }

        .nav-links a.active {
            color: var(--navy);
            background: var(--gray-100);
            font-weight: 600;
        }

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    background: none;
    border: 1.5px solid var(--gray-200);
    color: var(--navy);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .btn-login:hover {
        border-color: var(--teal);
        color: var(--teal-dark);
    }

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    text-decoration: none;
    font-size: 0.9rem;
}

    .nav-cta:hover {
        background: var(--navy-light) !important;
        transform: translateY(-1px);
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        position: absolute;
        left: 4px;
        transition: all 0.3s;
    }

        .mobile-menu-btn span:nth-child(1) {
            top: 8px;
        }

        .mobile-menu-btn span:nth-child(2) {
            top: 15px;
        }

        .mobile-menu-btn span:nth-child(3) {
            top: 22px;
        }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 15px;
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 15px;
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 24px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(10,37,64,0.08);
}

    .mobile-nav.open {
        display: flex;
    }

.mobile-nav-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

    .mobile-nav-brand .logo-img--mobile-nav {
        height: 38px;
        max-width: min(220px, 75vw);
    }

.mobile-nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.2s;
    border-bottom: none;
}

    .mobile-nav a:hover {
        background: var(--gray-50);
    }

.mobile-nav .mobile-cta {
    background: var(--teal);
    color: var(--navy);
    text-align: center;
    margin-top: 8px;
    font-weight: 700;
}

/* ============ PAGES ============ */
.page {
    display: none;
}

    .page.active {
        display: block;
    }

/* ============ SHARED SECTIONS ============ */
section {
    /* padding: 100px 0; */
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

    .section-header .section-desc {
        margin: 0 auto;
    }

/* ============ HERO ============ */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-glow);
    border: 1px solid rgba(0,212,170,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #673ab7;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

    .hero h1 .highlight {
        background: linear-gradient(135deg, var(--teal) 0%, #00e6b8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2b1874;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,212,170,0.3);
    animation: fadeInUp 0.6s ease-out 0.3s both;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

    .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,212,170,0.4);
        background: #00e6b8;
    }

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(10,37,64,0.1), 0 1px 3px rgba(10,37,64,0.06);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.hero-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-card-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal-dark);
}

    .hero-card-live::before {
        content: '';
        width: 7px;
        height: 7px;
        background: var(--teal);
        border-radius: 50%;
        animation: pulse-dot 1.5s ease-in-out infinite;
    }

.score-display {
    text-align: center;
    margin-bottom: 28px;
}

.score-number {
    font-family: 'Space Mono',monospace;
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.score-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}

.score-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.score-bar-fill {
    height: 100%;
    width: 71%;
    background: linear-gradient(90deg, var(--teal) 0%, #00e6b8 100%);
    border-radius: 4px;
    animation: fillBar 1.5s ease-out 0.8s both;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.bank-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.bank-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.bank-chance {
    font-family: 'Space Mono',monospace;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

    .bank-chance.high {
        background: rgba(0,212,170,0.15);
        color: var(--teal-dark);
    }

    .bank-chance.mid {
        background: rgba(255,193,7,0.15);
        color: #d4a017;
    }

    .bank-chance.low {
        background: rgba(239,83,80,0.1);
        color: #d32f2f;
    }

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(10,37,64,0.1);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.float-1 {
    top: -10px;
    right: -30px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 30px;
    left: -40px;
    animation-delay: 1s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-label {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
}

.float-value {
    font-family: 'Space Mono',monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

    .float-value.green {
        color: var(--teal-dark);
    }

.trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-badge-icon svg {
        width: 18px;
        height: 18px;
        color: var(--teal-dark);
    }

/* Counter bar */
.counter-bar {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: 'Space Mono',monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 500;
}

/* Problem/Solution */
.problem-section {
    background: var(--navy);
    color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-section .section-label {
    color: var(--teal);
}

.problem-section .section-title {
    color: var(--white);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

    .problem-item:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(0,212,170,0.3);
    }

.problem-icon {
    width: 36px;
    height: 36px;
    background: rgba(239,83,80,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.problem-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-weight: 500;
}

.solution-side .section-label {
    color: var(--teal);
}

.solution-side .section-title {
    color: var(--white);
}

.solution-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-top: 20px;
}

.solution-highlight {
    margin-top: 32px;
    padding: 24px;
    background: rgba(0,212,170,0.08);
    border: 1px solid rgba(0,212,170,0.2);
    border-radius: var(--radius-sm);
}

    .solution-highlight p {
        font-size: 1rem;
        color: var(--teal);
        font-weight: 600;
        line-height: 1.6;
    }

/* Features */
.features-section {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), #00e6b8);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(10,37,64,0.08);
        border-color: rgba(0,212,170,0.2);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.5rem;
}

    .feature-icon.teal {
        background: var(--teal-glow);
    }

    .feature-icon.navy {
        background: rgba(10,37,64,0.06);
    }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    position: relative;
}

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), var(--gray-200), var(--teal));
        z-index: 0;
    }

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Space Mono',monospace;
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--navy);
    color: var(--teal);
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(10,37,64,0.15);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
    max-width: 320px;
    margin: 0 auto;
}

/* Example report */
.example-section {
    background: var(--gray-50);
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.example-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--navy);
    font-style: italic;
    font-weight: 500;
    padding: 24px;
    border-left: 4px solid var(--teal);
    background: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 24px;
}

.example-author {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 8px;
}

.example-report-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 10px 40px rgba(10,37,64,0.08);
    border: 1px solid var(--gray-100);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.report-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.report-badge {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--teal-glow);
    color: var(--teal-dark);
    padding: 4px 12px;
    border-radius: 50px;
}

.report-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--radius-xs);
}

.report-metric-label {
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 500;
}

.report-metric-value {
    font-family: 'Space Mono',monospace;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

    .report-metric-value.green {
        color: var(--teal-dark);
    }

    .report-metric-value.orange {
        color: #d4a017;
    }

.report-strategy {
    margin-top: 20px;
    padding: 18px;
    background: rgba(0,212,170,0.06);
    border: 1px solid rgba(0,212,170,0.15);
    border-radius: var(--radius-xs);
}

.report-strategy-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.report-strategy p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.3s;
}

    .benefit-card:hover {
        box-shadow: 0 8px 30px rgba(10,37,64,0.06);
        border-color: rgba(0,212,170,0.2);
    }

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Comparison */
.compare-section {
    background: var(--navy);
    color: var(--white);
}

    .compare-section .section-header .section-label {
        color: var(--teal);
    }

    .compare-section .section-header .section-title {
        color: var(--white);
    }

.compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-col {
    border-radius: var(--radius);
    padding: 40px 32px;
}

    .compare-col.old {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .compare-col.new {
        background: rgba(0,212,170,0.06);
        border: 1px solid rgba(0,212,170,0.2);
        position: relative;
    }

        .compare-col.new::after {
            content: 'ÖNERİLEN';
            position: absolute;
            top: -12px;
            right: 24px;
            font-size: 0.7rem;
            font-weight: 800;
            background: var(--teal);
            color: var(--navy);
            padding: 4px 14px;
            border-radius: 50px;
            letter-spacing: 0.05em;
        }

.compare-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-col.old .compare-col-title {
    color: rgba(255,255,255,0.5);
}

.compare-col.new .compare-col-title {
    color: var(--teal);
}

.compare-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.compare-col.old .compare-item {
    color: rgba(255,255,255,0.5);
}

.compare-col.new .compare-item {
    color: rgba(255,255,255,0.85);
}

.compare-x {
    color: rgba(239,83,80,0.6);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.compare-check {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Trust */
.trust-section {
    background: var(--gray-50);
}

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

.trust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

    .trust-card:hover {
        box-shadow: 0 8px 30px rgba(10,37,64,0.06);
    }

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--teal-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-600);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s;
}

    .faq-item:hover {
        border-color: rgba(0,212,170,0.3);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    gap: 16px;
}

    .faq-question h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
        flex: 1;
    }

.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: var(--gray-400);
}

.faq-item.active .faq-toggle {
    background: var(--teal-glow);
    color: var(--teal-dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Final CTA */
.final-cta {
    background: var(--navy);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .final-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 60%);
        pointer-events: none;
    }

    .final-cta .section-label {
        color: var(--teal);
    }

    .final-cta .section-title {
        color: var(--white);
        max-width: 700px;
        margin: 0 auto 16px;
    }

    .final-cta .section-desc {
        color: rgba(255,255,255,0.6);
        margin: 0 auto 40px;
    }

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(0,212,170,0.3);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

    .final-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 40px rgba(0,212,170,0.4);
        background: #00e6b8;
    }

.cta-sub-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.cta-sub-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
}

    .cta-sub-card span {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.6);
        font-weight: 500;
    }

.cta-sub-icon {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 36px;
    color: rgba(255,255,255,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 6px 0;
    transition: color 0.2s;
    cursor: pointer;
}

    .footer-col a:hover {
        color: var(--teal);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        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.5);
        text-decoration: none;
        transition: all 0.2s;
        font-size: 0.85rem;
    }

        .footer-social a:hover {
            background: var(--teal-glow);
            border-color: rgba(0,212,170,0.3);
            color: var(--teal);
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* ============ PRICING PAGE ============ */
.pricing-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

    .pricing-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }

    .pricing-hero p {
        font-size: 1.1rem;
        color: var(--gray-600);
        max-width: 500px;
        margin: 0 auto 40px;
    }

.pricing-toggle {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 64px;
}

    .pricing-toggle button {
        padding: 10px 28px;
        border-radius: 50px;
        border: none;
        background: none;
        font-family: inherit;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        color: var(--gray-600);
    }

        .pricing-toggle button.active {
            background: var(--white);
            color: var(--navy);
            box-shadow: 0 2px 8px rgba(10,37,64,0.1);
        }

.pricing-save-badge {
    background: rgba(0,212,170,0.15);
    color: var(--teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1.5px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}

    .pricing-card.popular {
        border-color: var(--teal);
        box-shadow: 0 0 0 4px rgba(0,212,170,0.08);
        transform: scale(1.02);
    }

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.pricing-card:hover:not(.popular) {
    border-color: rgba(0,212,170,0.3);
    box-shadow: 0 12px 40px rgba(10,37,64,0.08);
}

.pricing-plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: 'Space Mono',monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

    .pricing-amount span {
        font-size: 1.2rem;
        vertical-align: top;
        margin-top: 8px;
        display: inline-block;
    }

.pricing-period {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.pricing-original {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-bottom: 24px;
}

.pricing-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

    .pricing-feature .check {
        color: var(--teal-dark);
        font-weight: 700;
        flex-shrink: 0;
    }

    .pricing-feature .cross {
        color: var(--gray-300);
        flex-shrink: 0;
    }

.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .pricing-btn.primary {
        background: var(--teal);
        color: var(--navy);
    }

        .pricing-btn.primary:hover {
            background: #00e6b8;
            transform: translateY(-1px);
        }

    .pricing-btn.secondary {
        background: var(--gray-50);
        color: var(--navy);
        border: 1.5px solid var(--gray-200);
    }

        .pricing-btn.secondary:hover {
            border-color: var(--teal);
            color: var(--teal-dark);
        }

.pricing-guarantee {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}

    .pricing-guarantee p {
        font-size: 0.92rem;
        color: var(--gray-600);
    }

    .pricing-guarantee strong {
        color: var(--navy);
    }

.pricing-section {
    padding: 80px 0;
}

/* ============ ANALIZ PAGE ============ */
.analiz-hero {
    padding: 140px 0 60px;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

.analiz-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 80px;
}

.analiz-left h1 {
    font-size: clamp(2rem,3.5vw,2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.analiz-left p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.analiz-steps-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analiz-step-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
}

.analiz-step-num {
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: var(--teal);
    font-family: 'Space Mono',monospace;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analiz-step-mini span {
    font-size: 0.92rem;
    color: var(--gray-600);
    font-weight: 500;
}

.analiz-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(10,37,64,0.1);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: 100px;
}

.analiz-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.analiz-form-sub {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.upload-zone {
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    background: var(--gray-50);
}

    .upload-zone:hover {
        border-color: var(--teal);
        background: var(--teal-glow);
    }

    .upload-zone.drag-over {
        border-color: var(--teal);
        background: var(--teal-glow);
    }

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.upload-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.upload-sub {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.upload-formats {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.upload-format-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

.form-divider {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 16px 0;
    position: relative;
}

    .form-divider::before, .form-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 42%;
        height: 1px;
        background: var(--gray-200);
    }

    .form-divider::before {
        left: 0;
    }

    .form-divider::after {
        right: 0;
    }

.form-input-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--navy);
    transition: all 0.2s;
    outline: none;
    background: var(--white);
}

    .form-input:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
    }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238899aa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--teal);
    color: var(--navy);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,212,170,0.3);
    margin-top: 8px;
}

    .form-submit-btn:hover {
        background: #00e6b8;
        transform: translateY(-1px);
    }

.form-privacy {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

    .form-privacy a {
        color: var(--teal-dark);
        text-decoration: none;
    }

/* Plan selector in form */
.plan-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.plan-option {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
}

    .plan-option.selected {
        border-color: var(--teal);
        background: var(--teal-glow);
    }

.plan-option-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.plan-option-price {
    font-family: 'Space Mono',monospace;
    font-size: 0.82rem;
    color: var(--gray-400);
}

.plan-option.selected .plan-option-name {
    color: var(--teal-dark);
}

/* ============ SSS PAGE ============ */
.sss-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

    .sss-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }

    .sss-hero p {
        font-size: 1.1rem;
        color: var(--gray-600);
        max-width: 500px;
        margin: 0 auto;
    }

.sss-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.sss-cat-btn {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-200);
    background: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-600);
}

    .sss-cat-btn.active, .sss-cat-btn:hover {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

.sss-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.sss-group {
    margin-bottom: 48px;
}

.sss-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teal-glow);
}

.sss-search {
    max-width: 500px;
    margin: 0 auto 48px;
    position: relative;
}

    .sss-search input {
        width: 100%;
        padding: 14px 48px 14px 20px;
        border: 1.5px solid var(--gray-200);
        border-radius: 50px;
        font-family: inherit;
        font-size: 0.95rem;
        outline: none;
        transition: all 0.2s;
    }

        .sss-search input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
        }

.sss-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.sss-contact-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin: 0 24px 80px;
}

    .sss-contact-box h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
    }

    .sss-contact-box p {
        color: rgba(255,255,255,0.6);
        margin-bottom: 28px;
    }

.sss-contact-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sss-contact-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

    .sss-contact-btn.primary {
        background: var(--teal);
        color: var(--navy);
        border: none;
    }

    .sss-contact-btn.secondary {
        background: none;
        border: 1.5px solid rgba(255,255,255,0.2);
        color: var(--white);
    }

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

/* ============ BLOG PAGE ============ */
.blog-hero {
    padding: 140px 0 60px;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

    .blog-hero h1 {
        font-size: clamp(2rem,4vw,3rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 16px;
    }

    .blog-hero p {
        font-size: 1.05rem;
        color: var(--gray-600);
        line-height: 1.7;
        max-width: 500px;
    }

.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 32px 0 48px;
}

.blog-filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-200);
    background: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-600);
}

    .blog-filter-btn.active {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    padding-bottom: 80px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(10,37,64,0.08);
        border-color: rgba(0,212,170,0.2);
    }

.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

    .blog-card-img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(transparent, rgba(10,37,64,0.3));
    }

.blog-card-body {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: var(--teal-glow);
    color: var(--teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.blog-card-read {
    color: var(--teal-dark);
    font-weight: 600;
}

.blog-featured {
    grid-column: span 2;
}

    .blog-featured .blog-card-img {
        height: 240px;
    }

    .blog-featured .blog-card h3 {
        font-size: 1.2rem;
    }

/* ============ GIRIS PAGE ============ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background: linear-gradient(175deg, var(--white) 0%, #f0faf7 50%, var(--white) 100%);
}

.auth-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(10,37,64,0.1);
    border: 1px solid var(--gray-100);
}

.auth-logo {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    line-height: 0;
    text-decoration: none;
}

    .auth-logo .logo-img {
        height: 44px;
        max-width: 100%;
    }

.auth-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.auth-sub {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.auth-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-social-btn {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy);
}

    .auth-social-btn:hover {
        border-color: var(--teal);
        background: var(--teal-glow);
    }

.auth-submit {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

    .auth-submit:hover {
        background: #00e6b8;
        transform: translateY(-1px);
    }

.auth-switch {
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-top: 24px;
}

    .auth-switch a {
        color: var(--teal-dark);
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
    }

.auth-forgot {
    text-align: right;
    font-size: 0.82rem;
    margin-top: -8px;
    margin-bottom: 16px;
}

    .auth-forgot a {
        color: var(--teal-dark);
        cursor: pointer;
        text-decoration: none;
        font-weight: 500;
    }

.auth-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 28px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
    color: var(--gray-600);
}

    .auth-tab.active {
        background: var(--white);
        color: var(--navy);
        box-shadow: 0 2px 8px rgba(10,37,64,0.08);
    }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card.popular {
        transform: none;
    }

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

    .blog-featured {
        grid-column: span 2;
    }

    .analiz-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links, .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 72px;
    }

    .hero-new.hero-manset-fullbg {
        padding: 100px 0 36px;
        min-height: min(46vh, 440px);
    }

    .hero-manset-fullbg__scrim {
        background: linear-gradient( 180deg, #009688 0%, rgba(255, 255, 255, 0.72) 42%, rgba(248, 250, 252, 0.4) 58%, #009688 100% );
    }

    .hero-manset-fullbg__art::before,
    .hero-manset-fullbg__art::after {
        opacity: 0.45;
    }

    .hero-manset-fullbg__orbs .hero-manset-fullbg__orb {
        opacity: 0.78;
    }

    .hero-manset-fullbg__inner {
        min-height: 0;
        align-items: flex-end;
        padding-bottom: 8px;
    }

    .hero-float-card {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .example-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .steps-grid::before {
            display: none;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .compare-table {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .counter-bar {
        flex-direction: column;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-sub-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured {
        grid-column: span 1;
    }

    .analiz-form-card {
        position: static;
    }
}

/* ============ INDEX REDESIGN ============ */
.hero-new {
    background: linear-gradient(150deg, #f5fffd 0%, #e9fbf8 40%, #f8f4ff 100%);
}

    /* Tam boy manşet: 01.jpg tüm kahraman alanını arka plan gibi kaplar */
    .hero-new.hero-manset-fullbg {
        position: relative;
        overflow: hidden;
        padding: 120px 0 44px;
        min-height: min(52vh, 520px);
        background: var(--gray-100);
    }

        .hero-new.hero-manset-fullbg::before {
            display: none;
        }

/* Foto yerine: marka renklerinde soyut manşet (gradient + cam kart hissi) */
.hero-manset-fullbg__art {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #e4f3ef;
    background-image: radial-gradient(ellipse 110% 85% at 92% -5%, rgba(44, 200, 179, 0.5) 0%, transparent 52%), radial-gradient(ellipse 90% 70% at 100% 100%, rgba(43, 24, 116, 0.38) 0%, transparent 58%), radial-gradient(circle 55% at 5% 55%, rgba(87, 219, 201, 0.32) 0%, transparent 52%), radial-gradient(circle 28% at 72% 38%, rgba(255, 255, 255, 0.55) 0%, transparent 70%), linear-gradient(152deg, #f2fdfb 0%, #e5f5f1 32%, #eef3ff 68%, #e0e9ff 100%);
}

    .hero-manset-fullbg__art::before {
        content: '';
        position: absolute;
        width: min(46vw, 420px);
        height: min(34vh, 300px);
        right: 5%;
        top: 50%;
        transform: translateY(-50%) rotate(-7deg);
        border-radius: 22px;
        background: linear-gradient( 155deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 48%, rgba(43, 24, 116, 0.06) 100% );
        box-shadow: 0 28px 90px rgba(43, 24, 116, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(6px);
    }

    .hero-manset-fullbg__art::after {
        content: '';
        position: absolute;
        width: min(34vw, 280px);
        height: 10px;
        right: 10%;
        top: calc(50% - min(8vh, 72px));
        transform: translateY(-50%) rotate(-7deg);
        border-radius: 6px;
        background: linear-gradient(90deg, var(--teal) 0%, rgba(44, 200, 179, 0.35) 55%, rgba(43, 24, 116, 0.15) 100%);
        opacity: 0.85;
        filter: blur(0.2px);
    }

/* Gerçek DOM daireleri (#302574 / #2cc8b3) — gradient içinde kaybolmaz */
.hero-manset-fullbg__orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-manset-fullbg__orb {
    position: absolute;
    border-radius: 50%;
    aspect-ratio: 1;
    width: var(--orb-size, 80px);
    height: var(--orb-size, 80px);
}

.hero-manset-fullbg__orb--p {
    background: rgba(48, 37, 116, 0.4);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.12);
}

.hero-manset-fullbg__orb--t {
    background: rgba(44, 200, 179, 0.42);
    box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.18);
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(1) {
    --orb-size: clamp(68px, 11vw, 128px);
    left: 5%;
    top: 10%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(2) {
    --orb-size: clamp(52px, 8vw, 96px);
    left: 78%;
    top: 6%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(3) {
    --orb-size: clamp(88px, 14vw, 160px);
    left: 86%;
    top: 48%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(4) {
    --orb-size: clamp(44px, 7vw, 84px);
    left: 54%;
    top: 28%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(5) {
    --orb-size: clamp(60px, 10vw, 112px);
    left: 28%;
    top: 72%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(6) {
    --orb-size: clamp(48px, 7.5vw, 92px);
    left: 2%;
    top: 58%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(7) {
    --orb-size: clamp(72px, 11vw, 120px);
    left: 68%;
    top: 78%;
}

.hero-manset-fullbg__orbs .hero-manset-fullbg__orb:nth-child(8) {
    --orb-size: clamp(40px, 6vw, 76px);
    left: 42%;
    top: 8%;
}

.hero-manset-fullbg__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 105deg, #009688 0%, rgba(255, 255, 255, 0.62) 32%, rgba(248, 250, 252, 0.28) 54%, #009688 100% );
}

.hero-manset-fullbg__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: min(32vh, 340px);
}

.hero-manset-fullbg .hero-content {
    max-width: 640px;
}

.hero-new .hero-badge {
    background: rgba(43, 24, 116, 0.08);
    border: 1px solid rgba(43, 24, 116, 0.15);
    color: var(--purple-deep);
}

.hero-new h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #673ab7;
    max-width: 680px;
}

.hero-text-main {
    color: #9c27b0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta-outline {
    background: transparent;
    border: 1.8px solid rgba(43, 24, 116, 0.35);
    color: var(--purple-deep);
    box-shadow: none;
}

    .hero-cta-outline:hover {
        background: rgba(43, 24, 116, 0.08);
        box-shadow: none;
    }

.hero-brand-card {
    background: linear-gradient(145deg, var(--teal) 0%, var(--mint) 100%);
    border-radius: 28px;
    padding: 40px 38px;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(43, 24, 116, 0.2);
}

    .hero-brand-card h3 {
        font-size: 1.9rem;
        margin-bottom: 12px;
        position: relative;
        z-index: 2;
    }

    .hero-brand-card p {
        opacity: 0.95;
        margin-bottom: 18px;
        font-weight: 500;
        position: relative;
        z-index: 2;
    }

    .hero-brand-card ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 2;
    }

    .hero-brand-card li {
        padding: 10px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 600;
    }

.hero-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.4px);
}

.ball-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, #5436d9, #2e1b8e);
    bottom: -40px;
    right: -35px;
}

.ball-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #7f69e8, #4a2dc3);
    top: -30px;
    left: -18px;
}

.ball-3 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, #29b9a8, #168e82);
    top: 26px;
    right: 46px;
}

.findex-section {
    background: var(--white);
}

.findex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.findex-form-card,
.findex-result-card,
.calc-form-card,
.calc-result-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 14px 40px rgba(27, 19, 72, 0.08);
}

.findex-form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

    .findex-form-head h3 {
        font-size: 1.2rem;
    }

    .findex-form-head span {
        background: rgba(44, 200, 179, 0.18);
        color: var(--teal-dark);
        font-size: 0.78rem;
        font-weight: 700;
        border-radius: 999px;
        padding: 6px 10px;
    }

.findex-result-card .result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .findex-result-card .result-top p {
        color: var(--gray-600);
        font-size: 0.9rem;
        font-weight: 600;
    }

.risk-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(229, 152, 35, 0.15);
    color: #b27306;
    font-weight: 700;
    font-size: 0.75rem;
}

.result-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.calc-section {
    background: linear-gradient(180deg, #f7fffd 0%, #f4f1ff 100%);
}

.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
}

.calc-type-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calc-type-btn {
    border: 1px solid var(--gray-200);
    background: transparent;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: 0.2s ease;
}

    .calc-type-btn.active {
        background: var(--purple-deep);
        color: var(--white);
        border-color: var(--purple-deep);
    }

.calc-result-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .calc-result-main p {
        font-size: 0.82rem;
        color: var(--gray-400);
    }

    .calc-result-main h3 {
        font-size: clamp(1.9rem, 3vw, 2.5rem);
        color: var(--purple-deep);
    }

.result-chip {
    background: rgba(43, 24, 116, 0.1);
    color: var(--purple-deep);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 7px 14px;
}

.calc-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calc-kpi {
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 14px;
    background: #fafcff;
}

    .calc-kpi span {
        display: block;
        font-size: 0.78rem;
        color: var(--gray-400);
        margin-bottom: 8px;
    }

    .calc-kpi strong {
        font-size: 1rem;
        color: var(--navy);
    }

.payment-plan {
    margin-top: 20px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    max-height: 210px;
    overflow-y: auto;
}

.payment-plan-row {
    display: grid;
    grid-template-columns: 72px 1fr 1fr;
    gap: 12px;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-100);
}

    .payment-plan-row span:first-child {
        color: var(--gray-400);
    }

@media (max-width: 1024px) {
    .findex-grid,
    .calc-layout {
        grid-template-columns: 1fr;
    }
}


/* ============ IMPROVEMENTS ============ */

/* Hero: remove orbs, cleaner background */
.hero-manset-fullbg__orbs {
    display: none !important;
}

.hero-manset-fullbg {
    background: linear-gradient(135deg, #1a0f5c 0%, #2e1b8e 40%, #1a6b5c 100%);
    min-height: 600px;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

    .hero-manset-fullbg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(44,200,179,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(87,66,200,0.2) 0%, transparent 60%);
        pointer-events: none;
    }

.hero-manset-fullbg__art {
    display: none;
}

.hero-manset-fullbg__scrim {
    display: none;
}

.hero-manset-fullbg__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content .hero-badge {
    background: #3F51B5;
    border: 1px solid #3F51B5;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #673AB7;
    margin-bottom: 20px;
}

.hero-text-main {
    background: linear-gradient(135deg, #2cc8b3 0%, #57dbc9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgb(36 7 89);
    margin-bottom: 32px;
    max-width: 480px;
}

/* Trust row below buttons */
.hero-trust-row {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgb(24 4 59);
    font-weight: 500;
}

.hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

/* Hero visual column */
.hero-visual-col {
    display: flex;
    justify-content: center;
}

/* Better section spacing - reduce the big gap */
.findex-section,
.calc-section {
    padding: 72px 0;
}

/* Stronger section title hierarchy */
.section-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
}

.section-label {
    font-size: 0.75rem !important;
    letter-spacing: 0.12em !important;
}

/* Better form inputs */
.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-top: 6px;
    display: block;
}

    .form-input:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(44,200,179,0.12);
    }

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    display: block;
}

.form-input-group {
    margin-bottom: 16px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

    .form-submit-btn:hover {
        background: #00e6b8;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(44,200,179,0.3);
    }

/* Findex result card score number */
.findex-result-card .score-number {
    font-size: 3.8rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin: 16px 0 4px;
}

.findex-result-card .score-display {
    text-align: center;
    padding: 20px 0 16px;
}

.findex-result-card .score-label {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Mobile hero fix */
@media (max-width: 768px) {
    .hero-manset-fullbg__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-col {
        display: none;
    }

    .hero-trust-row {
        gap: 14px;
    }
}

.findeks-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
}

.findeks-form-card,
.findeks-result-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 14px 40px rgba(27, 19, 72, 0.08);
}

@media (max-width:1024px) {
    .findeks-grid {
        grid-template-columns: 1fr !important;
    }
}

.blog-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-related-news {
    padding: 28px 0 64px;
    background: linear-gradient(90deg, rgba(251, 245, 255, 0) 0%, #f2f8ff 100%);
}

.home-related-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.home-related-news-header h2 {
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    line-height: 1.3;
    color: var(--navy);
}

.home-related-news-header a {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.home-related-news-header a:hover {
    text-decoration: underline;
}

.home-related-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-related-news-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-related-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10, 37, 64, 0.09);
}

.home-related-news-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-related-news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.home-related-news-card h3 {
    font-size: 1rem;
    line-height: 1.45;
    color: var(--navy);
    margin: 0 14px 10px;
    min-height: 48px;
}

.home-related-news-category {
    margin: 12px 14px 8px;
    color: var(--teal-dark);
    font-size: .78rem;
    font-weight: 700;
}

.home-related-news-date {
    margin: 0 14px 16px;
    color: var(--gray-500);
    font-size: .78rem;
}

@media (max-width: 1150px) {
    .home-related-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-related-news-grid {
        grid-template-columns: 1fr;
    }
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 28px;
}

.blog-detail-main {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(27, 19, 72, 0.08);
}

.blog-detail-main h1 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--navy);
    margin: 14px 0 10px;
    line-height: 1.25;
}

.blog-back-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-detail-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-detail-cover {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-detail-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 14px;
}

.blog-detail-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(27, 19, 72, 0.08);
    height: fit-content;
}

.blog-detail-sidebar h3 {
    color: var(--navy);
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.blog-latest-list {
    display: grid;
    gap: 12px;
}

.blog-latest-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 8px;
}

.blog-latest-item img {
    width: 86px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-latest-cat {
    display: block;
    color: var(--teal-dark);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.blog-latest-item strong {
    color: var(--navy);
    font-size: 0.83rem;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: #fefdff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}