/* ── DoktorAsistan Modern Theme ── */
.hidden { display: none !important; }
/* ── TOKENS ── */
:root {
  --navy:      #0B3D6B;
  --navy-dark: #082D50;
  --navy-mid:  #174E80;
  --teal:      #0ABFBC;
  --teal-light:#E0F7F6;
  --teal-mid:  #066B6A;
  --bg:        #F4F7FA;
  --bg-card:   #FFFFFF;
  --mist:      #EBF0F6;
  --text:      #0D1B2A;
  --text-mid:  #3A5068;
  --text-soft: #5A7389;
  --border:    #DDE5EF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 4px rgba(11,61,107,.07);
  --shadow-md: 0 4px 20px rgba(11,61,107,.10);
  --shadow-lg: 0 12px 48px rgba(11,61,107,.13);
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAVBAR ── */
.modern-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px; height: 64px;
}
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text .main { font-size: 20px; letter-spacing: -0.4px; line-height: 1; }
.logo-text .main .light { font-weight: 300; color: var(--navy); }
.logo-text .main .bold  { font-weight: 700; color: var(--teal-mid); }
/* #170 msg 2926: PSI accessibility - WCAG AA 4.5:1 kontrast */
.logo-text .sub { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); margin-top: 2px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a, .nav-links > .has-drop > a {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--mist); color: var(--navy); }
.nav-cta { display: flex; gap: 8px; margin-left: 12px; }
.btn-ghost {
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 13.5px; font-weight: 600;
  color: var(--navy); background: white; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--mist); }
.btn-primary-m {
  padding: 9px 18px; border-radius: var(--radius-sm);
  background: var(--navy); color: white !important;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: none; transition: background .15s; display: inline-block;
}
.btn-primary-m:hover { background: var(--navy-dark); color: white !important; }
.btn-teal {
  padding: 9px 18px; border-radius: var(--radius-sm);
  background: var(--teal-mid); color: white !important;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  border: none; transition: background .15s; display: inline-block;
}
.btn-teal:hover { background: #044F4E; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* ── DROPDOWN ── */
.has-drop { position: relative; }
.has-drop > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.has-drop > a::after { content: ''; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s; }
.has-drop:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.modern-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 6px; min-width: 180px;
  opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s;
  transform: translateX(-50%) translateY(4px); z-index: 200;
  margin-top: 4px;
}
.modern-dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-drop:hover .modern-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.modern-dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  white-space: nowrap;
}
.modern-dropdown a:hover { background: var(--mist); color: var(--navy); }
.dropdown-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e5c87 100%);
  color: white; position: relative; overflow: hidden;
  padding: 32px 24px 48px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(10,191,188,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,191,188,.18); border: 1px solid rgba(10,191,188,.4);
  border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600;
  color: #7EE7E5; letter-spacing: .4px; margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero h1 { font-family: var(--font-serif); font-size: clamp(32px, 5vw, 52px); line-height: 1.15; font-weight: 400; margin-bottom: 20px; }
