/* ==========================================================================
   BİLİRKİŞİ.NET - MODERN & ELEGANTS DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Light Theme */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  --primary-navy: #0b1a30;
  --primary-blue: #1e3a8a;
  --accent-blue: #2563eb;
  --accent-blue-light: #dbeafe;
  --accent-gold: #c59b27;
  --accent-gold-light: #fef3c7;
  --accent-emerald: #059669;
  --accent-emerald-light: #d1fae5;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
  --bg-primary: #090d16;
  --bg-surface: #111827;
  --bg-surface-elevated: #1f293d;
  --bg-alt: #131b2e;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-inverse: #090d16;

  --border-color: #1e293b;
  --border-light: #162032;

  --accent-blue-light: rgba(37, 99, 235, 0.2);
  --accent-gold-light: rgba(197, 155, 39, 0.2);
  --accent-emerald-light: rgba(5, 150, 105, 0.2);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.5);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.6);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.7);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==================== BUTTONS & BADGES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b8860b 0%, #996515 100%);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
  transform: translateY(-2px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* ==================== HEADER ==================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .header {
  background: rgba(17, 24, 39, 0.85);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.logo span {
  color: var(--accent-blue);
}

.logo-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-blue);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.theme-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.mobile-menu-btn {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(197, 155, 39, 0.05) 0%, transparent 60%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-gold-light);
  color: #92400e;
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

[data-theme="dark"] .hero-badge {
  color: #fde68a;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.hero-title span {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .hero-title span {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-emerald);
}

.hero-media-wrapper {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.hero-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

.floating-stat-card {
  position: absolute;
  bottom: -1.75rem;
  left: -1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  max-width: 320px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #c59b27 0%, #b8860b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.floating-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.2rem;
}

/* Stats Bar */
.stats-bar {
  margin-top: 4.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==================== SECTIONS COMMON ==================== */
.section {
  padding: 5.5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==================== EXPERTISE (UZMANLIKLAR) ==================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #d4af37);
  opacity: 0;
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.expertise-card:hover::before {
  opacity: 1;
}

.card-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-features {
  margin-top: auto;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.card-features li i {
  color: var(--accent-emerald);
  font-size: 0.85rem;
}

.card-action {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  gap: 0.75rem;
}

/* ==================== WORKFLOW ==================== */
.workflow-section {
  background: var(--bg-alt);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== CALCULATOR ==================== */
.calculator-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.calc-form-group {
  margin-bottom: 2rem;
}

.calc-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.calc-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.range-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.range-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--border-color);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-blue);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
  transition: transform 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-md);
  min-width: 140px;
  text-align: center;
}

.radio-pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.radio-pill {
  position: relative;
  cursor: pointer;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
}

.radio-pill span {
  display: block;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.radio-pill input:checked + span {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.calc-result-card {
  background: linear-gradient(145deg, var(--bg-surface-elevated), var(--bg-alt));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-result-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.calc-result-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calc-price-display {
  margin: 2rem 0;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.calc-price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-emerald);
  letter-spacing: -0.03em;
}

.calc-price-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.calc-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.calc-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.calc-features-list li i {
  color: var(--accent-emerald);
}

/* ==================== CASE STUDIES ==================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 155, 39, 0.4);
}

.case-tag {
  align-self: flex-start;
  background: var(--accent-gold-light);
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .case-tag {
  color: #fef08a;
}

.case-title {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.case-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-result {
  margin-top: auto;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  font-size: 0.88rem;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-gold);
}

/* ==================== FAQ ==================== */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  user-select: none;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-content {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
}

.contact-info-box {
  background: linear-gradient(145deg, #0b1a30 0%, #172554 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.info-text p {
  font-size: 0.92rem;
  color: #94a3b8;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Dropzone */
.dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-primary);
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent-blue);
  background: var(--accent-blue-light);
}

.dropzone-icon {
  font-size: 2.2rem;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.dropzone-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #070c18;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--accent-blue);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.legal-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-gold);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #cbd5e1;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-alt);
  border: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--border-color);
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .expertise-grid, .steps-wrapper, .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .header-container {
    height: 4.25rem;
  }
  .nav-menu {
    position: fixed;
    top: 4.25rem;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 4.25rem);
    overflow-y: auto;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    display: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .expertise-grid, .steps-wrapper, .cases-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==================== DROPDOWN NAVIGATION SUBMENU ==================== */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.nav-link-dropdown .dropdown-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown .dropdown-arrow,
.nav-item-dropdown.active .nav-link-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}

/* Invisible hover bridge: prevents submenu from vanishing when moving mouse */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  z-index: 1049;
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 380px;
  max-width: 90vw;
  background: #ffffff !important;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1050;
  pointer-events: none;
  box-sizing: border-box;
}

[data-theme="dark"] .dropdown-menu-custom {
  background: #111827 !important;
  border-color: #1f2937;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.nav-item-dropdown:hover .dropdown-menu-custom,
.nav-item-dropdown:focus-within .dropdown-menu-custom,
.nav-item-dropdown.active .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.5rem 0.65rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.dropdown-header-custom span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.dropdown-all-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.15s;
}

.dropdown-all-btn:hover {
  text-decoration: underline;
}

.dropdown-items-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
  box-sizing: border-box;
}

