/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #00BCD4;
  --primary-dark:  #0097A7;
  --primary-light: #B2EBF2;
  --primary-surf:  #E0F7FA;
  --premium:       #7B1FA2;
  --premium-light: #F3E5F5;
  --pro:           #FF8F00;
  --pro-light:     #FFF8E1;
  --verified:      #1976D2;
  --verified-light:#E3F2FD;
  --success:       #388E3C;
  --text:          #212121;
  --text2:         #757575;
  --text3:         #BDBDBD;
  --bg:            #F8F9FA;
  --white:         #FFFFFF;
  --border:        #E0E0E0;
  --shadow:        0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.12);
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ───────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text2); line-height: 1.7; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,188,212,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,188,212,.45); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-premium {
  background: var(--premium);
  color: var(--white);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(123,31,162,.3);
}
.btn-premium:hover { background: #6A1B9A; transform: translateY(-2px); }
.btn-pro {
  background: var(--pro);
  color: var(--white);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,143,0,.3);
}
.btn-pro:hover { background: #E65100; transform: translateY(-2px); }

/* Store buttons */
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  min-width: 180px;
}
.store-btn:hover { background: #424242; transform: translateY(-2px); box-shadow: var(--shadow); }
.store-btn.dark { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); }
.store-btn.dark:hover { background: rgba(255,255,255,.25); }
.store-btn svg { flex-shrink: 0; }
.btn-sub { display: block; font-size: .72rem; opacity: .8; font-weight: 400; }
.btn-main { display: block; font-size: 1rem; font-weight: 700; }