.hero h1 em { color: #6EE7E5; font-style: italic; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn-hero-main {
  padding: 14px 28px; border-radius: var(--radius-md);
  background: var(--teal-mid); color: white; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; transition: background .2s, transform .15s; display: inline-block;
}
.hero-btns .btn-hero-main:hover { background: #044F4E; transform: translateY(-1px); color: white; }
.hero-btns .btn-hero-sec {
  padding: 14px 28px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.12); color: white; font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,.25); cursor: pointer;
  transition: background .2s; display: inline-block;
}
.hero-btns .btn-hero-sec:hover { background: rgba(255,255,255,.2); color: white; }
.hero-stats-block { margin-top: 32px; }
.hero-stats-block .hero-stats { margin-top: 12px; }
.hero-stats-block .hero-stats:first-child { margin-top: 0; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-n { font-size: 28px; font-weight: 700; color: white; line-height: 1; }
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── AI CHAT MOCKUP ── */
.chat-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); backdrop-filter: blur(12px); padding: 0; overflow: hidden;
}
.chat-header {
  background: rgba(255,255,255,.12); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.chat-avatar { width: 38px; height: 38px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.chat-status { flex: 1; }
.chat-status-name { font-size: 14px; font-weight: 600; color: white; }
.chat-status-dot { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.chat-status-dot::before { content:''; width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; max-height: 320px; overflow-y: auto; transition: opacity .5s; }
.msg { display: flex; gap: 10px; max-width: 90%; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-av { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.msg-av.ai   { background: var(--teal); }
.msg-av.user { background: #2A4F6E; }
.msg-bubble { padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.6; }
.msg.ai   .msg-bubble { background: rgba(255,255,255,.13); color: rgba(255,255,255,.9); border-bottom-left-radius: 4px; }
.msg.user .msg-bubble { background: var(--teal); color: white; border-bottom-right-radius: 4px; }
.typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.typing span { width: 7px; height: 7px; background: rgba(255,255,255,.5); border-radius: 50%; animation: bounce 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.chat-input {
  margin: 12px 20px 20px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
}
.chat-input span { font-size: 13px; color: rgba(255,255,255,.4); flex: 1; }
.chat-send {
  width: 32px; height: 32px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}

/* ── SEARCH BAR ── */
.search-wrap { background: white; border-bottom: 1px solid var(--border); padding: 0 24px; }
.search-inner { max-width: 1160px; margin: 0 auto; padding: 20px 0; }
.search-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: var(--mist); border-radius: var(--radius-md);
  padding: 10px; border: 1.5px solid var(--border);
}
.search-field {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: var(--radius-sm);
  padding: 10px 14px; border: 1px solid var(--border);
}
.search-field label { font-size: 10px; color: var(--text-soft); text-transform: uppercase; letter-spacing: .8px; white-space: nowrap; display: block; }
.search-field select, .search-field input[type="text"] {
  border: none; outline: none; font-family: var(--font); font-size: 14px;
  font-weight: 500; color: var(--text); background: transparent; width: 100%;
}
.search-btn {
  padding: 10px 24px; background: var(--navy); color: white;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .15s;
}
.search-btn:hover { background: var(--navy-dark); }

/* ── SECTION LAYOUT ── */
.modern-section { padding: 60px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
/* #170 msg 2926: PSI - teal-mid #07A3A0 beyaz uzerinde 3.5:1 (FAIL). Daha koyu navy-mid kullan (4.7:1 PASS) */
.section-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-mid); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 38px); line-height: 1.2; color: var(--navy); margin-bottom: 14px; }
.section-desc { font-size: 15px; color: var(--text-mid); max-width: 560px; line-height: 1.8; }

/* ── DOCTOR CARDS ── */
.doctors-section { background: var(--bg); }
.doctors-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.doc-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.doc-card-top { display: flex; gap: 16px; align-items: center; padding: 22px 22px 16px; }
.doc-photo {
  width: 68px; height: 68px; border-radius: 50%;
  border: 3px solid var(--mist); object-fit: cover; background: var(--mist);
  flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.doc-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.doc-info { flex: 1; min-width: 0; }
.doc-name { font-size: 15px; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-name a { color: var(--navy); }
.doc-name a:hover { color: var(--teal-mid); }
.doc-branch { font-size: 12px; color: var(--teal-mid); font-weight: 600; margin-top: 3px; }
.doc-loc { font-size: 12px; color: var(--text-soft); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.doc-rating { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.stars { color: #FBBF24; font-size: 13px; }
.rating-n { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.doc-divider { height: 1px; background: var(--border); margin: 0 22px; }
.doc-actions { display: flex; gap: 10px; padding: 16px 22px; }
.doc-actions a {
  flex: 1; text-align: center; padding: 9px 12px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  transition: background .15s, color .15s; display: block;
}
.doc-btn-ghost { border: 1.5px solid var(--border); color: var(--text-mid); }
.doc-btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--mist); }
.doc-btn-main { background: var(--navy); color: white !important; border: 1.5px solid var(--navy); }
.doc-btn-main:hover { background: var(--navy-dark); }
.ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--teal-light); color: var(--teal-mid);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  padding: 3px 10px; margin-top: 6px; letter-spacing: .3px;
}

/* ── FEATURES ── */
.features-section { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.feat-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.feat-icon.navy { background: var(--navy); }
.feat-icon.teal { background: var(--teal); }
.feat-icon.mist { background: var(--mist); }
.feat-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* ── AI PANEL ── */
.ai-section { background: var(--navy); color: white; overflow: hidden; position: relative; }
.ai-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,188,.18) 0%, transparent 70%);
  right: -100px; top: -150px; pointer-events: none;
}
.ai-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.ai-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,191,188,.15); border: 1px solid rgba(10,191,188,.35);
  border-radius: 100px; padding: 5px 12px; font-size: 11px; font-weight: 700;
  color: #7EE7E5; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 18px;
}
.ai-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin-bottom: 18px; }
.ai-title em { color: #6EE7E5; font-style: italic; }
.ai-desc { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 32px; }
.ai-features-list { display: flex; flex-direction: column; gap: 14px; }
.ai-feat { display: flex; align-items: flex-start; gap: 14px; }
.ai-feat-dot { width: 36px; height: 36px; background: rgba(10,191,188,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ai-feat-text .t { font-size: 14px; font-weight: 700; color: white; }
.ai-feat-text .d { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ── DEMO CHAT (big) ── */
.demo-chat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); overflow: hidden;
}
.demo-chat-header {
  padding: 18px 22px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.08);
}
.demo-msgs { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.dmsg { display: flex; gap: 12px; }
.dmsg.user { flex-direction: row-reverse; }
.dmsg-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.dmsg-av.ai { background: var(--teal); }
.dmsg-av.user { background: rgba(255,255,255,.2); }
.dmsg-b { padding: 12px 16px; border-radius: 18px; font-size: 13.5px; line-height: 1.65; max-width: 80%; }
.dmsg.ai .dmsg-b { background: rgba(255,255,255,.1); color: rgba(255,255,255,.88); border-bottom-left-radius: 5px; }
.dmsg.user .dmsg-b { background: var(--teal); color: white; border-bottom-right-radius: 5px; }
.demo-input {
  margin: 0 22px 22px; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md); padding: 12px 16px;
}
.demo-input span { flex: 1; font-size: 13px; color: rgba(255,255,255,.35); }
.demo-send { width: 34px; height: 34px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--mist); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 48px; position: relative; }
.steps::before { content:''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; position: relative;
}
.step:first-child .step-num { background: var(--navy); color: white; border-color: var(--navy); }
.step:first-child .step-num::after {
  content:''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(11,61,107,.25);
}
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }

/* ── FOOTER ── */
/* #170 msg 2926: PSI accessibility - footer text rgba opacity yukseltildi (WCAG AA 4.5:1+) */
.modern-footer { background: #071524; color: rgba(255,255,255,.85); padding: 56px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 13.5px; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,.85); }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #ffffff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.78); margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.78); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,.78); transition: color .15s; }
.footer-links a:hover { color: var(--teal); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 24px; padding: 16px 0 0; }
.footer-disclaimer p { font-size: 11.5px; line-height: 1.7; color: rgba(255,255,255,.7); text-align: center; margin: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { background: rgba(10,191,188,.12); border: 1px solid rgba(10,191,188,.25); color: #6EE7E5; border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 600; }

/* ── CONTENT PAGES ── */
.page-content-wrap { background: var(--bg); min-height: 50vh; }
.page-content-inner { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.page-content-inner h1, .page-content-inner h2, .page-content-inner h3 {
  font-family: var(--font-serif); color: var(--navy); margin-bottom: 16px;
}
.page-content-inner h1 { font-size: 32px; }
.page-content-inner h2 { font-size: 26px; }
.page-content-inner h3 { font-size: 22px; }
.page-content-inner p { margin-bottom: 16px; color: var(--text-mid); line-height: 1.8; }
.page-content-inner img { border-radius: var(--radius-md); margin: 16px 0; }
.page-content-inner a { color: var(--teal-mid); font-weight: 500; }
.page-content-inner a:hover { text-decoration: underline; }
.page-content-inner ul, .page-content-inner ol { margin-bottom: 16px; padding-left: 24px; color: var(--text-mid); }
.page-content-inner li { margin-bottom: 8px; }
.page-content-inner table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.page-content-inner table th, .page-content-inner table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.page-content-inner table th { background: var(--mist); font-weight: 600; }

/* Breadcrumb — Bootstrap override + modern widget */
.breadcrumb { background: none !important; padding: 0 !important; margin: 0 !important; border-radius: 0 !important; list-style: none; }
#breadcrumb { display: none; } /* eski widget gizle */
.da-breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 0 24px; }
.da-breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-soft); padding: 12px 0; }
.da-breadcrumb-inner a { color: var(--text-mid); font-weight: 500; transition: color .15s; }
.da-breadcrumb-inner a:hover { color: var(--teal-mid); }
.da-bc-sep { color: var(--border); flex-shrink: 0; }
.da-bc-current { color: var(--text-soft); font-weight: 500; }

/* 404 page — hide legacy search form */
.page-content-inner input[placeholder="What are you looking for?"] { display: none !important; }
.page-content-inner input[value="Search"] { display: none !important; }

/* Main content area — footer spacing */
main { padding: 0; margin: 0; display: block; max-width: 100%; overflow-x: hidden; }

/* Page header */
.page-header-modern { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; padding: 40px 24px; text-align: center; }
.page-header-modern h1 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); margin: 0; }