.dropdown-item-custom:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateX(4px);
}

[data-theme="dark"] .dropdown-item-custom:hover {
  background: rgba(37, 99, 235, 0.16);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dropdown-item-text {
  flex: 1;
  min-width: 0;
}

.dropdown-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-item-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .dropdown-menu-custom {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    background: transparent !important;
    padding: 0.5rem 0 0.5rem 0.75rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-item-dropdown.active .dropdown-menu-custom {
    display: block !important;
  }
  .dropdown-items-grid {
    gap: 0.25rem;
  }
  .dropdown-header-custom {
    display: none;
  }
}

/* ==================== CONTACT SHOWCASE BAR (IMAGE MATCH) ==================== */
.contact-showcase-wrapper {
  margin: 0 auto 3rem;
}

.contact-showcase-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 1.5rem;
}

[data-theme="dark"] .contact-showcase-bar {
  background: #111827;
  border-color: #1f2937;
}

.showcase-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}

.showcase-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #f97316;
  opacity: 0.4;
}

.showcase-icon-round {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0288d1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 6px 18px rgba(2, 136, 209, 0.3);
  transition: transform 0.25s ease;
}

.showcase-col:hover .showcase-icon-round {
  transform: translateY(-4px) scale(1.05);
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .showcase-title {
  color: #93c5fd;
}

.showcase-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

[data-theme="dark"] .showcase-text {
  color: #94a3b8;
}

.showcase-text a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.showcase-text a:hover {
  color: #0288d1;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-showcase-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
  .showcase-col:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-showcase-bar {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    padding: 2.5rem 1rem;
  }
}

/* ==================== SERVICES LISTING & DETAIL PAGES ==================== */
.page-header-hero {
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.12), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08), transparent 40%),
              var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-blue);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.page-header-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-header-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumbs-bar {
  padding: 1rem 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs-list a:hover {
  color: var(--accent-blue);
}

.breadcrumbs-list .separator {
  color: #94a3b8;
  font-size: 0.75rem;
}

.breadcrumbs-list .current {
  color: var(--text-primary);
  font-weight: 600;
}

/* Services Search & Filter Controls */
.services-search-box {
  max-width: 550px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.services-search-input {
  width: 100%;
  padding: 0.95rem 1.25rem 0.95rem 3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.services-search-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.services-search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Detail Page Layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
}

.service-main-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.service-rich-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.service-rich-body h2, .service-rich-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.service-rich-body p {
  margin-bottom: 1.25rem;
}

.service-rich-body ul, .service-rich-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-rich-body li {
  margin-bottom: 0.5rem;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-primary);
}

.sidebar-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  transition: background 0.2s, color 0.2s;
}

.sidebar-service-link:hover, .sidebar-service-link.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
  font-weight: 700;
}