/* ─── SECTION HEADER ───────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin: 12px 0 16px; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-surf);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.premium-tag { background: var(--premium-light); color: var(--premium); }

/* ─── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-size: 1.4rem; font-weight: 900; color: var(--primary-dark); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 28px; margin-right: auto; }
.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 10px 22px; font-size: .88rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  background: #fff;
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(0,188,212,.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 20% 60%, rgba(123,31,162,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(0,188,212,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .6;
}
.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,188,212,.1);
  color: var(--primary-dark);
  border: 1px solid rgba(0,188,212,.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title { margin-bottom: 20px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--premium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-note { margin-top: 16px; font-size: .85rem; color: var(--text3); }

/* ── Phone Mockup ──────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-scene {
  position: relative;
}
.phone-device {
  width: 256px;
  background: #111827;
  border-radius: 40px;
  border: 9px solid #1f2937;
  box-shadow:
    0 0 0 1px #374151,
    0 32px 72px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
}

/* Header bar */
.ps-header {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.ps-back {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.ps-title-block { flex: 1; min-width: 0; }
.ps-name    { font-size: .82rem; font-weight: 700; color: var(--text); }
.ps-online  { font-size: .68rem; color: var(--success); font-weight: 600; }
.ps-av {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--premium));
  color: #fff;
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chat body */
.ps-chat {
  background: #f2f5f8;
  padding: 12px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 340px;
}
.ps-date-chip {
  text-align: center;
  font-size: .62rem;
  color: #9e9e9e;
  background: rgba(0,0,0,.07);
  border-radius: 50px;
  padding: 3px 12px;
  align-self: center;
}
.ps-row {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.ps-me { justify-content: flex-end; }
.ps-ava {
  width: 24px; height: 24px;
  background: var(--primary-surf);
  border-radius: 50%;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.ps-bubble {
  max-width: 178px;
  background: #ffffff;
  border-radius: 14px 14px 14px 3px;
  padding: 9px 11px;
  font-size: .74rem;
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.ps-me .ps-bubble {
  background: var(--primary);
  color: #ffffff;
  border-radius: 14px 14px 3px 14px;
}
.ps-law {
  display: inline-block;
  background: var(--primary-surf);
  color: var(--primary-dark);
  font-size: .66rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 6px;
  margin-bottom: 4px;
}

/* Typing dots */
.ps-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 9px 14px;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  margin-left: 30px;
}
.ps-typing span {
  width: 5px; height: 5px;
  background: #bdbdbd;
  border-radius: 50%;
  animation: tBounce 1.4s ease-in-out infinite;
}
.ps-typing span:nth-child(2) { animation-delay: .2s; }
.ps-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes tBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

/* Input bar */
.ps-inputbar {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.ps-inp {
  flex: 1;
  background: #f2f5f8;
  border-radius: 20px;
  padding: 7px 13px;
  font-size: .72rem;
  color: #bdbdbd;
}
.ps-send {
  width: 30px; height: 30px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  box-shadow: 0 2px 8px rgba(0,188,212,.4);
  flex-shrink: 0;
}

/* Wave */
.hero-wave { line-height: 0; }
.hero-wave svg { width: 100%; display: block; }

/* ─── STATS BAR ────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 56px 0;
}
.stats-bar .stat-number { color: var(--primary-light); }
.stats-bar .stat-plus { color: var(--primary); }
.stats-bar .stat-label { color: rgba(255,255,255,.6); }
.stats-bar .stat-sep { background: rgba(255,255,255,.15); }
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
}
.stat-number {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-dark);
}
.stat-plus { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.stat-label { display: block; font-size: .85rem; color: var(--text2); font-weight: 500; margin-top: 4px; }
.stat-sep { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ─── FEATURES ─────────────────────────────────── */
.features-section { padding: 96px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--premium));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .92rem; }

/* ─── HOW IT WORKS ─────────────────────────────── */
.how-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary-surf) 0%, #F3E5F5 100%);
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { display: none; }
.step-emoji { font-size: 2.4rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .9rem; }
.step-arrow { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; font-weight: 300; }

/* ─── KANUNLAR ─────────────────────────────────── */
.kanunlar-section { padding: 96px 0; background: var(--white); }
.kanun-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.kanun-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  cursor: pointer;
  transition: var(--transition);
}
.kanun-card:hover {
  background: var(--primary-surf);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,188,212,.15);
}
.kanun-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.kanun-card h4 { margin-bottom: 6px; font-size: .95rem; }
.kanun-card p { font-size: .83rem; color: var(--text3); }
.kanunlar-cta {
  text-align: center;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.kanunlar-cta p { margin-bottom: 16px; font-size: 1rem; }

/* ─── PREMIUM ──────────────────────────────────── */
.premium-section { padding: 96px 0; background: var(--bg); }
.premium-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.premium-plans { display: flex; flex-direction: column; gap: 24px; }
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-lg); }
.user-plan { border-top: 4px solid var(--premium); }
.pro-plan  { border-top: 4px solid var(--pro); }
.plan-header { margin-bottom: 24px; }
.plan-header h3 { margin: 10px 0 8px; }
.plan-price { font-size: 2rem; font-weight: 900; color: var(--text); }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text2); }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { padding: 8px 0; font-size: .92rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.check { color: var(--success); font-weight: 700; }
.check.free { color: var(--text3); }
.free-item { opacity: .6; }
.free-tag { font-size: .72rem; background: var(--bg); border-radius: 4px; padding: 2px 6px; color: var(--text3); }

/* Badges panel */
.badges-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.badges-panel h3 { margin-bottom: 10px; }
.badges-panel > p { margin-bottom: 28px; font-size: .92rem; }
.badge-list { display: flex; flex-direction: column; gap: 20px; }
.badge-row { display: flex; align-items: center; gap: 16px; }
.badge-info { display: flex; flex-direction: column; gap: 2px; }
.badge-info strong { font-size: .9rem; }
.badge-info span { font-size: .8rem; color: var(--text3); }

/* Badge chips (universal) */
.display-badge, .plan-badge, .mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.display-badge { padding: 8px 16px; font-size: .85rem; }
.plan-badge { padding: 6px 14px; font-size: .8rem; display: inline-block; margin-bottom: 8px; }
.mini-badge { padding: 3px 10px; font-size: .72rem; }

.premium-badge { background: var(--premium-light); color: var(--premium); }
.pro-badge     { background: var(--pro-light);     color: var(--pro);     }
.verified-badge{ background: var(--verified-light);color: var(--verified); }

/* ─── AVUKAT BUL ───────────────────────────────── */
.avukat-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.avukat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.avukat-text .section-tag { background: rgba(0,188,212,.15); color: var(--primary-light); }
.avukat-text h2 { color: var(--white); margin: 12px 0 16px; }
.avukat-text p  { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.avukat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 500;
}
.avukat-text .btn-primary { box-shadow: 0 4px 20px rgba(0,188,212,.4); }
.avukat-cards { display: flex; flex-direction: column; gap: 16px; }
.lawyer-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.lawyer-card:hover { background: rgba(255,255,255,.14); transform: translateX(4px); }
.featured-card {
  border-color: var(--pro);
  background: rgba(255,143,0,.08);
  box-shadow: 0 0 20px rgba(255,143,0,.15);
}
.lawyer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}
.lawyer-name { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.lawyer-meta { color: rgba(255,255,255,.6); font-size: .82rem; margin-bottom: 8px; }
.lawyer-badges { display: flex; gap: 6px; flex-wrap: wrap; }

/* ─── SSS ───────────────────────────────────────── */
.sss-section { padding: 96px 0; background: var(--white); }
.sss-list { max-width: 760px; margin: 0 auto; }
.sss-item { border-bottom: 1px solid var(--border); }
.sss-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.sss-q:hover { color: var(--primary); }
.sss-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.sss-item.open .sss-icon { transform: rotate(45deg); }
.sss-a {
  display: none;
  padding: 0 0 22px;
}
.sss-a p { font-size: .95rem; line-height: 1.75; }
.sss-item.open .sss-a { display: block; }

/* ─── FINAL CTA ────────────────────────────────── */
.cta-section { padding: 96px 0; background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--premium) 100%);
  border-radius: 28px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 16px 60px rgba(0,150,168,.3);
}
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-visual { font-size: 8rem; opacity: .3; flex-shrink: 0; }

/* ─── FOOTER ────────────────────────────────────── */
.footer { background: #0f172a; padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.5); margin-top: 12px; max-width: 260px; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .9rem; margin-bottom: 16px; letter-spacing: .3px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.5); font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.4); }
.disclaimer { text-align: right; max-width: 440px; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .kanun-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-layout { grid-template-columns: 1fr; }
  .badges-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-bottom: 0; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .store-buttons { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .kanun-grid { grid-template-columns: repeat(2, 1fr); }
  .avukat-layout { grid-template-columns: 1fr; }
  .avukat-cards { order: -1; }
  .premium-plans { flex-direction: column; }
  .cta-box { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .disclaimer { text-align: center; }
  .stat-sep { display: none; }
  .stats-grid { gap: 8px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .kanun-grid { grid-template-columns: 1fr 1fr; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { min-width: 220px; justify-content: center; }
  h1 { font-size: 2.2rem; }
  .cta-box { padding: 40px 24px; }
}