/* ── FORMS ── */
.modern-form .form-control {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-family: var(--font); font-size: 14px;
  transition: border-color .15s; background: white; width: 100%;
}
.modern-form .form-control:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(10,191,188,.15); }
.modern-form label { font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; display: block; }
.modern-form .btn { border-radius: var(--radius-sm); font-family: var(--font); font-weight: 600; }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border); padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 28px; font-size: 15px; font-weight: 500; color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .m-btns { display: flex; gap: 10px; padding: 14px 20px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(11,61,107,.25); border-radius: 3px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .chat-card { display: none; }
  .hero-stats { gap: 24px; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-chat { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps::before { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 20px 48px; }
  .modern-section { padding: 48px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .search-bar { flex-direction: column; }
  .search-field { min-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
}

/* ── UTILITY CLASSES ── */
.margin_60 { padding: 30px 0; }
.margin_60_35 { padding: 30px 0; }

/* ── PROFILE PAGE ── */
.profile-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 40px 24px 30px; }
.profile-card { max-width: 1160px; margin: -20px auto 0; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 32px; position: relative; z-index: 2; }

/* ── QUESTIONS / LISTS ── */
.modern-list-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; margin-bottom: 12px; transition: box-shadow .2s; }
.modern-list-item:hover { box-shadow: var(--shadow-sm); }

/* ── ALERTS ── */
.alert-modern { border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; border: 1px solid; }
.alert-modern.success { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.alert-modern.error { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.alert-modern.warning { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.alert-modern.info { background: var(--teal-light); border-color: #99F6E4; color: var(--teal-mid); }

/* ── AUTOCOMPLETE ── */
.ui-autocomplete { border-radius: var(--radius-sm) !important; border: 1px solid var(--border) !important; box-shadow: var(--shadow-md) !important; }
.ui-menu-item { padding: 8px 12px !important; }
.ui-state-active, .ui-widget-content .ui-state-active { background: var(--mist) !important; border: none !important; color: var(--navy) !important; }