.sidebar-service-link i {
  color: var(--accent-blue);
  width: 20px;
  text-align: center;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.sidebar-cta-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sidebar-cta-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==================== CTA CONSULTATION BANNER ==================== */
.cta-banner-section {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(217, 119, 6, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.cta-title {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.cta-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

.cta-banner-action {
  flex-shrink: 0;
}

.cta-btn {
  white-space: nowrap;
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.35);
}

@media (max-width: 991px) {
  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.8rem;
    gap: 1.8rem;
  }
  .cta-desc {
    margin: 0 auto;
  }
  .cta-banner-action {
    width: 100%;
  }
  .cta-btn {
    width: 100%;
  }
}

/* ==========================================================================
   EXACT DESIGN OVERHAUL (MOCKUP COMPLIANT)
   ========================================================================== */

/* Modern Bright Ambient Background */
.mockup-page-wrapper {
  background: linear-gradient(180deg, #edfcf7 0%, #f0fdf4 15%, #f8fafc 40%, #ffffff 70%);
  color: #1e293b;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Exact Navbar */
.exact-navbar {
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.exact-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.exact-logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316 0%, #0ea5e9 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.exact-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.exact-logo-text span {
  color: #0ea5e9;
}
.exact-logo-sub {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.exact-logo-img {
  max-height: 48px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Mockup Pill Buttons */
.btn-dosyam {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-dosyam:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  color: #ffffff !important;
}

.btn-fikrim {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-fikrim:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
  color: #ffffff !important;
}

/* Exact Hero */
.exact-hero-section {
  padding: 3.5rem 0 3rem;
  position: relative;
}

.exact-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.exact-underline {
  color: #0284c7;
  position: relative;
  display: inline-block;
}
.exact-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f97316;
  border-radius: 2px;
}

.exact-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* 3D Character Box & Floating Badges */
.char-frame-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.char-main-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
}

.floating-char-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.55rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  z-index: 10;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: floatAnim 4s ease-in-out infinite;
}

.badge-top-left {
  top: 15%;
  left: 2%;
  animation-delay: 0s;
}

.badge-mid-left {
  bottom: 25%;
  left: 0%;
  animation-delay: 1.5s;
}

.badge-mid-right {
  top: 35%;
  right: 2%;
  animation-delay: 2.5s;
}

@keyframes floatAnim {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

/* Trust Bar / Pastel Icons */
/* ==================== 3 ADIMDA ÇALIŞMA SÜRECİ SECTION ==================== */
.exact-process-section {
  padding: 1.5rem 0 3.5rem;
}

.process-card-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.75rem 2.25rem 2rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  position: relative;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.process-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
}

.process-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.process-section-subtitle {
  font-size: 0.92rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.55;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 991px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.process-step-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.process-step-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
}

.process-step-item.featured-step {
  background: #ffffff;
  border: 2px solid #fbbf24;
  box-shadow: 0 10px 25px -4px rgba(245, 158, 11, 0.12);
}

.process-step-item.featured-step:hover {
  border-color: #f59e0b;
  box-shadow: 0 14px 30px -4px rgba(245, 158, 11, 0.18);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.process-step-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: #e2e8f0;
  color: #334155;
}

.process-step-pill.pill-amber {
  background: #fef3c7;
  color: #92400e;
}

.process-step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.bg-blue-light { background: #eff6ff; }
.text-blue { color: #2563eb; }

.bg-amber-light { background: #fffbeb; }
.text-amber { color: #d97706; }

.bg-emerald-light { background: #ecfdf5; }
.text-emerald { color: #059669; }

.process-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.process-step-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
}

/* Process Bottom CTA Bar */
.process-bottom-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 1.15rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.process-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.process-cta-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Feature Sections */
.exact-feature-sec {
  padding: 4rem 0;
}

.exact-sec-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.exact-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.exact-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.exact-checklist li i {
  color: #10b981;
  font-size: 1.25rem;
}

/* Dava Konuları Grid */
.dava-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.dava-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.85rem 1rem 1.6rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dava-card:hover,
.dava-card.featured,
.dava-card.is-active {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px #38bdf8, 0 12px 28px -4px rgba(14, 165, 233, 0.22);
  color: #0284c7;
}

.dava-card:hover .dava-card-title,
.dava-card.featured .dava-card-title,
.dava-card.is-active .dava-card-title {
  color: #0284c7;
}

.dava-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

.dava-card:hover .dava-card-icon {
  transform: scale(1.08);
}

.dava-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: #0f172a;
  transition: color 0.2s ease;
}

/* Real Case Cards Grid */
.cases-quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.quote-case-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.quote-case-card:hover {
  transform: translateY(-3px);
  border-color: #0ea5e9;
}
.quote-icon {
  font-size: 1.2rem;
}
.quote-text {
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}
.quote-author {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  margin-top: auto;
}

/* Exact FAQ Accordion */
.exact-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease;
}
.exact-faq-item.active {
  border-color: #0ea5e9;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
}
.exact-faq-header {
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}
.exact-faq-header .faq-toggle-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #64748b;
  transition: all 0.2s ease;
}
.exact-faq-item.active .faq-toggle-circle {
  background: #0ea5e9;
  color: #ffffff;
  transform: rotate(180deg);
}
.exact-faq-body {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #475569;
  border-top: 1px dashed #f1f5f9;
}
.exact-faq-item.active .exact-faq-body {
  display: block;
}

/* Bottom Call Center Banner */
.exact-call-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}
.call-text-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.call-phone-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.call-phone-num:hover {
  color: #0284c7;
}

/* ==================== EXACT HEADER NAVIGATION & DROPDOWN ==================== */
.exact-nav-desktop {
  margin-left: auto;
}
.exact-nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.exact-nav-item {
  position: relative;
}
.exact-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  padding: 0.6rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.exact-nav-link:hover {
  color: #0284c7;
}
.exact-arrow {
  font-size: 0.68rem;
  color: #94a3b8;
  transition: transform 0.25s ease, color 0.2s ease;
}
.exact-has-dropdown:hover .exact-arrow {
  transform: rotate(180deg);
  color: #0284c7;
}

/* Mega Dropdown Menu */
.exact-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  min-width: 320px;
  max-width: 440px;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}
.exact-has-dropdown:hover .exact-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.exact-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.05em;
}
.exact-dropdown-all {
  color: #0284c7;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}
.exact-dropdown-all:hover {
  text-decoration: underline;
}
.exact-dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 380px;
  overflow-y: auto;
}
.exact-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.exact-dropdown-item:hover {
  background-color: #f0fdf4;
  transform: translateX(3px);
}
.exact-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.exact-item-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.exact-item-sub {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 2px;
}

/* Mobile Hamburger Toggle */
.exact-mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
}
.exact-mobile-toggle:hover {
  background: #f8fafc;
  color: #0284c7;
}

/* Mobile Drawer Overlay */
.exact-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.exact-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer */
.exact-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #ffffff;
  z-index: 1090;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}
.exact-mobile-drawer.active {
  transform: translateX(0);
}
.exact-mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.exact-mobile-nav-list {
  list-style: none;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.exact-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}
.exact-mobile-nav-link:hover, .exact-mobile-nav-link.active {
  background: #f0fdf4;
  color: #0284c7;
}
.exact-mobile-sublist {
  list-style: none;
  padding: 0.4rem 0 0.4rem 1rem;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}
.exact-mobile-sublist.show {
  display: flex;
}
.exact-mobile-sublink {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}
.exact-mobile-sublink:hover {
  color: #0284c7;
  background: #f1f5f9;
}

/* ==================== THOROUGH MOBILE RESPONSIVE POLISH ==================== */
@media (max-width: 991px) {
  /* Overflow Guard */
  html, body, .mockup-page-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Header */
  .exact-navbar {
    padding: 0.9rem 0;
  }
  .exact-logo-img {
    max-height: 40px;
    max-width: 180px;
  }

  /* Hero */
  .exact-hero-section {
    padding: 2.25rem 0 2rem;
    text-align: center;
  }
  .exact-hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    word-break: break-word;
    margin-bottom: 1.25rem;
  }
  .exact-hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
  }
  .exact-hero-section .d-flex {
    justify-content: center;
  }

  /* 3D Character Box & Floating Badges */
  .char-frame-box {
    padding: 1.5rem 0.5rem;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
  .char-main-img {
    max-width: 100%;
    border-radius: 22px;
  }
  .floating-char-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  .badge-top-left {
    top: 8%;
    left: -8px;
  }
  .badge-mid-left {
    bottom: 15%;
    left: -12px;
  }
  .badge-mid-right {
    top: 30%;
    right: -8px;
  }

  /* Trust Bar Grid */
  .exact-trust-bar {
    padding: 2.25rem 0;
  }
  .exact-trust-title {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .trust-icons-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    width: 100%;
  }
  .trust-icon-card {
    width: 100%;
    gap: 0.45rem;
  }
  .trust-icon-square {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 14px;
  }
  .trust-icon-label {
    font-size: 0.7rem;
  }

  /* Feature Sections */
  .exact-feature-sec {
    padding: 2.5rem 0;
  }
  .exact-sec-heading {
    font-size: 1.85rem;
    line-height: 1.22;
  }

  /* Lawyer Section */
  .exact-feature-sec .col-12 {
    text-align: center;
  }
  .exact-checklist {
    text-align: left;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Dava Grid */
  .dava-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .dava-card {
    padding: 1.15rem 0.6rem;
    border-radius: 14px;
  }
  .dava-card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }
  .dava-card-title {
    font-size: 0.78rem;
  }

  /* Real Cases Grid */
  .cases-quote-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .quote-case-card {
    padding: 1.15rem;
  }

  /* FAQ Section */
  .exact-faq-item {
    margin-bottom: 0.55rem;
  }
  .exact-faq-header {
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
    gap: 0.75rem;
  }
  .exact-faq-header span {
    flex: 1;
    text-align: left;
  }
  .faq-toggle-circle {
    flex-shrink: 0;
  }
  .exact-faq-body {
    padding: 0 1rem 0.85rem;
    font-size: 0.82rem;
    text-align: left;
  }

  /* Call Banner */
  .exact-call-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    border-radius: 16px;
  }
  .call-text-box {
    flex-direction: column;
    gap: 0.5rem;
  }
  .call-phone-num {
    font-size: 1.85rem;
  }
  .exact-call-card .d-flex.flex-wrap {
    justify-content: center;
    gap: 0.4rem !important;
  }
  .exact-call-card .badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }
}

@media (max-width: 576px) {
  .exact-hero-title {
    font-size: 1.95rem;
    line-height: 1.18;
  }
  .exact-hero-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }
  .btn-dosyam, .btn-fikrim {
    font-size: 0.88rem;
    padding: 0.65rem 1.4rem;
    width: 100%;
    justify-content: center;
  }
  .trust-icons-flex {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .trust-icon-square {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
  .trust-icon-label {
    font-size: 0.65rem;
    line-height: 1.15;
  }
  .exact-sec-heading {
    font-size: 1.55rem;
  }
  .call-phone-num {
    font-size: 1.55rem;
  }
}


